We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b5b24 commit 47493f2Copy full SHA for 47493f2
OpenGL/raw/EGL/_types.py
@@ -3,11 +3,12 @@
3
from OpenGL._opaque import opaque_pointer_cls as _opaque_pointer_cls
4
from OpenGL import platform as _p
5
from OpenGL import extensions
6
+from OpenGL._bytes import as_8_bit
7
8
class _EGLQuerier( extensions.ExtensionQuerier ):
- prefix = 'EGL_'
9
+ prefix = as_8_bit('EGL_')
10
assumed_version = [1,0]
- version_prefix = 'EGL_VERSION_EGL_'
11
+ version_prefix = as_8_bit('EGL_VERSION_EGL_')
12
def getDisplay( self ):
13
"""Retrieve the currently-bound, or the default, display"""
14
from OpenGL.EGL import (
0 commit comments