1
0
Fork 0

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_rectangle (float x1,
float y1,
float x2,
float y2)
cogl_rectangle (float x_1,
float y_1,
float x_2,
float y_2)
{
cogl_rectangle_with_multitexture_coords (x1, y1,
x2, y2,
NULL,
0);
cogl_rectangle_with_multitexture_coords (x_1, y_1,
x_2, y_2,
NULL, 0);
}
void