diff --git a/test/testDirectUpdate.cpp b/test/testDirectUpdate.cpp index 735231a6..799d1351 100644 --- a/test/testDirectUpdate.cpp +++ b/test/testDirectUpdate.cpp @@ -25,9 +25,9 @@ void tvgtest() shape->appendRect(-100, -100, 200, 200, 0); - //fill and rotate properties will be retained + //fill property will be retained shape->fill(127, 255, 255, 255); - shape->rotate(45); + canvas->push(move(shape)); //Draw first frame diff --git a/test/testTransform.cpp b/test/testTransform.cpp index 48d496b2..0a126cc5 100644 --- a/test/testTransform.cpp +++ b/test/testTransform.cpp @@ -75,7 +75,7 @@ void transit_cb(Elm_Transit_Effect *effect, Elm_Transit* transit, double progres pShape2->translate(400 + progress * 300, 400); canvas->update(pShape2); - //Update Shape2 + //Update Shape3 pShape3->rotate(-360 * progress); pShape3->scale(0.5 + progress); canvas->update(pShape3);