X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=fips-dispatch-gl.c;fp=fips-dispatch-gl.c;h=0f5c251b0dcd82f2af344d823a2e56a69cd9a85a;hb=5894ec5a66b9131c06f6caefd8ec0b267ad9eea3;hp=368a9e74ad5dc2e60acf1bda50113b8ddfde5543;hpb=383fc95ff68a2b9a2772e2b12febb1830c32e260;p=fips diff --git a/fips-dispatch-gl.c b/fips-dispatch-gl.c index 368a9e7..0f5c251 100644 --- a/fips-dispatch-gl.c +++ b/fips-dispatch-gl.c @@ -196,6 +196,18 @@ stub_glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64 * params) PFNGLGETQUERYOBJECTUI64VPROC fips_dispatch_glGetQueryObjectui64v = stub_glGetQueryObjectui64v; +static void +stub_glGetQueryiv (GLenum target, GLenum pname, GLint * params) +{ + check_initialized (); + resolve2 (fips_dispatch_glGetQueryiv, + "glGetQueryiv", "glGetQueryivARB"); + fips_dispatch_glGetQueryiv (target, pname, params); +} + +PFNGLGETQUERYOBJECTIVPROC fips_dispatch_glGetQueryiv = + stub_glGetQueryiv; + static void stub_glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups)