Module: Mesa Branch: 8.0 Commit: 06e174191d33f6af6fcaf6ec0174d41ea9f3618e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=06e174191d33f6af6fcaf6ec0174d41ea9f3618e
Author: Brian Paul <[email protected]> Date: Thu Jul 26 15:57:18 2012 -0600 radeon: fix Base/base typo Fixes http://bugs.freedesktop.org/show_bug.cgi?id=52563 (cherry picked from commit 38184dcd54e77c8f9adc89d337a97afd630b2c07) --- src/mesa/drivers/dri/radeon/radeon_span.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/dri/radeon/radeon_span.c b/src/mesa/drivers/dri/radeon/radeon_span.c index b5343e5..92f3d33 100644 --- a/src/mesa/drivers/dri/radeon/radeon_span.c +++ b/src/mesa/drivers/dri/radeon/radeon_span.c @@ -67,7 +67,7 @@ radeon_renderbuffer_map(struct gl_context *ctx, struct gl_renderbuffer *rb) rrb->base.Map = map; rrb->base.RowStride = stride; /* No floating point color buffers, use GLubytes */ - rrb->Base.ColorType = GL_UNSIGNED_BYTE; + rrb->base.ColorType = GL_UNSIGNED_BYTE; } static void _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
