diff options
author | Marek Olšák <[email protected]> | 2012-02-23 22:38:41 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-03-05 14:22:14 +0100 |
commit | 83667acfd9feed932f6864092382e752466975ed (patch) | |
tree | 45255df7637d612186deb87cf22145aca8f3da46 /src/gallium/drivers/r600/r600_pipe.h | |
parent | 62f44f670bb0162e89fd4786af877f8da9ff607c (diff) |
r600g: move all query code into r600_query.c
And rename or inline functions where appropriate.
There is no reason to keep this stuff in r600_hw_context.c.
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index bb6f2416aa1..bc0ffc03852 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -395,6 +395,8 @@ void r600_flush(struct pipe_context *ctx, struct pipe_fence_handle **fence, /* r600_query.c */ void r600_init_query_functions(struct r600_context *rctx); +void r600_suspend_queries(struct r600_context *ctx); +void r600_resume_queries(struct r600_context *ctx); /* r600_resource.c */ void r600_init_context_resource_functions(struct r600_context *r600); |