mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-09 06:04:03 +00:00
examples: fix a compilation error on windows.
../src/examples/Performance.cpp:32:8: error: 'uint' does not name a type; did you mean 'u_int'? 32 | static uint cnt = 0; | ^~~~ | u_int @Issues: https://github.com/Samsung/thorvg/issues/1247
This commit is contained in:
parent
e918a8cb5b
commit
5fa8aac2aa
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@
|
||||||
static tvg::Picture* pPicture = nullptr;
|
static tvg::Picture* pPicture = nullptr;
|
||||||
static double updateTime = 0;
|
static double updateTime = 0;
|
||||||
static double accumulateTime = 0;
|
static double accumulateTime = 0;
|
||||||
static uint cnt = 0;
|
static uint32_t cnt = 0;
|
||||||
|
|
||||||
void tvgDrawCmds(tvg::Canvas* canvas)
|
void tvgDrawCmds(tvg::Canvas* canvas)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue