Lines Matching refs:bindpt
345 struct gl_query_object **bindpt; in _mesa_DeleteQueries() local
346 bindpt = get_query_binding_point(ctx, q->Target, q->Stream); in _mesa_DeleteQueries()
347 assert(bindpt); /* Should be non-null for active q. */ in _mesa_DeleteQueries()
348 if (bindpt) { in _mesa_DeleteQueries()
349 *bindpt = NULL; in _mesa_DeleteQueries()
408 struct gl_query_object *q, **bindpt; in _mesa_BeginQueryIndexed() local
420 bindpt = get_query_binding_point(ctx, target, index); in _mesa_BeginQueryIndexed()
421 if (!bindpt) { in _mesa_BeginQueryIndexed()
432 if (*bindpt) { in _mesa_BeginQueryIndexed()
505 *bindpt = q; in _mesa_BeginQueryIndexed()
514 struct gl_query_object *q, **bindpt; in _mesa_EndQueryIndexed() local
526 bindpt = get_query_binding_point(ctx, target, index); in _mesa_EndQueryIndexed()
527 if (!bindpt) { in _mesa_EndQueryIndexed()
533 q = *bindpt; in _mesa_EndQueryIndexed()
544 *bindpt = NULL; in _mesa_EndQueryIndexed()
646 struct gl_query_object *q = NULL, **bindpt = NULL; in _mesa_GetQueryIndexediv() local
689 bindpt = get_query_binding_point(ctx, target, index); in _mesa_GetQueryIndexediv()
690 if (!bindpt) { in _mesa_GetQueryIndexediv()
695 q = *bindpt; in _mesa_GetQueryIndexediv()