aboutsummaryrefslogtreecommitdiffstats
path: root/tests/perf/fbperf.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/perf/fbperf.cxx')
-rw-r--r--tests/perf/fbperf.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/perf/fbperf.cxx b/tests/perf/fbperf.cxx
index d512ef80..5d626602 100644
--- a/tests/perf/fbperf.cxx
+++ b/tests/perf/fbperf.cxx
@@ -93,7 +93,7 @@ TestWindow::~TestWindow()
void TestWindow::start(int width, int height)
{
- rdr::U32 pixel;
+ uint32_t pixel;
stop();
@@ -176,7 +176,7 @@ void TestWindow::update()
void TestWindow::changefb()
{
- rdr::U32 pixel;
+ uint32_t pixel;
pixel = rand();
fb->fillRect(fb->getRect(), &pixel);
@@ -195,7 +195,7 @@ void TestWindow::timer(void* data)
void PartialTestWindow::changefb()
{
rfb::Rect r;
- rdr::U32 pixel;
+ uint32_t pixel;
r = fb->getRect();
r.tl.x += w() / 4;