mirror of
https://github.com/microsoft/DirectXTex
synced 2024-11-09 14:30:05 +00:00
Fixed -Wnonportable-system-include-path when using Windows Insider SDK
This commit is contained in:
parent
be6cf52799
commit
63d671ee9b
@ -37,7 +37,11 @@
|
||||
#include <DirectXMath.h>
|
||||
|
||||
#ifdef WIN32
|
||||
#ifdef NTDDI_WIN10_FE
|
||||
#include <ocidl.h>
|
||||
#else
|
||||
#include <OCIdl.h>
|
||||
#endif
|
||||
|
||||
struct IWICImagingFactory;
|
||||
struct IWICMetadataQueryReader;
|
||||
|
@ -19,7 +19,12 @@
|
||||
|
||||
#include <d3d11_1.h>
|
||||
|
||||
#ifdef NTDDI_WIN10_FE
|
||||
#include <ocidl.h>
|
||||
#else
|
||||
#include <OCIdl.h>
|
||||
#endif
|
||||
|
||||
#include <functional>
|
||||
|
||||
|
||||
|
@ -20,7 +20,11 @@
|
||||
#ifdef WIN32
|
||||
#include <d3d12.h>
|
||||
|
||||
#ifdef NTDDI_WIN10_FE
|
||||
#include <ocidl.h>
|
||||
#else
|
||||
#include <OCIdl.h>
|
||||
#endif
|
||||
|
||||
#include <functional>
|
||||
#else
|
||||
|
@ -23,7 +23,12 @@
|
||||
|
||||
#include <d3d9.h>
|
||||
|
||||
#ifdef NTDDI_WIN10_FE
|
||||
#include <ocidl.h>
|
||||
#else
|
||||
#include <OCIdl.h>
|
||||
#endif
|
||||
|
||||
#include <functional>
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user