diff options
author | pepp <[email protected]> | 2011-04-12 17:42:02 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-05-21 09:49:14 -0600 |
commit | fd6f2d6e5783d8810d0ab88e1c470958fd5eb2eb (patch) | |
tree | 70c1e125eed8988fff2139b710339717a5a1003f | |
parent | 3c5e74186244f2d77cc711d2b487283459ed06ad (diff) |
st/mesa: assign renderbuffer's format field when allocating storage
See http://bugs.freedesktop.org/show_bug.cgi?id=36173
NOTE: This is a candidate for the 7.10 branch.
Signed-off-by: Brian Paul <[email protected]>
-rw-r--r-- | src/mesa/state_tracker/st_cb_fbo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_fbo.c b/src/mesa/state_tracker/st_cb_fbo.c index e632d816542..755b6bcf967 100644 --- a/src/mesa/state_tracker/st_cb_fbo.c +++ b/src/mesa/state_tracker/st_cb_fbo.c @@ -90,6 +90,7 @@ st_renderbuffer_alloc_storage(struct gl_context * ctx, 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->format = format; strb->defined = GL_FALSE; /* undefined contents now */ |