Remove the python OpenGL wrapper as it is no longer needed

This commit is contained in:
Kovid Goyal
2017-09-12 12:05:34 +05:30
parent 86893db46b
commit 7f6befe4f9
6 changed files with 61 additions and 891 deletions

View File

@@ -84,7 +84,6 @@ static struct PyModuleDef module = {
};
extern bool add_module_gl_constants(PyObject*);
extern int init_LineBuf(PyObject *);
extern int init_HistoryBuf(PyObject *);
extern int init_Cursor(PyObject *);
@@ -123,7 +122,6 @@ PyInit_fast_data_types(void) {
if (!init_ChildMonitor(m)) return NULL;
if (!init_ColorProfile(m)) return NULL;
if (!init_Screen(m)) return NULL;
if (!add_module_gl_constants(m)) return NULL;
if (!init_glfw(m)) return NULL;
if (!init_sprites(m)) return NULL;
if (PySys_GetObject("debug_gl") == Py_True) {