summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-02-17 21:58:58 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-02-17 21:58:58 +0000
commit7239690d89b98175fc142a02172b405d3e626f63 (patch)
treec74f0357df5f3a8fbf28adaf5c075191ffa45e18 /Graphics/GraphicsEngineOpenGL
parentFixed few compiler warnings (diff)
downloadDiligentCore-7239690d89b98175fc142a02172b405d3e626f63.tar.gz
DiligentCore-7239690d89b98175fc142a02172b405d3e626f63.zip
Updated missing gl function reporting message on iOS
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
-rw-r--r--Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h b/Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h
index 7b5e0315..8321c21f 100644
--- a/Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h
+++ b/Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h
@@ -507,7 +507,7 @@
template<typename T>
void UnsupportedGLFunctionStub( const T &Name )
{
- LOG_ERROR_MESSAGE( Name, "() is not supported in this API!\n" );
+ LOG_ERROR_MESSAGE( Name, "() is not supported on iOS!\n" );
}
#define glDrawElementsInstancedBaseVertexBaseInstance(...) UnsupportedGLFunctionStub("glDrawElementsInstancedBaseVertexBaseInstance")