Skip to content

Commit

Permalink
gl: include GLSL-only extensions not in registry
Browse files Browse the repository at this point in the history
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
  • Loading branch information
tycho committed Nov 2, 2022
1 parent a9b1832 commit 06464e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion glad/specification.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ class GL(Specification):

API = 'https://raw.githubusercontent.com/KhronosGroup/OpenGL-Registry/main/xml/'
NAME = 'gl'
EXTS = ['https://raw.githubusercontent.com/google/angle/main/scripts/gl_angle_ext.xml']
EXTS = ['https://www.uplinklabs.net/glsl_exts.xml',
'https://raw.githubusercontent.com/google/angle/main/scripts/gl_angle_ext.xml']

def _magic_require(self, api, profile):
require = Specification._magic_require(self, api, profile)
Expand Down

0 comments on commit 06464e5

Please sign in to comment.