Commit 652db16f by John Kessenich

Build: Fix #975: shut up a compiler warning (code was fine).

parent 4b1a890b
...@@ -362,10 +362,10 @@ public: ...@@ -362,10 +362,10 @@ public:
void setTextureSamplerTransformMode(EShTextureSamplerTransformMode mode); void setTextureSamplerTransformMode(EShTextureSamplerTransformMode mode);
// For setting up the environment (initialized in the constructor): // For setting up the environment (initialized in the constructor):
void setEnvInput(EShSource lang, EShLanguage stage, EShClient client, int version) void setEnvInput(EShSource lang, EShLanguage envStage, EShClient client, int version)
{ {
environment.input.languageFamily = lang; environment.input.languageFamily = lang;
environment.input.stage = stage; environment.input.stage = envStage;
environment.input.dialect = client; environment.input.dialect = client;
environment.input.dialectVersion = version; environment.input.dialectVersion = version;
} }
......
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