mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-07 03:20:28 +01:00
g3dvl: Remove designated initializers.
MSVC does not support designated initializers.
This commit is contained in:
parent
49967950a5
commit
f292d07b47
1 changed files with 4 additions and 4 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue