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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user