Spaces:
Runtime error
Runtime error
File size: 261 Bytes
d82cf6a |
1 2 3 4 5 6 7 8 9 |
"""This file is currently hand-coded; I don't have a MESA header file to build
off.
"""
from ctypes import *
from pyglet.gl.lib import link_GLX as _link_function
glXSwapIntervalMESA = _link_function('glXSwapIntervalMESA', c_int, [c_int], 'MESA_swap_control')
|