[Mesa-dev] [PATCH] softpipe: fix an obvious copy-paste error in get_query_result
Brian Paul
brianp at vmware.com
Tue Aug 16 10:55:47 PDT 2011
On 08/16/2011 11:42 AM, Marek Olšák wrote:
> ---
> 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 4ae69c1..88f4257 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;
Reviewed-by: Brian Paul <brianp at vmware.com>
More information about the mesa-dev
mailing list