r600g: pad the DMA CS to a multiple of 8 dwords
[mesa.git] / src / mesa / main / queryobj.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 #include "glheader.h"
27 #include "context.h"
28 #include "enums.h"
29 #include "hash.h"
30 #include "imports.h"
31 #include "queryobj.h"
32 #include "mfeatures.h"
33 #include "mtypes.h"
34 #include "main/dispatch.h"
35
36
37 /**
38 * Allocate a new query object. This is a fallback routine called via
39 * ctx->Driver.NewQueryObject().
40 * \param ctx - rendering context
41 * \param id - the new object's ID
42 * \return pointer to new query_object object or NULL if out of memory.
43 */
44 static struct gl_query_object *
45 _mesa_new_query_object(struct gl_context *ctx, GLuint id)
46 {
47 struct gl_query_object *q = MALLOC_STRUCT(gl_query_object);
48 (void) ctx;
49 if (q) {
50 q->Id = id;
51 q->Result = 0;
52 q->Active = GL_FALSE;
53
54 /* This is to satisfy the language of the specification: "In the initial
55 * state of a query object, the result is available" (OpenGL 3.1 §
56 * 2.13).
57 */
58 q->Ready = GL_TRUE;
59
60 /* OpenGL 3.1 § 2.13 says about GenQueries, "These names are marked as
61 * used, but no object is associated with them until the first time they
62 * are used by BeginQuery." Since our implementation actually does
63 * allocate an object at this point, use a flag to indicate that this
64 * object has not yet been bound so should not be considered a query.
65 */
66 q->EverBound = GL_FALSE;
67 }
68 return q;
69 }
70
71
72 /**
73 * Begin a query. Software driver fallback.
74 * Called via ctx->Driver.BeginQuery().
75 */
76 static void
77 _mesa_begin_query(struct gl_context *ctx, struct gl_query_object *q)
78 {
79 /* no-op */
80 }
81
82
83 /**
84 * End a query. Software driver fallback.
85 * Called via ctx->Driver.EndQuery().
86 */
87 static void
88 _mesa_end_query(struct gl_context *ctx, struct gl_query_object *q)
89 {
90 q->Ready = GL_TRUE;
91 }
92
93
94 /**
95 * Wait for query to complete. Software driver fallback.
96 * Called via ctx->Driver.WaitQuery().
97 */
98 static void
99 _mesa_wait_query(struct gl_context *ctx, struct gl_query_object *q)
100 {
101 /* For software drivers, _mesa_end_query() should have completed the query.
102 * For real hardware, implement a proper WaitQuery() driver function,
103 * which may require issuing a flush.
104 */
105 assert(q->Ready);
106 }
107
108
109 /**
110 * Check if a query results are ready. Software driver fallback.
111 * Called via ctx->Driver.CheckQuery().
112 */
113 static void
114 _mesa_check_query(struct gl_context *ctx, struct gl_query_object *q)
115 {
116 /* No-op for sw rendering.
117 * HW drivers may need to flush at this time.
118 */
119 }
120
121
122 /**
123 * Delete a query object. Called via ctx->Driver.DeleteQuery().
124 * Not removed from hash table here.
125 */
126 static void
127 _mesa_delete_query(struct gl_context *ctx, struct gl_query_object *q)
128 {
129 free(q);
130 }
131
132
133 void
134 _mesa_init_query_object_functions(struct dd_function_table *driver)
135 {
136 driver->NewQueryObject = _mesa_new_query_object;
137 driver->DeleteQuery = _mesa_delete_query;
138 driver->BeginQuery = _mesa_begin_query;
139 driver->EndQuery = _mesa_end_query;
140 driver->WaitQuery = _mesa_wait_query;
141 driver->CheckQuery = _mesa_check_query;
142 }
143
144
145 /**
146 * Return pointer to the query object binding point for the given target.
147 * \return NULL if invalid target, else the address of binding point
148 */
149 static struct gl_query_object **
150 get_query_binding_point(struct gl_context *ctx, GLenum target)
151 {
152 switch (target) {
153 case GL_SAMPLES_PASSED_ARB:
154 if (ctx->Extensions.ARB_occlusion_query)
155 return &ctx->Query.CurrentOcclusionObject;
156 else
157 return NULL;
158 case GL_ANY_SAMPLES_PASSED:
159 if (ctx->Extensions.ARB_occlusion_query2)
160 return &ctx->Query.CurrentOcclusionObject;
161 else
162 return NULL;
163 case GL_ANY_SAMPLES_PASSED_CONSERVATIVE:
164 if (ctx->Extensions.ARB_ES3_compatibility
165 || (ctx->API == API_OPENGLES2 && ctx->Version >= 30))
166 return &ctx->Query.CurrentOcclusionObject;
167 else
168 return NULL;
169 case GL_TIME_ELAPSED_EXT:
170 if (ctx->Extensions.EXT_timer_query)
171 return &ctx->Query.CurrentTimerObject;
172 else
173 return NULL;
174 case GL_PRIMITIVES_GENERATED:
175 if (ctx->Extensions.EXT_transform_feedback)
176 return &ctx->Query.PrimitivesGenerated;
177 else
178 return NULL;
179 case GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN:
180 if (ctx->Extensions.EXT_transform_feedback)
181 return &ctx->Query.PrimitivesWritten;
182 else
183 return NULL;
184 default:
185 return NULL;
186 }
187 }
188
189
190 void GLAPIENTRY
191 _mesa_GenQueries(GLsizei n, GLuint *ids)
192 {
193 GLuint first;
194 GET_CURRENT_CONTEXT(ctx);
195
196 if (MESA_VERBOSE & VERBOSE_API)
197 _mesa_debug(ctx, "glGenQueries(%d)\n", n);
198
199 if (n < 0) {
200 _mesa_error(ctx, GL_INVALID_VALUE, "glGenQueriesARB(n < 0)");
201 return;
202 }
203
204 /* No query objects can be active at this time! */
205 if (ctx->Query.CurrentOcclusionObject ||
206 ctx->Query.CurrentTimerObject) {
207 _mesa_error(ctx, GL_INVALID_OPERATION, "glGenQueriesARB");
208 return;
209 }
210
211 first = _mesa_HashFindFreeKeyBlock(ctx->Query.QueryObjects, n);
212 if (first) {
213 GLsizei i;
214 for (i = 0; i < n; i++) {
215 struct gl_query_object *q
216 = ctx->Driver.NewQueryObject(ctx, first + i);
217 if (!q) {
218 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glGenQueriesARB");
219 return;
220 }
221 ids[i] = first + i;
222 _mesa_HashInsert(ctx->Query.QueryObjects, first + i, q);
223 }
224 }
225 }
226
227
228 void GLAPIENTRY
229 _mesa_DeleteQueries(GLsizei n, const GLuint *ids)
230 {
231 GLint i;
232 GET_CURRENT_CONTEXT(ctx);
233 FLUSH_VERTICES(ctx, 0);
234
235 if (MESA_VERBOSE & VERBOSE_API)
236 _mesa_debug(ctx, "glDeleteQueries(%d)\n", n);
237
238 if (n < 0) {
239 _mesa_error(ctx, GL_INVALID_VALUE, "glDeleteQueriesARB(n < 0)");
240 return;
241 }
242
243 /* No query objects can be active at this time! */
244 if (ctx->Query.CurrentOcclusionObject ||
245 ctx->Query.CurrentTimerObject) {
246 _mesa_error(ctx, GL_INVALID_OPERATION, "glDeleteQueriesARB");
247 return;
248 }
249
250 for (i = 0; i < n; i++) {
251 if (ids[i] > 0) {
252 struct gl_query_object *q = _mesa_lookup_query_object(ctx, ids[i]);
253 if (q) {
254 ASSERT(!q->Active); /* should be caught earlier */
255 _mesa_HashRemove(ctx->Query.QueryObjects, ids[i]);
256 ctx->Driver.DeleteQuery(ctx, q);
257 }
258 }
259 }
260 }
261
262
263 GLboolean GLAPIENTRY
264 _mesa_IsQuery(GLuint id)
265 {
266 struct gl_query_object *q;
267
268 GET_CURRENT_CONTEXT(ctx);
269 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
270
271 if (MESA_VERBOSE & VERBOSE_API)
272 _mesa_debug(ctx, "glIsQuery(%u)\n", id);
273
274 if (id == 0)
275 return GL_FALSE;
276
277 q = _mesa_lookup_query_object(ctx, id);
278 if (q == NULL)
279 return GL_FALSE;
280
281 return q->EverBound;
282 }
283
284 static GLboolean
285 query_error_check_index(struct gl_context *ctx, GLenum target, GLuint index)
286 {
287 switch (target) {
288 case GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN:
289 case GL_PRIMITIVES_GENERATED:
290 if (index >= ctx->Const.MaxVertexStreams) {
291 _mesa_error(ctx, GL_INVALID_VALUE,
292 "glBeginQueryIndexed(index>=MaxVertexStreams)");
293 return GL_FALSE;
294 }
295 break;
296 default:
297 if (index > 0) {
298 _mesa_error(ctx, GL_INVALID_VALUE, "glBeginQueryIndexed(index>0)");
299 return GL_FALSE;
300 }
301 }
302 return GL_TRUE;
303 }
304
305 void GLAPIENTRY
306 _mesa_BeginQueryIndexed(GLenum target, GLuint index, GLuint id)
307 {
308 struct gl_query_object *q, **bindpt;
309 GET_CURRENT_CONTEXT(ctx);
310
311 if (MESA_VERBOSE & VERBOSE_API)
312 _mesa_debug(ctx, "glBeginQueryIndexed(%s, %u, %u)\n",
313 _mesa_lookup_enum_by_nr(target), index, id);
314
315 if (!query_error_check_index(ctx, target, index))
316 return;
317
318 FLUSH_VERTICES(ctx, _NEW_DEPTH);
319
320 bindpt = get_query_binding_point(ctx, target);
321 if (!bindpt) {
322 _mesa_error(ctx, GL_INVALID_ENUM, "glBeginQuery{Indexed}(target)");
323 return;
324 }
325
326 /* From the GL_ARB_occlusion_query spec:
327 *
328 * "If BeginQueryARB is called while another query is already in
329 * progress with the same target, an INVALID_OPERATION error is
330 * generated."
331 */
332 if (*bindpt) {
333 _mesa_error(ctx, GL_INVALID_OPERATION,
334 "glBeginQuery{Indexed}(target=%s is active)",
335 _mesa_lookup_enum_by_nr(target));
336 return;
337 }
338
339 if (id == 0) {
340 _mesa_error(ctx, GL_INVALID_OPERATION, "glBeginQuery{Indexed}(id==0)");
341 return;
342 }
343
344 q = _mesa_lookup_query_object(ctx, id);
345 if (!q) {
346 if (ctx->API != API_OPENGL_COMPAT) {
347 _mesa_error(ctx, GL_INVALID_OPERATION,
348 "glBeginQuery{Indexed}(non-gen name)");
349 return;
350 } else {
351 /* create new object */
352 q = ctx->Driver.NewQueryObject(ctx, id);
353 if (!q) {
354 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glBeginQuery{Indexed}");
355 return;
356 }
357 _mesa_HashInsert(ctx->Query.QueryObjects, id, q);
358 }
359 }
360 else {
361 /* pre-existing object */
362 if (q->Active) {
363 _mesa_error(ctx, GL_INVALID_OPERATION,
364 "glBeginQuery{Indexed}(query already active)");
365 return;
366 }
367 }
368
369 q->Target = target;
370 q->Active = GL_TRUE;
371 q->Result = 0;
372 q->Ready = GL_FALSE;
373 q->EverBound = GL_TRUE;
374
375 /* XXX should probably refcount query objects */
376 *bindpt = q;
377
378 ctx->Driver.BeginQuery(ctx, q);
379 }
380
381
382 void GLAPIENTRY
383 _mesa_EndQueryIndexed(GLenum target, GLuint index)
384 {
385 struct gl_query_object *q, **bindpt;
386 GET_CURRENT_CONTEXT(ctx);
387
388 if (MESA_VERBOSE & VERBOSE_API)
389 _mesa_debug(ctx, "glEndQueryIndexed(%s, %u)\n",
390 _mesa_lookup_enum_by_nr(target), index);
391
392 if (!query_error_check_index(ctx, target, index))
393 return;
394
395 FLUSH_VERTICES(ctx, _NEW_DEPTH);
396
397 bindpt = get_query_binding_point(ctx, target);
398 if (!bindpt) {
399 _mesa_error(ctx, GL_INVALID_ENUM, "glEndQuery{Indexed}(target)");
400 return;
401 }
402
403 /* XXX should probably refcount query objects */
404 q = *bindpt;
405
406 /* Check for GL_ANY_SAMPLES_PASSED vs GL_SAMPLES_PASSED. */
407 if (q && q->Target != target) {
408 _mesa_error(ctx, GL_INVALID_OPERATION,
409 "glEndQuery(target=%s with active query of target %s)",
410 _mesa_lookup_enum_by_nr(target),
411 _mesa_lookup_enum_by_nr(q->Target));
412 return;
413 }
414
415 *bindpt = NULL;
416
417 if (!q || !q->Active) {
418 _mesa_error(ctx, GL_INVALID_OPERATION,
419 "glEndQuery{Indexed}(no matching glBeginQuery{Indexed})");
420 return;
421 }
422
423 q->Active = GL_FALSE;
424 ctx->Driver.EndQuery(ctx, q);
425 }
426
427 void GLAPIENTRY
428 _mesa_BeginQuery(GLenum target, GLuint id)
429 {
430 _mesa_BeginQueryIndexed(target, 0, id);
431 }
432
433 void GLAPIENTRY
434 _mesa_EndQuery(GLenum target)
435 {
436 _mesa_EndQueryIndexed(target, 0);
437 }
438
439 void GLAPIENTRY
440 _mesa_QueryCounter(GLuint id, GLenum target)
441 {
442 struct gl_query_object *q;
443 GET_CURRENT_CONTEXT(ctx);
444
445 if (MESA_VERBOSE & VERBOSE_API)
446 _mesa_debug(ctx, "glQueryCounter(%u, %s)\n", id,
447 _mesa_lookup_enum_by_nr(target));
448
449 /* error checking */
450 if (target != GL_TIMESTAMP) {
451 _mesa_error(ctx, GL_INVALID_ENUM, "glQueryCounter(target)");
452 return;
453 }
454
455 if (id == 0) {
456 _mesa_error(ctx, GL_INVALID_OPERATION, "glQueryCounter(id==0)");
457 return;
458 }
459
460 q = _mesa_lookup_query_object(ctx, id);
461 if (!q) {
462 /* XXX the Core profile should throw INVALID_OPERATION here */
463
464 /* create new object */
465 q = ctx->Driver.NewQueryObject(ctx, id);
466 if (!q) {
467 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glQueryCounter");
468 return;
469 }
470 _mesa_HashInsert(ctx->Query.QueryObjects, id, q);
471 }
472 else {
473 if (q->Target && q->Target != GL_TIMESTAMP) {
474 _mesa_error(ctx, GL_INVALID_OPERATION,
475 "glQueryCounter(id has an invalid target)");
476 return;
477 }
478 }
479
480 if (q->Active) {
481 _mesa_error(ctx, GL_INVALID_OPERATION, "glQueryCounter(id is active)");
482 return;
483 }
484
485 q->Target = target;
486 q->Result = 0;
487 q->Ready = GL_FALSE;
488
489 /* QueryCounter is implemented using EndQuery without BeginQuery
490 * in drivers. This is actually Direct3D and Gallium convention. */
491 ctx->Driver.EndQuery(ctx, q);
492 }
493
494
495 void GLAPIENTRY
496 _mesa_GetQueryIndexediv(GLenum target, GLuint index, GLenum pname,
497 GLint *params)
498 {
499 struct gl_query_object *q = NULL, **bindpt = NULL;
500 GET_CURRENT_CONTEXT(ctx);
501
502 if (MESA_VERBOSE & VERBOSE_API)
503 _mesa_debug(ctx, "glGetQueryIndexediv(%s, %u, %s)\n",
504 _mesa_lookup_enum_by_nr(target),
505 index,
506 _mesa_lookup_enum_by_nr(pname));
507
508 if (!query_error_check_index(ctx, target, index))
509 return;
510
511 if (target == GL_TIMESTAMP) {
512 if (!ctx->Extensions.ARB_timer_query) {
513 _mesa_error(ctx, GL_INVALID_ENUM, "glGetQueryARB(target)");
514 return;
515 }
516 }
517 else {
518 bindpt = get_query_binding_point(ctx, target);
519 if (!bindpt) {
520 _mesa_error(ctx, GL_INVALID_ENUM, "glGetQuery{Indexed}iv(target)");
521 return;
522 }
523
524 q = *bindpt;
525 }
526
527 switch (pname) {
528 case GL_QUERY_COUNTER_BITS_ARB:
529 switch (target) {
530 case GL_SAMPLES_PASSED:
531 *params = ctx->Const.QueryCounterBits.SamplesPassed;
532 break;
533 case GL_ANY_SAMPLES_PASSED:
534 /* The minimum value of this is 1 if it's nonzero, and the value
535 * is only ever GL_TRUE or GL_FALSE, so no sense in reporting more
536 * bits.
537 */
538 *params = 1;
539 break;
540 case GL_TIME_ELAPSED:
541 *params = ctx->Const.QueryCounterBits.TimeElapsed;
542 break;
543 case GL_TIMESTAMP:
544 *params = ctx->Const.QueryCounterBits.Timestamp;
545 break;
546 case GL_PRIMITIVES_GENERATED:
547 *params = ctx->Const.QueryCounterBits.PrimitivesGenerated;
548 break;
549 case GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN:
550 *params = ctx->Const.QueryCounterBits.PrimitivesWritten;
551 break;
552 default:
553 _mesa_problem(ctx,
554 "Unknown target in glGetQueryIndexediv(target = %s)",
555 _mesa_lookup_enum_by_nr(target));
556 *params = 0;
557 break;
558 }
559 break;
560 case GL_CURRENT_QUERY_ARB:
561 *params = (q && q->Target == target) ? q->Id : 0;
562 break;
563 default:
564 _mesa_error(ctx, GL_INVALID_ENUM, "glGetQuery{Indexed}iv(pname)");
565 return;
566 }
567 }
568
569 void GLAPIENTRY
570 _mesa_GetQueryiv(GLenum target, GLenum pname, GLint *params)
571 {
572 _mesa_GetQueryIndexediv(target, 0, pname, params);
573 }
574
575 void GLAPIENTRY
576 _mesa_GetQueryObjectiv(GLuint id, GLenum pname, GLint *params)
577 {
578 struct gl_query_object *q = NULL;
579 GET_CURRENT_CONTEXT(ctx);
580
581 if (MESA_VERBOSE & VERBOSE_API)
582 _mesa_debug(ctx, "glGetQueryObjectiv(%u, %s)\n", id,
583 _mesa_lookup_enum_by_nr(pname));
584
585 if (id)
586 q = _mesa_lookup_query_object(ctx, id);
587
588 if (!q || q->Active) {
589 _mesa_error(ctx, GL_INVALID_OPERATION,
590 "glGetQueryObjectivARB(id=%d is invalid or active)", id);
591 return;
592 }
593
594 switch (pname) {
595 case GL_QUERY_RESULT_ARB:
596 if (!q->Ready)
597 ctx->Driver.WaitQuery(ctx, q);
598 /* if result is too large for returned type, clamp to max value */
599 if (q->Target == GL_ANY_SAMPLES_PASSED
600 || q->Target == GL_ANY_SAMPLES_PASSED_CONSERVATIVE) {
601 if (q->Result)
602 *params = GL_TRUE;
603 else
604 *params = GL_FALSE;
605 } else {
606 if (q->Result > 0x7fffffff) {
607 *params = 0x7fffffff;
608 }
609 else {
610 *params = (GLint)q->Result;
611 }
612 }
613 break;
614 case GL_QUERY_RESULT_AVAILABLE_ARB:
615 if (!q->Ready)
616 ctx->Driver.CheckQuery( ctx, q );
617 *params = q->Ready;
618 break;
619 default:
620 _mesa_error(ctx, GL_INVALID_ENUM, "glGetQueryObjectivARB(pname)");
621 return;
622 }
623 }
624
625
626 void GLAPIENTRY
627 _mesa_GetQueryObjectuiv(GLuint id, GLenum pname, GLuint *params)
628 {
629 struct gl_query_object *q = NULL;
630 GET_CURRENT_CONTEXT(ctx);
631
632 if (MESA_VERBOSE & VERBOSE_API)
633 _mesa_debug(ctx, "glGetQueryObjectuiv(%u, %s)\n", id,
634 _mesa_lookup_enum_by_nr(pname));
635
636 if (id)
637 q = _mesa_lookup_query_object(ctx, id);
638
639 if (!q || q->Active) {
640 _mesa_error(ctx, GL_INVALID_OPERATION,
641 "glGetQueryObjectuivARB(id=%d is invalid or active)", id);
642 return;
643 }
644
645 switch (pname) {
646 case GL_QUERY_RESULT_ARB:
647 if (!q->Ready)
648 ctx->Driver.WaitQuery(ctx, q);
649 /* if result is too large for returned type, clamp to max value */
650 if (q->Target == GL_ANY_SAMPLES_PASSED
651 || q->Target == GL_ANY_SAMPLES_PASSED_CONSERVATIVE) {
652 if (q->Result)
653 *params = GL_TRUE;
654 else
655 *params = GL_FALSE;
656 } else {
657 if (q->Result > 0xffffffff) {
658 *params = 0xffffffff;
659 }
660 else {
661 *params = (GLuint)q->Result;
662 }
663 }
664 break;
665 case GL_QUERY_RESULT_AVAILABLE_ARB:
666 if (!q->Ready)
667 ctx->Driver.CheckQuery( ctx, q );
668 *params = q->Ready;
669 break;
670 default:
671 _mesa_error(ctx, GL_INVALID_ENUM, "glGetQueryObjectuivARB(pname)");
672 return;
673 }
674 }
675
676
677 /**
678 * New with GL_EXT_timer_query
679 */
680 void GLAPIENTRY
681 _mesa_GetQueryObjecti64v(GLuint id, GLenum pname, GLint64EXT *params)
682 {
683 struct gl_query_object *q = NULL;
684 GET_CURRENT_CONTEXT(ctx);
685
686 if (MESA_VERBOSE & VERBOSE_API)
687 _mesa_debug(ctx, "glGetQueryObjecti64v(%u, %s)\n", id,
688 _mesa_lookup_enum_by_nr(pname));
689
690 if (id)
691 q = _mesa_lookup_query_object(ctx, id);
692
693 if (!q || q->Active) {
694 _mesa_error(ctx, GL_INVALID_OPERATION,
695 "glGetQueryObjectui64vARB(id=%d is invalid or active)", id);
696 return;
697 }
698
699 switch (pname) {
700 case GL_QUERY_RESULT_ARB:
701 if (!q->Ready)
702 ctx->Driver.WaitQuery(ctx, q);
703 *params = q->Result;
704 break;
705 case GL_QUERY_RESULT_AVAILABLE_ARB:
706 if (!q->Ready)
707 ctx->Driver.CheckQuery( ctx, q );
708 *params = q->Ready;
709 break;
710 default:
711 _mesa_error(ctx, GL_INVALID_ENUM, "glGetQueryObjecti64vARB(pname)");
712 return;
713 }
714 }
715
716
717 /**
718 * New with GL_EXT_timer_query
719 */
720 void GLAPIENTRY
721 _mesa_GetQueryObjectui64v(GLuint id, GLenum pname, GLuint64EXT *params)
722 {
723 struct gl_query_object *q = NULL;
724 GET_CURRENT_CONTEXT(ctx);
725
726 if (MESA_VERBOSE & VERBOSE_API)
727 _mesa_debug(ctx, "glGetQueryObjectui64v(%u, %s)\n", id,
728 _mesa_lookup_enum_by_nr(pname));
729
730 if (id)
731 q = _mesa_lookup_query_object(ctx, id);
732
733 if (!q || q->Active) {
734 _mesa_error(ctx, GL_INVALID_OPERATION,
735 "glGetQueryObjectuui64vARB(id=%d is invalid or active)", id);
736 return;
737 }
738
739 switch (pname) {
740 case GL_QUERY_RESULT_ARB:
741 if (!q->Ready)
742 ctx->Driver.WaitQuery(ctx, q);
743 *params = q->Result;
744 break;
745 case GL_QUERY_RESULT_AVAILABLE_ARB:
746 if (!q->Ready)
747 ctx->Driver.CheckQuery( ctx, q );
748 *params = q->Ready;
749 break;
750 default:
751 _mesa_error(ctx, GL_INVALID_ENUM, "glGetQueryObjectui64vARB(pname)");
752 return;
753 }
754 }
755
756 /**
757 * Allocate/init the context state related to query objects.
758 */
759 void
760 _mesa_init_queryobj(struct gl_context *ctx)
761 {
762 ctx->Query.QueryObjects = _mesa_NewHashTable();
763 ctx->Query.CurrentOcclusionObject = NULL;
764
765 ctx->Const.QueryCounterBits.SamplesPassed = 64;
766 ctx->Const.QueryCounterBits.TimeElapsed = 64;
767 ctx->Const.QueryCounterBits.Timestamp = 64;
768 ctx->Const.QueryCounterBits.PrimitivesGenerated = 64;
769 ctx->Const.QueryCounterBits.PrimitivesWritten = 64;
770 }
771
772
773 /**
774 * Callback for deleting a query object. Called by _mesa_HashDeleteAll().
775 */
776 static void
777 delete_queryobj_cb(GLuint id, void *data, void *userData)
778 {
779 struct gl_query_object *q= (struct gl_query_object *) data;
780 struct gl_context *ctx = (struct gl_context *)userData;
781 ctx->Driver.DeleteQuery(ctx, q);
782 }
783
784
785 /**
786 * Free the context state related to query objects.
787 */
788 void
789 _mesa_free_queryobj_data(struct gl_context *ctx)
790 {
791 _mesa_HashDeleteAll(ctx->Query.QueryObjects, delete_queryobj_cb, ctx);
792 _mesa_DeleteHashTable(ctx->Query.QueryObjects);
793 }