mirror of
https://github.com/microsoft/DirectXTex.git
synced 2025-07-17 07:20:14 +02:00
Another warning suppression for VS 2022 17.2
This commit is contained in:
parent
3ac77cf2c0
commit
a6b1c557dc
@ -12,7 +12,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
// Off by default warnings
|
// Off by default warnings
|
||||||
#pragma warning(disable : 4619 4616 4061 4265 4365 4571 4623 4625 4626 4628 4668 4710 4711 4746 4774 4820 4987 5026 5027 5031 5032 5039 5045 5219 26812)
|
#pragma warning(disable : 4619 4616 4061 4265 4365 4571 4623 4625 4626 4628 4668 4710 4711 4746 4774 4820 4987 5026 5027 5031 5032 5039 5045 5219 5246 26812)
|
||||||
// C4619/4616 #pragma warning warnings
|
// C4619/4616 #pragma warning warnings
|
||||||
// C4061 enumerator 'X' in switch of enum 'X' is not explicitly handled by a case label
|
// C4061 enumerator 'X' in switch of enum 'X' is not explicitly handled by a case label
|
||||||
// C4265 class has virtual functions, but destructor is not virtual
|
// C4265 class has virtual functions, but destructor is not virtual
|
||||||
@ -35,6 +35,7 @@
|
|||||||
// C5039 pointer or reference to potentially throwing function passed to extern C function under - EHc
|
// C5039 pointer or reference to potentially throwing function passed to extern C function under - EHc
|
||||||
// C5045 Spectre mitigation warning
|
// C5045 Spectre mitigation warning
|
||||||
// C5219 implicit conversion from 'int' to 'float', possible loss of data
|
// C5219 implicit conversion from 'int' to 'float', possible loss of data
|
||||||
|
// C5246 the initialization of a subobject should be wrapped in braces
|
||||||
// 26812: The enum type 'x' is unscoped. Prefer 'enum class' over 'enum' (Enum.3).
|
// 26812: The enum type 'x' is unscoped. Prefer 'enum class' over 'enum' (Enum.3).
|
||||||
|
|
||||||
// Windows 8.1 SDK related Off by default warnings
|
// Windows 8.1 SDK related Off by default warnings
|
||||||
|
@ -270,9 +270,11 @@ REFGUID DirectX::GetWICCodec(WICCodecs codec) noexcept
|
|||||||
case WIC_CODEC_ICO:
|
case WIC_CODEC_ICO:
|
||||||
return GUID_ContainerFormatIco;
|
return GUID_ContainerFormatIco;
|
||||||
|
|
||||||
|
#ifdef NTDDI_WIN10_RS4
|
||||||
case WIC_CODEC_HEIF:
|
case WIC_CODEC_HEIF:
|
||||||
// This requires installing https://aka.ms/heif
|
// This requires installing https://aka.ms/heif
|
||||||
return GUID_ContainerFormatHeif;
|
return GUID_ContainerFormatHeif;
|
||||||
|
#endif
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return GUID_NULL;
|
return GUID_NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user