Lines 102-108
Link Here
|
102 |
# Declarations of plugins provided by PyOpenGL itself |
102 |
# Declarations of plugins provided by PyOpenGL itself |
103 |
from OpenGL.plugins import PlatformPlugin, FormatHandler |
103 |
from OpenGL.plugins import PlatformPlugin, FormatHandler |
104 |
PlatformPlugin( 'nt', 'OpenGL.platform.win32.Win32Platform' ) |
104 |
PlatformPlugin( 'nt', 'OpenGL.platform.win32.Win32Platform' ) |
105 |
PlatformPlugin( 'posix ', 'OpenGL.platform.glx.GLXPlatform' ) |
105 |
PlatformPlugin( 'posix', 'OpenGL.platform.glx.GLXPlatform' ) |
106 |
PlatformPlugin( 'linux2', 'OpenGL.platform.glx.GLXPlatform' ) |
106 |
PlatformPlugin( 'linux2', 'OpenGL.platform.glx.GLXPlatform' ) |
107 |
PlatformPlugin( 'darwin', 'OpenGL.platform.darwin.DarwinPlatform' ) |
107 |
PlatformPlugin( 'darwin', 'OpenGL.platform.darwin.DarwinPlatform' ) |
108 |
|
108 |
|