summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-03-06 17:34:16 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-03-06 17:34:16 +0000
commit99e3118c5f041b0f1fc97eebe7a4fb645685c149 (patch)
treebf7054a269d54309b0c9bdc65b1ae9e3cea59c8b /Graphics/GraphicsEngineOpenGL
parentRemoved debug code to disable separate programs in GL context (diff)
downloadDiligentCore-99e3118c5f041b0f1fc97eebe7a4fb645685c149.tar.gz
DiligentCore-99e3118c5f041b0f1fc97eebe7a4fb645685c149.zip
Fixed few more clang warnings
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
-rw-r--r--Graphics/GraphicsEngineOpenGL/include/GLProgramResources.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/include/GLProgramResources.h b/Graphics/GraphicsEngineOpenGL/include/GLProgramResources.h
index 4a9b6efe..1b650828 100644
--- a/Graphics/GraphicsEngineOpenGL/include/GLProgramResources.h
+++ b/Graphics/GraphicsEngineOpenGL/include/GLProgramResources.h
@@ -83,10 +83,10 @@ namespace Diligent
RefCntAutoPtr<IDeviceObject>* _pResources) :
ShaderVariableBase(_Owner),
Name (_Name),
- ArraySize (_ArraySize),
VariableType (_VariableType),
- VariableIndex (_VariableIndex),
ResourceType (_ResourceType),
+ VariableIndex (_VariableIndex),
+ ArraySize (_ArraySize),
pResources (_pResources)
{
VERIFY_EXPR(_ArraySize >= 1);