diff options
author | Marek Olšák <[email protected]> | 2011-09-11 14:53:07 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-09-12 22:03:02 +0200 |
commit | 3603d157889544230f1787bbdc4915ccd7461c59 (patch) | |
tree | 2d153a57ef3c74c4f4768c34a79775e01305a7ce /src/gallium/drivers/r600/r600_pipe.h | |
parent | a94e33a8efcbbc093092cfc5266ed9d05b89471f (diff) |
r600g: compute tiling info in the pipe, not in the winsys
The winsys doesn't need it.
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index c4952214364..7c7f0424a26 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -76,7 +76,8 @@ struct r600_screen { struct pipe_screen screen; struct radeon_winsys *ws; struct radeon *radeon; - struct r600_tiling_info *tiling_info; + struct radeon_info info; + struct r600_tiling_info tiling_info; struct util_slab_mempool pool_buffers; unsigned num_contexts; |