OpenGL: remove obsolete version check

This *should* be the last one in Blender creator. A few still live in
BGE.
This commit is contained in:
Mike Erwin
2016-01-07 16:44:49 -05:00
parent 0e695f671a
commit 2643b57f97

View File

@@ -248,9 +248,6 @@ GPUTexture *GPU_texture_create_3D(int w, int h, int depth, int channels, const f
GLenum type, format, internalformat;
void *pixels = NULL;
if (!GLEW_VERSION_1_2)
return NULL;
GPUTexture *tex = MEM_callocN(sizeof(GPUTexture), "GPUTexture");
tex->w = w;
tex->h = h;