comments
authorBrian <brian@i915.localnet.net>
Mon, 6 Aug 2007 21:48:08 +0000 (15:48 -0600)
committerBrian <brian@i915.localnet.net>
Mon, 6 Aug 2007 21:48:08 +0000 (15:48 -0600)
src/mesa/pipe/p_state.h

index 13b8813..be4b0eb 100644 (file)
@@ -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;