15 lines
766 B
Text
15 lines
766 B
Text
|
Index: OpenGL/__init__.py
|
||
|
--- OpenGL/__init__.py.orig
|
||
|
+++ OpenGL/__init__.py
|
||
|
@@ -212,6 +212,10 @@ TYPE_ANNOTATIONS = False
|
||
|
from OpenGL.plugins import PlatformPlugin, FormatHandler
|
||
|
PlatformPlugin( 'nt', 'OpenGL.platform.win32.Win32Platform' )
|
||
|
PlatformPlugin( 'linux2', 'OpenGL.platform.glx.GLXPlatform' )
|
||
|
+PlatformPlugin( 'openbsd4', 'OpenGL.platform.glx.GLXPlatform' )
|
||
|
+PlatformPlugin( 'openbsd5', 'OpenGL.platform.glx.GLXPlatform' )
|
||
|
+PlatformPlugin( 'openbsd6', 'OpenGL.platform.glx.GLXPlatform' )
|
||
|
+PlatformPlugin( 'openbsd7', 'OpenGL.platform.glx.GLXPlatform' )
|
||
|
PlatformPlugin( 'darwin', 'OpenGL.platform.darwin.DarwinPlatform' )
|
||
|
PlatformPlugin( 'posix', 'OpenGL.platform.glx.GLXPlatform' )
|
||
|
PlatformPlugin( 'osmesa', 'OpenGL.platform.osmesa.OSMesaPlatform')
|