diff options
author | Ilia Mirkin <[email protected]> | 2016-07-08 12:35:11 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-07-11 21:18:05 -0400 |
commit | 8b7607d28a4d0db43a9bc5618d7f6ff44daa0dc2 (patch) | |
tree | a52e3067a95117276f672fd860506706c0b0f4a8 /src/mesa/drivers | |
parent | 00d4315d37ec736fccfee50a402fa2a929054bde (diff) |
meta/texsubimage: tex_image is always non-null, avoid confusing code
Probably a copy-paste from mesa_meta_pbo_GetTexSubImage where tex_image
may apparently be null.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/common/meta_tex_subimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/meta_tex_subimage.c b/src/mesa/drivers/common/meta_tex_subimage.c index 988af91ce4e..703efcd669b 100644 --- a/src/mesa/drivers/common/meta_tex_subimage.c +++ b/src/mesa/drivers/common/meta_tex_subimage.c @@ -235,7 +235,7 @@ _mesa_meta_pbo_TexSubImage(struct gl_context *ctx, GLuint dims, if (drawFb == NULL) goto fail; - _mesa_bind_framebuffers(ctx, drawFb, tex_image ? readFb : ctx->ReadBuffer); + _mesa_bind_framebuffers(ctx, drawFb, readFb); if (tex_image->TexObject->Target == GL_TEXTURE_1D_ARRAY) { assert(depth == 1); |