diff options
author | Brian Paul <[email protected]> | 2017-07-20 09:57:32 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-07-22 13:18:56 -0600 |
commit | aeade86db5761313f8b8c3c8555d3813d92e92ff (patch) | |
tree | b6e731e11eda74137ec1ef4d4a80f839ca212fcd /src | |
parent | 1820ef64c9914d8328d0306003f00063dfb2bca1 (diff) |
mesa: remove pointless assignments in init_teximage_fields_ms()
The NumSamples and FixedSampleLocation fields are set again later at
the end of the function so these earlier assignments aren't needed.
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/teximage.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 6b31b6a0cdd..8464b3491ae 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -813,9 +813,6 @@ init_teximage_fields_ms(struct gl_context *ctx, img->Width2 = width - 2 * border; /* == 1 << img->WidthLog2; */ img->WidthLog2 = _mesa_logbase2(img->Width2); - img->NumSamples = 0; - img->FixedSampleLocations = GL_TRUE; - switch(target) { case GL_TEXTURE_1D: case GL_TEXTURE_BUFFER: |