aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/queryobj.c
diff options
context:
space:
mode:
authorCarl Worth <[email protected]>2012-12-17 13:38:39 -0800
committerCarl Worth <[email protected]>2013-01-15 13:10:58 -0800
commitc7df9c0e12e000f3d2fd57ebb3072f4afbda8579 (patch)
treefc5bc43d099a7a822b790d5c6499e6503d487177 /src/mesa/main/queryobj.c
parent133383f77a526537f2bf32705ce391370dcbc84f (diff)
Update comment to specify actual text being referenced from the specification.
The reference to "correct, see spec" was a bit too vague to be useful, (particularly since the language being referenced here changes between OpenGL 3.1 and OpenGL 4.3). Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/queryobj.c')
-rw-r--r--src/mesa/main/queryobj.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/main/queryobj.c b/src/mesa/main/queryobj.c
index aa7c800d45b..b482b1518de 100644
--- a/src/mesa/main/queryobj.c
+++ b/src/mesa/main/queryobj.c
@@ -50,7 +50,12 @@ _mesa_new_query_object(struct gl_context *ctx, GLuint id)
q->Id = id;
q->Result = 0;
q->Active = GL_FALSE;
- q->Ready = GL_TRUE; /* correct, see spec */
+
+ /* This is to satisfy the language of the specification: "In the initial
+ * state of a query object, the result is available" (OpenGL 3.1 ยง
+ * 2.13).
+ */
+ q->Ready = GL_TRUE;
}
return q;
}