vega: remove unused variables

Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Fabio Pedretti
2012-12-07 23:00:05 +01:00
committed by Brian Paul
parent eefd373876
commit 8b6e782eb9
+1 -3
View File
@@ -1085,10 +1085,8 @@ static INLINE VGubyte normalize_coords(struct path_iter_data *pd,
}
break;
case VG_SCUBIC_TO: {
VGfloat x0, y0, x1, y1, x2, y2, x3, y3;
VGfloat x1, y1, x2, y2, x3, y3;
data_at(&pd->coords, pd->path, 0, 4, data);
x0 = pd->ox;
y0 = pd->oy;
x1 = 2*pd->ox-pd->px;
y1 = 2*pd->oy-pd->py;
x2 = data[0];