summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
authorEgor <egor.yusov@gmail.com>2018-02-18 00:34:33 +0000
committerEgor <egor.yusov@gmail.com>2018-02-18 00:34:33 +0000
commitd237c90f682870cb2adfba032be92b382c846c3c (patch)
tree8af42f9646ee0e30c75fa57964df1beb329f082e /Graphics/GraphicsEngineOpenGL
parentUpdated missing gl function reporting message on iOS (diff)
downloadDiligentCore-d237c90f682870cb2adfba032be92b382c846c3c.tar.gz
DiligentCore-d237c90f682870cb2adfba032be92b382c846c3c.zip
Fixed Android runtime error on ARM devices
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
-rw-r--r--Graphics/GraphicsEngineOpenGL/src/ShaderGLImpl.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/src/ShaderGLImpl.cpp b/Graphics/GraphicsEngineOpenGL/src/ShaderGLImpl.cpp
index bd659d15..58106b5e 100644
--- a/Graphics/GraphicsEngineOpenGL/src/ShaderGLImpl.cpp
+++ b/Graphics/GraphicsEngineOpenGL/src/ShaderGLImpl.cpp
@@ -105,6 +105,7 @@ ShaderGLImpl::ShaderGLImpl(IReferenceCounters *pRefCounters, RenderDeviceGLImpl
#elif PLATFORM_ANDROID
Settings.append(
"#version 310 es\n"
+ "#extension GL_EXT_texture_cube_map_array : enable\n"
);
if(m_Desc.ShaderType == SHADER_TYPE_GEOMETRY)