Mesa (master): st/mesa: set renderbuffer _BaseFormat in a few places

Brian Paul brianp at kemper.freedesktop.org
Fri Feb 18 17:28:56 UTC 2011


Module: Mesa
Branch: master
Commit: 633c9fcf781d4cc23d69d4d839cf2143ac9df1fd
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=633c9fcf781d4cc23d69d4d839cf2143ac9df1fd

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Feb 18 10:28:27 2011 -0700

st/mesa: set renderbuffer _BaseFormat in a few places

NOTE: This is a candidate for the 7.9 and 7.10 branches

---

 src/mesa/state_tracker/st_cb_fbo.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/mesa/state_tracker/st_cb_fbo.c b/src/mesa/state_tracker/st_cb_fbo.c
index 0b0ad16..5eda234 100644
--- a/src/mesa/state_tracker/st_cb_fbo.c
+++ b/src/mesa/state_tracker/st_cb_fbo.c
@@ -84,6 +84,7 @@ st_renderbuffer_alloc_storage(struct gl_context * ctx,
    strb->Base.Width  = width;
    strb->Base.Height = height;
    strb->Base.Format = st_pipe_format_to_mesa_format(format);
+   strb->Base._BaseFormat = _mesa_base_fbo_format(ctx, internalFormat);
    strb->Base.DataType = st_format_datatype(format);
 
    strb->defined = GL_FALSE;  /* undefined contents now */
@@ -234,6 +235,7 @@ st_new_renderbuffer_fb(enum pipe_format format, int samples, boolean sw)
    strb->Base.ClassID = 0x4242; /* just a unique value */
    strb->Base.NumSamples = samples;
    strb->Base.Format = st_pipe_format_to_mesa_format(format);
+   strb->Base._BaseFormat = _mesa_get_format_base_format(strb->Base.Format);
    strb->Base.DataType = st_format_datatype(format);
    strb->format = format;
    strb->software = sw;




More information about the mesa-commit mailing list