diff options
author | Brian Paul <[email protected]> | 2005-08-31 21:38:53 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-08-31 21:38:53 +0000 |
commit | 527835977a3f22d7a01f8d835d73ced5b13d0991 (patch) | |
tree | eb3270737249c90b1756d0550f795c77b11d1f73 /src/mesa/swrast/s_buffers.c | |
parent | 36603539ccdb1c507724d8a1c314e6c9cc9863d9 (diff) |
Just additional comments.
Diffstat (limited to 'src/mesa/swrast/s_buffers.c')
-rw-r--r-- | src/mesa/swrast/s_buffers.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_buffers.c b/src/mesa/swrast/s_buffers.c index 7af9d9d5134..b21642aa571 100644 --- a/src/mesa/swrast/s_buffers.c +++ b/src/mesa/swrast/s_buffers.c @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5 * * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * @@ -349,6 +349,9 @@ _swrast_DrawBuffers( GLcontext *ctx, GLsizei n, const GLenum *buffers ) * Setup things so that we read/write spans from the user-designated * read buffer (set via glReadPixels). We usually just have to call * this for glReadPixels, glCopyPixels, etc. + * + * XXX this will go away when the last OLD_RENDERBUFFER code is removed. + * The swrast->CurrentBufferBit var can be totally removed then too. */ void _swrast_use_read_buffer( GLcontext *ctx ) @@ -366,6 +369,9 @@ _swrast_use_read_buffer( GLcontext *ctx ) /* * Setup things so that we read/write spans from the default draw buffer. * This is the usual mode that Mesa's software rasterizer operates in. + * + * XXX this will go away when the last OLD_RENDERBUFFER code is removed. + * The swrast->CurrentBufferBit var can be totally removed then too. */ void _swrast_use_draw_buffer( GLcontext *ctx ) |