diff --git a/src/examples/Performance.cpp b/src/examples/Performance.cpp index bc5403d5..048c060f 100644 --- a/src/examples/Performance.cpp +++ b/src/examples/Performance.cpp @@ -180,10 +180,10 @@ int main(int argc, char **argv) Elm_Transit *transit = elm_transit_add(); if (tvgEngine == tvg::CanvasEngine::Sw) { - auto view = createSwView(); + auto view = createSwView(1024, 1024); elm_transit_effect_add(transit, transitSwCb, view, nullptr); } else { - auto view = createGlView(); + auto view = createGlView(1024, 1024); elm_transit_effect_add(transit, transitGlCb, view, nullptr); } diff --git a/src/examples/Tvg.cpp b/src/examples/Tvg.cpp index 21fe8895..4db6f79c 100644 --- a/src/examples/Tvg.cpp +++ b/src/examples/Tvg.cpp @@ -28,7 +28,7 @@ /************************************************************************/ #define NUM_PER_ROW 7 -#define NUM_PER_COL 6 +#define NUM_PER_COL 7 #define SIZE (WIDTH/NUM_PER_ROW) static int counter = 0; @@ -172,9 +172,9 @@ int main(int argc, char **argv) elm_init(argc, argv); if (tvgEngine == tvg::CanvasEngine::Sw) { - createSwView(); + createSwView(1024, 1024); } else { - createGlView(); + createGlView(1024, 1024); } elm_run();