Commit f26ecc81 by Shannon Woods

Fix build warnings about unused private variables on clang

BUG=angle:638,677 Change-Id: Id9e80f0b86d9c24633b2d353a409844c22441d21 Reviewed-on: https://chromium-review.googlesource.com/203429Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Tested-by: 's avatarShannon Woods <shannonwoods@chromium.org>
parent 3dc8020a
......@@ -36,8 +36,7 @@ static const int GLSL_VERSION_120 = 120;
// - varying vec3 color; invariant color;
//
TVersionGLSL::TVersionGLSL(ShShaderType type)
: mShaderType(type),
mVersion(GLSL_VERSION_110)
: mVersion(GLSL_VERSION_110)
{
}
......
......@@ -49,7 +49,6 @@ protected:
void updateVersion(int version);
private:
ShShaderType mShaderType;
int mVersion;
};
......
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