From 4ce52374ba2cecc80669db630dfea6cf34f76965 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Sun, 4 Mar 2018 12:35:31 -0800 Subject: Enabled build with Win8.1 SDK Replaced OPENGL_SUPPORTED macro with GL_SUPPORTED and GLES_SUPPORTED --- Tests/TestApp/src/TestTextureCreation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Tests/TestApp/src/TestTextureCreation.cpp') diff --git a/Tests/TestApp/src/TestTextureCreation.cpp b/Tests/TestApp/src/TestTextureCreation.cpp index bb95e15..acaccaa 100644 --- a/Tests/TestApp/src/TestTextureCreation.cpp +++ b/Tests/TestApp/src/TestTextureCreation.cpp @@ -36,7 +36,7 @@ #include "TestCreateObjFromNativeResD3D12.h" #endif -#if OPENGL_SUPPORTED +#if GL_SUPPORTED || GLES_SUPPORTED #include "TestCreateObjFromNativeResGL.h" #endif @@ -68,7 +68,7 @@ public: break; #endif -#if OPENGL_SUPPORTED +#if GL_SUPPORTED || GLES_SUPPORTED case DeviceType::OpenGL: case DeviceType::OpenGLES: m_pTestCreateObjFromNativeRes.reset(new TestCreateObjFromNativeResGL(pDevice)); -- cgit v1.2.3