osmesa: Pacify MSVC in the test code

Not smart enough to think this is const, eh.

Fixes: mesa/mesa#4119
Fixes: c5c1aa7c75 ("gallium/osmesa: Fix flushing and Y-flipping of the depth buffer.")
Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8936>
This commit is contained in:
Adam Jackson 2021-01-27 14:23:17 -05:00 committed by Marge Bot
parent fbacd8a99c
commit 88ca480c8b
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ TEST(OSMesaRenderTest, depth)
OSMesaCreateContextExt(OSMESA_RGB_565, 24, 8, 0, NULL), &OSMesaDestroyContext};
ASSERT_TRUE(ctx);
int w = 3, h = 2;
const int w = 3, h = 2;
uint8_t pixels[4096 * h * 2] = {0}; /* different cpp from our depth! */
auto ret = OSMesaMakeCurrent(ctx.get(), &pixels, GL_UNSIGNED_SHORT_5_6_5, w, h);
ASSERT_EQ(ret, GL_TRUE);