diff options
author | Brian Paul <[email protected]> | 2008-10-14 17:22:40 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-10-14 17:22:40 -0600 |
commit | 41ccdde767e7aba6e8e6a9a035eacd6338c03a95 (patch) | |
tree | f8d4b707305c8c7953a042b99cee975e1df4dfe9 /src/gallium/drivers/cell/spu/spu_main.h | |
parent | 6c017c2c3c3649650cd0dc89a3b4946eab0e5a8c (diff) |
cell: initial bits for 3D texture support
Diffstat (limited to 'src/gallium/drivers/cell/spu/spu_main.h')
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_main.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_main.h b/src/gallium/drivers/cell/spu/spu_main.h index 8781041bff8..eff43b870ca 100644 --- a/src/gallium/drivers/cell/spu/spu_main.h +++ b/src/gallium/drivers/cell/spu/spu_main.h @@ -111,15 +111,15 @@ struct spu_framebuffer struct spu_texture_level { void *start; - ushort width, height; + ushort width, height, depth; ushort tiles_per_row; uint bytes_per_image; /** texcoord scale factors */ - vector float scale_s, scale_t; + vector float scale_s, scale_t, scale_r; /** texcoord masks (if REPEAT then size-1, else ~0) */ - vector signed int mask_s, mask_t; + vector signed int mask_s, mask_t, mask_r; /** texcoord clamp limits */ - vector signed int max_s, max_t; + vector signed int max_s, max_t, max_r; } ALIGN16_ATTRIB; |