Commit fd30542a by John Kessenich

Non-functional trivial clean up.

parent 3591930f
...@@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 2.8) ...@@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 2.8)
include_directories(.) include_directories(.)
if(WIN32) if(WIN32)
include_directories(${include_directories} ../glslang/OSDependent/Windows) include_directories(../glslang/OSDependent/Windows)
elseif(UNIX) elseif(UNIX)
include_directories(${include_directories} ../glslang/OSDependent/Linux) include_directories(../glslang/OSDependent/Linux)
else(WIN32) else(WIN32)
message("unkown platform") message("unkown platform")
endif(WIN32) endif(WIN32)
......
...@@ -428,7 +428,7 @@ void ProcessConfigFile() ...@@ -428,7 +428,7 @@ void ProcessConfigFile()
glslang::TWorklist Worklist; glslang::TWorklist Worklist;
// array of unique places to leave the shader names and infologs for the asynchronous compiles // array of unique places to leave the shader names and infologs for the asynchronous compiles
glslang::TWorkItem **Work = 0; glslang::TWorkItem** Work = 0;
int NumWorkItems = 0; int NumWorkItems = 0;
int Options = 0; int Options = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment