This commit is contained in:
Chuck Walbourn 2020-02-26 15:54:45 -08:00
Родитель c1e1c84c68
Коммит 20a18198f5
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -36,7 +36,7 @@ namespace DirectX
//---------------------------------------------------------------------------------
// DXGI Format Utilities
bool __cdecl IsValidVB(_In_ DXGI_FORMAT fmt) noexcept;
bool __cdecl IsValidIB(_In_ DXGI_FORMAT fmt) noexcept;
constexpr bool __cdecl IsValidIB(_In_ DXGI_FORMAT fmt) noexcept;
size_t __cdecl BytesPerElement(_In_ DXGI_FORMAT fmt) noexcept;

Просмотреть файл

@ -21,7 +21,7 @@ inline bool __cdecl IsValidVB(DXGI_FORMAT fmt) noexcept
}
_Use_decl_annotations_
inline bool __cdecl IsValidIB(DXGI_FORMAT fmt) noexcept
constexpr inline bool __cdecl IsValidIB(DXGI_FORMAT fmt) noexcept
{
return (fmt == DXGI_FORMAT_R32_UINT || fmt == DXGI_FORMAT_R16_UINT) != 0;
}