mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
16 lines
464 B
C++
Executable File
16 lines
464 B
C++
Executable File
#pragma once
|
|
|
|
#include "os_gl.h"
|
|
|
|
#include <string_view>
|
|
|
|
struct PyMOLGlobals;
|
|
|
|
bool CheckGLErrorOK(PyMOLGlobals* G, std::string_view errString);
|
|
|
|
void GLAPIENTRY gl_debug_proc(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar *, const void *);
|
|
// userParam is qualified as const in OpenGL 4.4 spec but non-const in OpenGL 4.3 spec
|
|
void GLAPIENTRY gl_debug_proc(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar *, void *);
|
|
|
|
size_t gl_sizeof(GLenum type);
|