mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 09:18:04 +02:00
st/mesa: fail to alloc a renderbuffer if st_choose_renderbuffer_format fails
This fixes:
state_tracker/st_format.c:401:st_pipe_format_to_mesa_format:
Assertion `0' failed.
(cherry picked from commit fb5d9e1199)
Conflicts:
src/mesa/state_tracker/st_cb_fbo.c
This commit is contained in:
parent
48d44713f9
commit
6ea13078fb
1 changed files with 4 additions and 0 deletions
|
|
@ -74,6 +74,10 @@ st_renderbuffer_alloc_storage(GLcontext * ctx, struct gl_renderbuffer *rb,
|
|||
else
|
||||
format = st_choose_renderbuffer_format(screen, internalFormat, rb->NumSamples);
|
||||
|
||||
if (format == PIPE_FORMAT_NONE) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* init renderbuffer fields */
|
||||
strb->Base.Width = width;
|
||||
strb->Base.Height = height;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue