GL3: Remove unused variable

--HG--
branch : opengl3
hg/feature/opengl3
kaetemi 11 years ago
parent 3bba0fad6c
commit 3c1b39e103

@ -55,8 +55,6 @@ struct CGlExtensions
bool EXTSecondaryColor;
bool EXTBlendColor;
// equal to GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV if possible, or GL_VERTEX_ARRAY_RANGE_NV
uint NVStateVARWithoutFlush;
// WGL ARB extensions, true if supported
bool WGLARBPBuffer;
@ -99,7 +97,6 @@ public:
ARBTextureRectangle = false;
ARBTextureNonPowerOfTwo = false;
ARBMultisample = false;
NVStateVARWithoutFlush = 0;
}
std::string toString()
@ -126,7 +123,6 @@ public:
result += EXTSeparateSpecularColor ? "EXTSeparateSpecularColor " : "";
result += EXTSecondaryColor ? "EXTSecondaryColor " : "";
result += EXTBlendColor ? "EXTBlendColor " : "";
result += NVStateVARWithoutFlush ? "NVStateVARWithoutFlush " : "";
result += ARBMultisample ? "ARBMultisample " : "";
#ifdef NL_OS_WINDOWS

Loading…
Cancel
Save