Changeset 437 for trunk/src/gui/kernel


Ignore:
Timestamp:
Dec 23, 2009, 1:02:06 AM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Implemented new blit mirroring method using undocumented GpiEnableYInversion() (QImage.mirrored() is still the default as it seems to show better performance, see #101 for more information).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/kernel/qapplication_pm.cpp

    r434 r437  
    411411    extern unsigned long long qt_total_blit_ms;
    412412    extern unsigned long long qt_total_blit_pixels;
    413     printf("*** qt_total_blit_ms %llu\n"
    414            "*** qt_total_blit_pixels %llu\n"
    415            "*** speed %llu pixels/ms",
     413    printf("*** qt_total_blit_ms      : %llu\n"
     414           "*** qt_total_blit_pixels  : %llu\n"
     415           "*** average speed, px/ms  : %llu\n",
    416416           qt_total_blit_ms, qt_total_blit_pixels,
    417417           qt_total_blit_pixels / qt_total_blit_ms);
Note: See TracChangeset for help on using the changeset viewer.