diff options
author | Marek Olšák <[email protected]> | 2015-05-26 19:32:36 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-06-03 12:06:08 +0100 |
commit | 70816a66d5431db37cb6207efe6439b895746d16 (patch) | |
tree | 7e8f71cfb0a98826dd8516cbb8b2fd63c5b6119e /src | |
parent | f8bb4a814d9aac2825737e48fefc16785cb9060c (diff) |
st/dri: fix postprocessing crash when there's no depth buffer
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89131
Cc: 10.6 10.5 <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
(cherry picked from commit 25e9ae2b79f32631e7255807a242e5fc4e39984c)
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/state_trackers/dri/dri_context.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gallium/state_trackers/dri/dri_context.c b/src/gallium/state_trackers/dri/dri_context.c index 8ac81b7364b..400114e3133 100644 --- a/src/gallium/state_trackers/dri/dri_context.c +++ b/src/gallium/state_trackers/dri/dri_context.c @@ -233,11 +233,10 @@ dri_make_current(__DRIcontext * cPriv, ctx->stapi->make_current(ctx->stapi, ctx->st, &draw->base, &read->base); - // This is ok to call here. If they are already init, it's a no-op. - if (draw->textures[ST_ATTACHMENT_BACK_LEFT] && draw->textures[ST_ATTACHMENT_DEPTH_STENCIL] - && ctx->pp) - pp_init_fbos(ctx->pp, draw->textures[ST_ATTACHMENT_BACK_LEFT]->width0, - draw->textures[ST_ATTACHMENT_BACK_LEFT]->height0); + /* This is ok to call here. If they are already init, it's a no-op. */ + if (ctx->pp && draw->textures[ST_ATTACHMENT_BACK_LEFT]) + pp_init_fbos(ctx->pp, draw->textures[ST_ATTACHMENT_BACK_LEFT]->width0, + draw->textures[ST_ATTACHMENT_BACK_LEFT]->height0); return GL_TRUE; } |