Mesa (gallium-0.2): cell: remove old texture-related fields

Brian Paul brianp at kemper.freedesktop.org
Mon Oct 13 22:45:42 UTC 2008


Module: Mesa
Branch: gallium-0.2
Commit: b0c136cfb1fcbcea35e17dc699a96acbb24738f5
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b0c136cfb1fcbcea35e17dc699a96acbb24738f5

Author: Brian Paul <brian.paul at tungstengraphics.com>
Date:   Mon Oct 13 15:17:01 2008 -0600

cell: remove old texture-related fields

---

 src/gallium/drivers/cell/spu/spu_command.c |    3 ---
 src/gallium/drivers/cell/spu/spu_main.h    |    2 --
 2 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/src/gallium/drivers/cell/spu/spu_command.c b/src/gallium/drivers/cell/spu/spu_command.c
index d4cc9a2..64890f6 100644
--- a/src/gallium/drivers/cell/spu/spu_command.c
+++ b/src/gallium/drivers/cell/spu/spu_command.c
@@ -330,9 +330,6 @@ cmd_state_texture(const struct cell_command_texture *texture)
 
    spu.texture[unit].tiles_per_row = width / TILE_SIZE;
 
-   spu.texture[unit].tex_size = (vector float) { width, height, 0.0, 0.0};
-   spu.texture[unit].tex_size_mask = (vector unsigned int)
-         { width - 1, height - 1, 0, 0 };
    spu.texture[unit].tex_size_x_mask = spu_splats(width - 1);
    spu.texture[unit].tex_size_y_mask = spu_splats(height - 1);
 }
diff --git a/src/gallium/drivers/cell/spu/spu_main.h b/src/gallium/drivers/cell/spu/spu_main.h
index 2a8cb00..e3960db 100644
--- a/src/gallium/drivers/cell/spu/spu_main.h
+++ b/src/gallium/drivers/cell/spu/spu_main.h
@@ -112,10 +112,8 @@ struct spu_texture
    void *start;
    ushort width, height;
    ushort tiles_per_row;
-   vector float tex_size; /**< == {width, height, 0, 0} */
    vector float width4;   /**< == {width, width, width, width} */
    vector float height4;  /**< == {height, height, height, height} */
-   vector unsigned int tex_size_mask; /**< == {width-1, height-1, 0, 0 } */
    vector unsigned int tex_size_x_mask; /**< splat(width-1) */
    vector unsigned int tex_size_y_mask; /**< splat(height-1) */
 } ALIGN16_ATTRIB;




More information about the mesa-commit mailing list