Difficult-Rocket/libs/pyglet/gl/glxext_mesa.py

9 lines
261 B
Python
Raw Normal View History

2021-04-16 23:21:06 +08:00
"""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')