From: Brian Paul Date: Tue, 14 Mar 2006 22:39:43 +0000 (+0000) Subject: init Red/Green/EtcBits = 0 in soft_renderbuffer_storage() X-Git-Tag: 062012170305~21330 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=19b83221696f124bfe1fa7e72842c62c3f72ee43;p=profile%2Fivi%2Fmesa.git init Red/Green/EtcBits = 0 in soft_renderbuffer_storage() --- diff --git a/src/mesa/main/renderbuffer.c b/src/mesa/main/renderbuffer.c index 72a1220..1db5dce 100644 --- a/src/mesa/main/renderbuffer.c +++ b/src/mesa/main/renderbuffer.c @@ -2,7 +2,7 @@ * Mesa 3-D graphics library * Version: 6.5 * - * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -925,6 +925,15 @@ soft_renderbuffer_storage(GLcontext *ctx, struct gl_renderbuffer *rb, { GLuint pixelSize; + /* first clear these fields */ + rb->RedBits = + rb->GreenBits = + rb->BlueBits = + rb->AlphaBits = + rb->IndexBits = + rb->DepthBits = + rb->StencilBits = 0; + switch (internalFormat) { case GL_RGB: case GL_R3_G3_B2: