summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-10-07 12:37:55 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-10-07 13:05:53 -0400
commitf868c67429bc1198d6f33c3d1eec1d8c5f60fba8 (patch)
tree374e84c04ac6fc04e9dbb6b352c3cb5058dd81e3
parent7a1644bc972d407ee2a106ccff7d11cad100b243 (diff)
downloadgtk+-f868c67429bc1198d6f33c3d1eec1d8c5f60fba8.tar.gz
Skip gsk_ngl type funcs
The only type we have with this prefix is the deprecated duplicate of gsk_gl_renderer_get_type(), and including it causes some tests to break. So skip it.
-rw-r--r--gtk/gentypefuncs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gentypefuncs.py b/gtk/gentypefuncs.py
index 23a874aae7..d5692de281 100644
--- a/gtk/gentypefuncs.py
+++ b/gtk/gentypefuncs.py
@@ -79,6 +79,8 @@ for f in funcs:
file_output += ['#ifdef GDK_RENDERING_VULKAN']
file_output += ['*tp++ = {0}();'.format(f)]
file_output += ['#endif']
+ elif f.startswith('gsk_ngl'):
+ file_output += ['']
else:
file_output += ['*tp++ = {0}();'.format(f)]