diff options
author | Zack Rusin <[email protected]> | 2009-06-23 19:12:46 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2009-07-06 17:21:37 -0400 |
commit | 124a6b1958c630ea049025e2b72547096fdc8f2c (patch) | |
tree | 2db08896a7c7270883aaf6252a920c3dd3c7d728 /src/gallium/include | |
parent | 5920b6b67988fc3977f43b39d8546cc20247bf31 (diff) |
gallium: rearrange some members to avoid memory holes/padding
plus it saves us a cacheline in the cso
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 932c024f156..626bedb35a8 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -75,11 +75,11 @@ struct pipe_surface; */ struct pipe_buffer { - struct pipe_reference reference; - struct pipe_screen *screen; - unsigned alignment; - unsigned usage; - unsigned size; + struct pipe_reference reference; + unsigned size; + struct pipe_screen *screen; + unsigned alignment; + unsigned usage; }; @@ -286,10 +286,10 @@ struct pipe_surface unsigned offset; /**< offset from start of buffer, in bytes */ unsigned usage; /**< PIPE_BUFFER_USAGE_* */ + unsigned zslice; struct pipe_texture *texture; /**< texture into which this is a view */ unsigned face; unsigned level; - unsigned zslice; }; |