diff options
author | Jerome Glisse <[email protected]> | 2010-09-26 16:27:36 -0400 |
---|---|---|
committer | Jerome Glisse <[email protected]> | 2010-09-26 16:29:33 -0400 |
commit | d2f24c4d75579acf27cf6d1b0620afa302a1b78f (patch) | |
tree | 16638f921e15045d8ec5305f7f4fd0188cae9c5c /src/gallium/drivers/r600/r600_pipe.h | |
parent | 4ca1a92b7fe44158a13910d01c76f41f6946165c (diff) |
r600g: use depth decompression in new path
Signed-off-by: Jerome Glisse <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 19cfbccf4f1..4ca83a42d77 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -84,9 +84,13 @@ struct r600_vertex_element struct r600_pipe_context { struct pipe_context context; + struct blitter_context *blitter; + struct pipe_framebuffer_state *pframebuffer; + unsigned family; + void *custom_dsa_flush; + struct list_head query_list; /* fake member for depth remove once merged */ struct r600_screen *screen; struct radeon *radeon; - struct blitter_context *blitter; struct r600_pipe_state *states[R600_PIPE_NSTATES]; struct r600_context ctx; struct r600_vertex_element *vertex_elements; @@ -116,7 +120,6 @@ struct r600_pipe_context { bool flatshade; struct u_upload_mgr *upload_vb; struct u_upload_mgr *upload_ib; - enum radeon_family family; unsigned any_user_vbs; }; |