diff options
author | Laura Ekstrand <[email protected]> | 2014-12-01 17:30:44 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:29 -0800 |
commit | 499004e56a51bdabff489913680aa972e7fab369 (patch) | |
tree | 877470c4fff46903ae6d3320cdffccb674009ab4 /src | |
parent | a7d69516b86328eedd68ae43d8530b0799735a4c (diff) |
main: Fix texObj->Immutable flag update in _mesa_texture_image_multisample.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/teximage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 84374c5a116..a283bbe5e85 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -5200,7 +5200,7 @@ _mesa_texture_image_multisample(struct gl_context *ctx, GLuint dims, } } - texObj->Immutable = immutable; + texObj->Immutable |= immutable; if (immutable) { _mesa_set_texture_view_state(ctx, texObj, target, 1); |