diff options
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/config.h | 2 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 456f8ce76a9..476ed63aadc 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -324,7 +324,7 @@ /* XXX these are temporary */ #define NEW_RENDERBUFFER 1 -#define OLD_RENDERBUFFER 1 +#define OLD_RENDERBUFFER 0 #endif /* CONFIG_H */ diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index f6732699b77..62a8c76aa14 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2183,7 +2183,7 @@ struct gl_framebuffer struct gl_renderbuffer *_ColorDrawBuffers[MAX_DRAW_BUFFERS][4]; struct gl_renderbuffer *_ColorReadBuffer; -#if OLD_RENDERBUFFER +#if OLD_RENDERBUFFER || NEW_RENDERBUFFER /* XXX THIS IS TEMPORARY */ GLuint _ColorDrawBit[MAX_DRAW_BUFFERS][4]; #endif |