From: Brian Paul Date: Sat, 10 Dec 2011 18:44:44 +0000 (-0700) Subject: mesa: update comments for _DepthBuffer, _StencilBuffer fields X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cbd65fe14917def9c0f401c973394d6456cbe83b;p=mesa.git mesa: update comments for _DepthBuffer, _StencilBuffer fields Reviewed-by: Eric Anholt --- diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index fc494f748dd..1e06cd55c6b 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2650,8 +2650,9 @@ struct gl_framebuffer struct gl_renderbuffer *_ColorDrawBuffers[MAX_DRAW_BUFFERS]; struct gl_renderbuffer *_ColorReadBuffer; - /** The Actual depth/stencil buffers to use. May be wrappers around the - * depth/stencil buffers attached above. */ + /** Wrappers to make combined depth/stencil buffers look like separate + * buffers. Only used by swrast. Will be removed in the future. + */ struct gl_renderbuffer *_DepthBuffer; struct gl_renderbuffer *_StencilBuffer;