diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2007-12-11 19:02:26 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2007-12-11 19:10:56 +0100 |
commit | 88723b2fc84628c1bc1e0008b88602b85e8668be (patch) | |
tree | 3dbe0b55c4257ddc33013820f933819588134c31 /src/mesa/pipe | |
parent | 13699463a33c1adf44005125c488e886e074a05b (diff) |
Remove internal_format field from struct pipe_texture.
It's state tracker specific / not really necessary anyway.
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r-- | src/mesa/pipe/p_state.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h index 109913b040..4e42838f1d 100644 --- a/src/mesa/pipe/p_state.h +++ b/src/mesa/pipe/p_state.h @@ -264,10 +264,9 @@ struct pipe_texture { /* Effectively the key: */ - unsigned target; /* XXX convert to PIPE_TEXTURE_x */ - unsigned internal_format; /* XXX convert to PIPE_FORMAT_x */ - + unsigned target; /**< PIPE_TEXTURE_x */ enum pipe_format format; /**< PIPE_FORMAT_x */ + unsigned first_level; unsigned last_level; |