Skip to content
Snippets Groups Projects
Commit fd30542a authored by John Kessenich's avatar John Kessenich
Browse files

Non-functional trivial clean up.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@26972 e7fa87d3-cd2b-0410-9028-fcbf551c1848
parent 3591930f
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 2.8)
include_directories(.)
if(WIN32)
include_directories(${include_directories} ../glslang/OSDependent/Windows)
include_directories(../glslang/OSDependent/Windows)
elseif(UNIX)
include_directories(${include_directories} ../glslang/OSDependent/Linux)
include_directories(../glslang/OSDependent/Linux)
else(WIN32)
message("unkown platform")
endif(WIN32)
......
......@@ -428,7 +428,7 @@ void ProcessConfigFile()
glslang::TWorklist Worklist;
// 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 Options = 0;
......@@ -455,7 +455,7 @@ bool ProcessArguments(int argc, char* argv[])
{
ExecutableName = argv[0];
NumWorkItems = argc; // will include some empties where the '-' options were, but it doesn't matter, they'll be 0
Work = new glslang::TWorkItem*[NumWorkItems];
Work = new glslang::TWorkItem*[NumWorkItems];
Work[0] = 0;
argc--;
......
......@@ -190,7 +190,7 @@ SH_IMPORT_EXPORT int ShLink(
const int numHandles,
ShHandle uniformMap, // updated with new uniforms
short int** uniformsAccessed, // returned with indexes of uniforms accessed
int* numUniformsAccessed);
int* numUniformsAccessed);
SH_IMPORT_EXPORT int ShLinkExt(
const ShHandle, // linker object
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment