From f79aaf93f8f9efe50b931df42882eb068a208ca1 Mon Sep 17 00:00:00 2001 From: fgsfds Date: Sun, 25 Jun 2023 16:40:47 +0200 Subject: [PATCH] ref: gl: psvita: disable NPOT textures, they're broken again --- ref/gl/gl_opengl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ref/gl/gl_opengl.c b/ref/gl/gl_opengl.c index 0acbd8c0..ec594488 100644 --- a/ref/gl/gl_opengl.c +++ b/ref/gl/gl_opengl.c @@ -744,8 +744,6 @@ void GL_InitExtensionsBigGL( void ) #if XASH_PSVITA // not all GL1.1 functions are implemented in vitaGL, but there's enough GL_SetExtension( GL_OPENGL_110, true ); - // NPOT textures are actually supported, but the extension is not listed in GL_EXTENSIONS - GL_SetExtension( GL_ARB_TEXTURE_NPOT_EXT, true ); // init our immediate mode override VGL_ShimInit(); #endif