Add a test for ARB_texture_buffer_object_rgb32

There are apparently some drivers on linux that are missing it,
see #54
This commit is contained in:
Kovid Goyal 2017-02-24 15:27:41 +05:30
parent 7d0c05e20d
commit 54e79a6901

View File

@ -145,6 +145,10 @@ _glewInit(PyObject UNUSED *self) {
PyErr_SetString(PyExc_RuntimeError, "OpenGL is missing the required ARB_texture_storage extension");
return NULL;
}
if(!GLEW_ARB_texture_buffer_object_rgb32) {
PyErr_SetString(PyExc_RuntimeError, "OpenGL is missing the required ARB_texture_buffer_object_rgb32 extension");
return NULL;
}
#endif
Py_RETURN_NONE;
}