Commit d9235be5 authored by Juan Linietsky's avatar Juan Linietsky
Browse files

Enable seamless cubemap only if extension is present.

parent 292c037f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -5469,7 +5469,9 @@ void RasterizerStorageGLES2::initialize() {
#ifdef GLES_OVER_GL
	//this needs to be enabled manually in OpenGL 2.1

	if (config.extensions.has("GL_ARB_seamless_cube_map")) {
		glEnable(_EXT_TEXTURE_CUBE_MAP_SEAMLESS);
	}
	glEnable(GL_POINT_SPRITE);
	glEnable(GL_VERTEX_PROGRAM_POINT_SIZE);
#endif