MiniDisplay/minidisplay_plugin.cpp
author sl
Fri, 30 May 2014 10:56:20 +0200
changeset 20 cd6d76b9b47e
permissions -rw-r--r--
Pixel diff logic for frame rate improvment now working.
It's still working on a per pixels bases so too slow with full screen update.
Thus it's still disabled.
     1 #include "minidisplay_plugin.h"
     2 #include "minidisplay.h"
     3 
     4 #include <qqml.h>
     5 
     6 void MiniDisplayPlugin::registerTypes(const char *uri)
     7 {
     8     // @uri com.slions.minidisplay
     9     qmlRegisterType<MiniDisplay>(uri, 1, 0, "MiniDisplay");
    10 }
    11 
    12