From: Nicolai Hähnle Date: Tue, 10 Oct 2017 11:58:46 +0000 (+0200) Subject: st/mesa: don't clobber glGetInternalformat* buffer for GL_NUM_SAMPLE_COUNTS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a8f13a33b2d08b34c78de67ce90e0198bfdf0b3;p=mesa.git st/mesa: don't clobber glGetInternalformat* buffer for GL_NUM_SAMPLE_COUNTS Applications might pass in a buffer that is sized too large and rely on the extra space of the buffer not being overwritten. Fixes dEQP-GLES31.functional.state_query.internal_format.partial_query.num_sample_counts Cc: mesa-stable@lists.freedesktop.org Reviewed-by: Marek Olšák --- diff --git a/src/mesa/state_tracker/st_format.c b/src/mesa/state_tracker/st_format.c index 5e38fe56890..65be09cbde2 100644 --- a/src/mesa/state_tracker/st_format.c +++ b/src/mesa/state_tracker/st_format.c @@ -2378,9 +2378,10 @@ st_QueryInternalFormat(struct gl_context *ctx, GLenum target, break; case GL_NUM_SAMPLE_COUNTS: { + int samples[16]; size_t num_samples; num_samples = st_QuerySamplesForFormat(ctx, target, internalFormat, - params); + samples); params[0] = (GLint) num_samples; break; }