aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-01-16 13:05:07 -0700
committerBrian Paul <[email protected]>2012-01-24 14:12:33 -0700
commit1888dd52a32e114e7b3796db5a6b44921a2e04d4 (patch)
tree367654274865642ae9cfd2133dfa497d32b1eb22
parentbecbb643135ddccac5054bf138ca0cc7cc3fff15 (diff)
mesa/swrast/drivers: remove obsolete gl_renderbuffer fields
This removes the last of the legacy fields from gl_renderbuffer.
-rw-r--r--src/mesa/main/mtypes.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 0fcbfdf773b..d001873ded4 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -2558,13 +2558,6 @@ struct gl_renderbuffer
GL_STENCIL_INDEX. */
gl_format Format; /**< The actual renderbuffer memory format */
- /* XXX the following fields are obsolete and wil go away */
- GLvoid *Buffer; /**< Malloc'd memory for software buffers */
-
- /** The following fields are only valid while the buffer is mapped */
- GLubyte *Map;
- GLint RowStrideBytes;
-
/* Delete this renderbuffer */
void (*Delete)(struct gl_renderbuffer *rb);