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.
This commit is contained in:
Matthias Clasen 2021-10-07 12:37:55 -04:00
parent 7a1644bc97
commit f868c67429

View File

@ -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)]