diff options
author | Marek Olšák <[email protected]> | 2014-01-08 01:07:20 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-01-13 15:48:08 +0100 |
commit | 9677cfab323ef0a24b40711895333685c63258ac (patch) | |
tree | 70857cb6bb3959e28ec29bc89fb35d0c82556d27 /src/gallium/auxiliary/util/u_framebuffer.c | |
parent | 9baa45f78b8ca7d66280e36009b6a685055d7cd6 (diff) |
gallium/util: easy fixes for NULL colorbuffers
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_framebuffer.c')
-rw-r--r-- | src/gallium/auxiliary/util/u_framebuffer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_framebuffer.c b/src/gallium/auxiliary/util/u_framebuffer.c index 377b802b62a..2e0ef749e82 100644 --- a/src/gallium/auxiliary/util/u_framebuffer.c +++ b/src/gallium/auxiliary/util/u_framebuffer.c @@ -127,6 +127,9 @@ util_framebuffer_min_size(const struct pipe_framebuffer_state *fb, unsigned i; for (i = 0; i < fb->nr_cbufs; i++) { + if (!fb->cbufs[i]) + continue; + w = MIN2(w, fb->cbufs[i]->width); h = MIN2(h, fb->cbufs[i]->height); } |