Commit 2a98d120 authored by Laurent Aimar's avatar Laurent Aimar

Improved "non power of 2" texture support detection (opengl).

parent 4804d439
...@@ -190,10 +190,9 @@ vout_display_opengl_t *vout_display_opengl_New(video_format_t *fmt, ...@@ -190,10 +190,9 @@ vout_display_opengl_t *vout_display_opengl_New(video_format_t *fmt,
supports_npot = true; supports_npot = true;
#elif defined(MACOS_OPENGL) #elif defined(MACOS_OPENGL)
supports_npot = true; supports_npot = true;
#endif #else
supports_npot |= strstr(extensions, "GL_APPLE_texture_2D_limited_npot") != NULL ||
#if defined(__APPLE__) && USE_OPENGL_ES == 1 strstr(extensions, "GL_ARB_texture_non_power_of_two");
supports_npot |= strstr(extensions, "GL_APPLE_texture_2D_limited_npot") != NULL;
#endif #endif
/* Texture size */ /* Texture size */
......
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