summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian <brian@i915.localnet.net>2007-08-06 15:48:08 -0600
committerBrian <brian@i915.localnet.net>2007-08-06 15:48:08 -0600
commit3e147fe8e73519074de5ba6f5bc8eaea7c788968 (patch)
tree59e7750af5773e1ae15d997871cd84a16008725a /src
parentfe52cce0e8e72fcf4c11c226246ea7c24015fef6 (diff)
comments
Diffstat (limited to 'src')
-rw-r--r--src/mesa/pipe/p_state.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h
index 13b8813f4a..be4b0ebdc7 100644
--- a/src/mesa/pipe/p_state.h
+++ b/src/mesa/pipe/p_state.h
@@ -309,15 +309,15 @@ struct pipe_mipmap_level
* compute the offsets of depth/cube images within a mipmap level,
* so have to store them as a lookup table:
*/
- GLuint *image_offset;
+ GLuint *image_offset; /**< array [depth] of offsets */
};
struct pipe_mipmap_tree
{
/* Effectively the key:
*/
- GLenum target;
- GLenum internal_format;
+ GLenum target; /* XXX convert to PIPE_TEXTURE_x */
+ GLenum internal_format; /* XXX convert to PIPE_FORMAT_x */
GLuint first_level;
GLuint last_level;