diff --git a/aegisub/src/video_out_gl.cpp b/aegisub/src/video_out_gl.cpp index 419fcfabc..dfbe73810 100644 --- a/aegisub/src/video_out_gl.cpp +++ b/aegisub/src/video_out_gl.cpp @@ -91,7 +91,6 @@ static bool TestTexture(int width, int height, GLint format) { VideoOutGL::VideoOutGL() : maxTextureSize(0), supportsRectangularTextures(false), - supportsGlClampToEdge(false), internalFormat(0), frameWidth(0), frameHeight(0), diff --git a/aegisub/src/video_out_gl.h b/aegisub/src/video_out_gl.h index 698810431..bcf19a21f 100644 --- a/aegisub/src/video_out_gl.h +++ b/aegisub/src/video_out_gl.h @@ -52,8 +52,6 @@ private: int maxTextureSize; /// Whether rectangular textures are supported by the user's graphics card bool supportsRectangularTextures; - /// Whether GL_CLAMP_TO_EDGE is supported by the user's drivers - bool supportsGlClampToEdge; /// The internalformat to use int internalFormat;