update begin/end_query() functions

This commit is contained in:
Brian
2007-09-17 10:05:21 -06:00
parent d59c95bfae
commit 9ea91974e1
+4 -4
View File
@@ -1015,9 +1015,9 @@ xmesa_new_query_object(GLcontext *ctx, GLuint id)
static void
xmesa_begin_query(GLcontext *ctx, GLenum target, struct gl_query_object *q)
xmesa_begin_query(GLcontext *ctx, struct gl_query_object *q)
{
if (target == GL_TIME_ELAPSED_EXT) {
if (q->Target == GL_TIME_ELAPSED_EXT) {
struct xmesa_query_object *xq = (struct xmesa_query_object *) q;
(void) gettimeofday(&xq->StartTime, NULL);
}
@@ -1042,9 +1042,9 @@ time_diff(const struct timeval *t0, const struct timeval *t1)
static void
xmesa_end_query(GLcontext *ctx, GLenum target, struct gl_query_object *q)
xmesa_end_query(GLcontext *ctx, struct gl_query_object *q)
{
if (target == GL_TIME_ELAPSED_EXT) {
if (q->Target == GL_TIME_ELAPSED_EXT) {
struct xmesa_query_object *xq = (struct xmesa_query_object *) q;
struct timeval endTime;
(void) gettimeofday(&endTime, NULL);