Lines Matching refs:bindpt
353 struct gl_query_object **bindpt; in _mesa_DeleteQueries() local
354 bindpt = get_query_binding_point(ctx, q->Target, q->Stream); in _mesa_DeleteQueries()
355 assert(bindpt); /* Should be non-null for active q. */ in _mesa_DeleteQueries()
356 if (bindpt) { in _mesa_DeleteQueries()
357 *bindpt = NULL; in _mesa_DeleteQueries()
416 struct gl_query_object *q, **bindpt; in _mesa_BeginQueryIndexed() local
428 bindpt = get_query_binding_point(ctx, target, index); in _mesa_BeginQueryIndexed()
429 if (!bindpt) { in _mesa_BeginQueryIndexed()
440 if (*bindpt) { in _mesa_BeginQueryIndexed()
513 *bindpt = q; in _mesa_BeginQueryIndexed()
522 struct gl_query_object *q, **bindpt; in _mesa_EndQueryIndexed() local
534 bindpt = get_query_binding_point(ctx, target, index); in _mesa_EndQueryIndexed()
535 if (!bindpt) { in _mesa_EndQueryIndexed()
541 q = *bindpt; in _mesa_EndQueryIndexed()
552 *bindpt = NULL; in _mesa_EndQueryIndexed()
654 struct gl_query_object *q = NULL, **bindpt = NULL; in _mesa_GetQueryIndexediv() local
686 bindpt = get_query_binding_point(ctx, target, index); in _mesa_GetQueryIndexediv()
687 if (!bindpt) { in _mesa_GetQueryIndexediv()
692 q = *bindpt; in _mesa_GetQueryIndexediv()