summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/remap_helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/glapi/remap_helper.py')
-rw-r--r--src/mesa/glapi/remap_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/remap_helper.py b/src/mesa/glapi/remap_helper.py
index e47583a5d3..2a1f5adc32 100644
--- a/src/mesa/glapi/remap_helper.py
+++ b/src/mesa/glapi/remap_helper.py
@@ -145,7 +145,7 @@ class PrintGlRemap(gl_XML.gl_print_base):
funcs = []
for f in extension_functions[ext]:
# test if the function is in the ABI
- if not f.assign_offset and f.offset >= 0:
+ if f.is_abi():
funcs.append(f)
if not funcs:
continue