Module: Mesa Branch: master Commit: aeade86db5761313f8b8c3c8555d3813d92e92ff URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=aeade86db5761313f8b8c3c8555d3813d92e92ff
Author: Brian Paul <[email protected]> Date: Thu Jul 20 09:57:32 2017 -0600 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]> --- src/mesa/main/teximage.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 6b31b6a0cd..8464b3491a 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: _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
