From: Vinson Lee Date: Thu, 14 Jul 2011 00:00:26 +0000 (-0700) Subject: g3dvl: Remove designated initializers. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f292d07b476d37904bedbb7d5a25cdb232d48b26;p=mesa.git g3dvl: Remove designated initializers. MSVC does not support designated initializers. --- diff --git a/src/gallium/auxiliary/vl/vl_csc.c b/src/gallium/auxiliary/vl/vl_csc.c index 00eefa293a4..4ca84e56a8c 100644 --- a/src/gallium/auxiliary/vl/vl_csc.c +++ b/src/gallium/auxiliary/vl/vl_csc.c @@ -156,10 +156,10 @@ static const float identity[16] = }; const struct vl_procamp vl_default_procamp = { - .contrast = 1.0f, - .saturation = 1.0f, - .brightness = 0.0f, - .hue = 0.0f + 0.0f, /* brightness */ + 1.0f, /* contrast */ + 1.0f, /* saturation */ + 0.0f /* hue */ }; void vl_csc_get_matrix(enum VL_CSC_COLOR_STANDARD cs,