Fix a variable masking warning

The usual issue with math.h defined symbols.
This commit is contained in:
Emmanuele Bassi 2009-01-29 13:31:11 +00:00
parent 945d2616e3
commit 86aba661bd

View File

@ -45,15 +45,14 @@ void _cogl_path_fill_nodes ();
void _cogl_path_stroke_nodes (); void _cogl_path_stroke_nodes ();
void void
cogl_rectangle (float x1, cogl_rectangle (float x_1,
float y1, float y_1,
float x2, float x_2,
float y2) float y_2)
{ {
cogl_rectangle_with_multitexture_coords (x1, y1, cogl_rectangle_with_multitexture_coords (x_1, y_1,
x2, y2, x_2, y_2,
NULL, NULL, 0);
0);
} }
void void