From 3c1b39e10315badc2c1b016a87f61bd9e2a577b1 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Sun, 30 Mar 2014 14:36:55 +0200 Subject: [PATCH] GL3: Remove unused variable --HG-- branch : opengl3 --- code/nel/src/3d/driver/opengl3/driver_opengl_extension.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/nel/src/3d/driver/opengl3/driver_opengl_extension.h b/code/nel/src/3d/driver/opengl3/driver_opengl_extension.h index d63893013..6942fe8b2 100644 --- a/code/nel/src/3d/driver/opengl3/driver_opengl_extension.h +++ b/code/nel/src/3d/driver/opengl3/driver_opengl_extension.h @@ -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