diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-11-19 14:39:34 -0800 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-11-19 14:39:34 -0800 |
commit | 683e35f726a182ed9fc6b6d5cb07146eebe14dea (patch) | |
tree | 780634a0c67cd6fa8a6adb8daf01be86064a2d37 /src/gallium/include/pipe | |
parent | 6b480dc21dd489d48685b2268e495218aea74293 (diff) |
gallium: don't use arrays for texture width,height,depth
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 287b424e4a..9766e86620 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -343,9 +343,9 @@ struct pipe_texture enum pipe_texture_target target; /**< PIPE_TEXTURE_x */ enum pipe_format format; /**< PIPE_FORMAT_x */ - unsigned width[PIPE_MAX_TEXTURE_LEVELS]; - unsigned height[PIPE_MAX_TEXTURE_LEVELS]; - unsigned depth[PIPE_MAX_TEXTURE_LEVELS]; + unsigned width0; + unsigned height0; + unsigned depth0; struct pipe_format_block block; unsigned nblocksx[PIPE_MAX_TEXTURE_LEVELS]; /**< allocated width in blocks */ |