g3dvl: extend the functionality of the compositor
[mesa.git] / src / gallium / auxiliary / vl / vl_csc.c
index 00eefa293a4467b89566bf1bd44708fb185ab0c3..21da95f3ceb543dc0633df8556bd04a00d6c3ea1 100644 (file)
@@ -25,8 +25,8 @@
  *
  **************************************************************************/
 
-#include <util/u_math.h>
-#include <util/u_debug.h>
+#include "util/u_math.h"
+#include "util/u_debug.h"
 
 #include "vl_csc.h"
 
@@ -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,