diff options
author | Marek Olšák <[email protected]> | 2011-08-16 19:06:55 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-08-16 19:56:29 +0200 |
commit | 9e8f556b199a662c5525b9d03f52a067244fa602 (patch) | |
tree | 6d5b60626880ef998d28a651b06ab60d3fe91f57 /src | |
parent | 5e7713caa9d601e59b600218a3b867db0f331deb (diff) |
softpipe: fix an obvious copy-paste error in get_query_result
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_query.c b/src/gallium/drivers/softpipe/sp_query.c index 4ae69c1c2bd..88f42572f19 100644 --- a/src/gallium/drivers/softpipe/sp_query.c +++ b/src/gallium/drivers/softpipe/sp_query.c @@ -157,7 +157,7 @@ softpipe_get_query_result(struct pipe_context *pipe, /*os_get_time is in microseconds*/ td.frequency = 1000000; td.disjoint = FALSE; - memcpy(vresult, &sq->so, + memcpy(vresult, &td, sizeof(struct pipe_query_data_timestamp_disjoint)); } break; |