mirror of
https://github.com/thorvg/thorvg.git
synced 2025-07-27 08:36:59 +00:00
test: add stress test for performance profiling.
Change-Id: I4a1556c107ba59b7c972375ab8bfd22c777a5503
This commit is contained in:
parent
9ffc1d40f6
commit
35803e9c2b
3 changed files with 119 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -20,3 +20,4 @@ testRadialGradient
|
||||||
testGradientTransform
|
testGradientTransform
|
||||||
testSvg
|
testSvg
|
||||||
testGlShape
|
testGlShape
|
||||||
|
testStress
|
||||||
|
|
|
@ -18,3 +18,4 @@ all:
|
||||||
gcc -o testGradientTransform testGradientTransform.cpp -g -lstdc++ `pkg-config --cflags --libs elementary tizenvg`
|
gcc -o testGradientTransform testGradientTransform.cpp -g -lstdc++ `pkg-config --cflags --libs elementary tizenvg`
|
||||||
gcc -o testSvg testSvg.cpp -g -lstdc++ `pkg-config --cflags --libs elementary tizenvg`
|
gcc -o testSvg testSvg.cpp -g -lstdc++ `pkg-config --cflags --libs elementary tizenvg`
|
||||||
gcc -o testGlShape testGlShape.cpp -g -lstdc++ `pkg-config --cflags --libs elementary tizenvg`
|
gcc -o testGlShape testGlShape.cpp -g -lstdc++ `pkg-config --cflags --libs elementary tizenvg`
|
||||||
|
gcc -o testStress testStress.cpp -g -lstdc++ `pkg-config --cflags --libs elementary tizenvg`
|
||||||
|
|
117
test/testStress.cpp
Normal file
117
test/testStress.cpp
Normal file
|
@ -0,0 +1,117 @@
|
||||||
|
#include <tizenvg.h>
|
||||||
|
#include <Elementary.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
#define WIDTH 800
|
||||||
|
#define HEIGHT 800
|
||||||
|
#define COUNT 50
|
||||||
|
|
||||||
|
static uint32_t buffer[WIDTH * HEIGHT];
|
||||||
|
unique_ptr<tvg::SwCanvas> canvas = nullptr;
|
||||||
|
|
||||||
|
void tvgtest()
|
||||||
|
{
|
||||||
|
//Create a Canvas
|
||||||
|
canvas = tvg::SwCanvas::gen();
|
||||||
|
canvas->target(buffer, WIDTH, WIDTH, HEIGHT);
|
||||||
|
}
|
||||||
|
|
||||||
|
Eina_Bool anim_cb(void *data)
|
||||||
|
{
|
||||||
|
static unsigned cnt = 0;
|
||||||
|
|
||||||
|
//Explicitly clear all retained paint nodes.
|
||||||
|
double t1 = ecore_time_get();
|
||||||
|
canvas->clear();
|
||||||
|
double t2 = ecore_time_get();
|
||||||
|
|
||||||
|
for (int i = 0; i < COUNT; i++) {
|
||||||
|
auto shape = tvg::Shape::gen();
|
||||||
|
|
||||||
|
float x = rand() % 400;
|
||||||
|
float y = rand() % 400;
|
||||||
|
float w = 1 + rand() % 600;
|
||||||
|
float h = 1 + rand() % 600;
|
||||||
|
|
||||||
|
shape->appendRect(x, y, w, h, rand() % 400);
|
||||||
|
|
||||||
|
if (rand() % 2) {
|
||||||
|
//LinearGradient
|
||||||
|
auto fill = tvg::LinearGradient::gen();
|
||||||
|
fill->linear(x, y, x + w, y + h);
|
||||||
|
|
||||||
|
//Gradient Color Stops
|
||||||
|
tvg::Fill::ColorStop colorStops[3];
|
||||||
|
colorStops[0] = {0, uint8_t(rand() % 255), uint8_t(rand() % 255), uint8_t(rand() % 255), 255};
|
||||||
|
colorStops[1] = {1, uint8_t(rand() % 255), uint8_t(rand() % 255), uint8_t(rand() % 255), 255};
|
||||||
|
colorStops[2] = {2, uint8_t(rand() % 255), uint8_t(rand() % 255), uint8_t(rand() % 255), 255};
|
||||||
|
|
||||||
|
fill->colorStops(colorStops, 3);
|
||||||
|
shape->fill(move(fill));
|
||||||
|
} else {
|
||||||
|
shape->fill(uint8_t(rand() % 255), uint8_t(rand() % 255), uint8_t(rand() % 255), 255);
|
||||||
|
}
|
||||||
|
#if 0
|
||||||
|
if (rand() % 2) {
|
||||||
|
shape->stroke(float(rand() % 10));
|
||||||
|
shape->stroke(uint8_t(rand() % 255), uint8_t(rand() % 255), uint8_t(rand() % 255), 255);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
canvas->push(move(shape));
|
||||||
|
}
|
||||||
|
|
||||||
|
double t3 = ecore_time_get();
|
||||||
|
|
||||||
|
//Draw Next frames
|
||||||
|
canvas->draw();
|
||||||
|
canvas->sync();
|
||||||
|
|
||||||
|
double t4 = ecore_time_get();
|
||||||
|
|
||||||
|
printf("[%5d]: total[%fms] = clear[%fms] + update[%fms] + render[%fms]\n", ++cnt, t4 - t1, t2 - t1, t3 - t2, t4 - t3);
|
||||||
|
|
||||||
|
//Update Efl Canvas
|
||||||
|
Eo* img = (Eo*) data;
|
||||||
|
evas_object_image_data_update_add(img, 0, 0, WIDTH, HEIGHT);
|
||||||
|
|
||||||
|
return ECORE_CALLBACK_RENEW;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
win_del(void *data, Evas_Object *o, void *ev)
|
||||||
|
{
|
||||||
|
elm_exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
//Initialize TizenVG Engine
|
||||||
|
tvg::Initializer::init(tvg::CanvasEngine::Sw);
|
||||||
|
|
||||||
|
tvgtest();
|
||||||
|
|
||||||
|
//Show the result using EFL...
|
||||||
|
elm_init(argc, argv);
|
||||||
|
|
||||||
|
Eo* win = elm_win_util_standard_add(NULL, "TizenVG Test");
|
||||||
|
evas_object_smart_callback_add(win, "delete,request", win_del, 0);
|
||||||
|
|
||||||
|
Eo* img = evas_object_image_filled_add(evas_object_evas_get(win));
|
||||||
|
evas_object_image_size_set(img, WIDTH, HEIGHT);
|
||||||
|
evas_object_image_data_set(img, buffer);
|
||||||
|
evas_object_size_hint_weight_set(img, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
|
||||||
|
evas_object_show(img);
|
||||||
|
|
||||||
|
elm_win_resize_object_add(win, img);
|
||||||
|
evas_object_geometry_set(win, 0, 0, WIDTH, HEIGHT);
|
||||||
|
evas_object_show(win);
|
||||||
|
|
||||||
|
ecore_animator_add(anim_cb, img);
|
||||||
|
|
||||||
|
elm_run();
|
||||||
|
elm_shutdown();
|
||||||
|
|
||||||
|
//Terminate TizenVG Engine
|
||||||
|
tvg::Initializer::term(tvg::CanvasEngine::Sw);
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue