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:
parent
7d0c05e20d
commit
54e79a6901
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user