Code review feedback

This commit is contained in:
walbourn_cp
2015-01-30 17:31:49 -08:00
parent 5f95b87ddf
commit e23c8e19fd
4 changed files with 14 additions and 16 deletions

View File

@@ -28,15 +28,18 @@
// We could load multi-frame images (TIFF/GIF) into a texture array.
// For now, we just load the first frame (note: DirectXTex supports multi-frame images)
#include <dxgiformat.h>
#include <assert.h>
// VS 2010's stdint.h conflicts with intsafe.h
#pragma warning(push)
#pragma warning(disable : 4005)
#include <wincodec.h>
#include <wrl.h>
#include <intsafe.h>
#pragma warning(pop)
#include <wrl\client.h>
#include <memory>
#include "WICTextureLoader.h"