diff options
author | Ian Romanick <[email protected]> | 2008-02-27 13:40:23 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2008-02-27 13:41:09 -0800 |
commit | 1c50ea2cd9ab8752793c99b4a7a2a6656bdde1ac (patch) | |
tree | 29d33ed3e6ef77711530cd7be4b8e19faf18a5ea /src/gallium/drivers/cell/spu/spu_main.h | |
parent | cc5ffd762227345d0a5bf9e9356dd83a8b2a8b33 (diff) |
cell: Use unified data cache for textures too
Diffstat (limited to 'src/gallium/drivers/cell/spu/spu_main.h')
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_main.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_main.h b/src/gallium/drivers/cell/spu/spu_main.h index d14f1abbe74..a13edd17029 100644 --- a/src/gallium/drivers/cell/spu/spu_main.h +++ b/src/gallium/drivers/cell/spu/spu_main.h @@ -107,6 +107,8 @@ struct spu_global vector float tex_size; vector unsigned int tex_size_mask; /**< == int(size - 1) */ + vector unsigned int tex_size_x_mask; /**< == int(size - 1) */ + vector unsigned int tex_size_y_mask; /**< == int(size - 1) */ vector float (*sample_texture)(vector float texcoord); @@ -130,7 +132,6 @@ extern boolean Debug; #define TAG_INDEX_BUFFER 16 #define TAG_BATCH_BUFFER 17 #define TAG_MISC 18 -#define TAG_TEXTURE_TILE 19 #define TAG_DCACHE0 20 #define TAG_DCACHE1 21 #define TAG_DCACHE2 22 |