MiniDisplay/minidisplay_plugin.h
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 #ifndef MINIDISPLAY_PLUGIN_H
     2 #define MINIDISPLAY_PLUGIN_H
     3 
     4 #include <QQmlExtensionPlugin>
     5 
     6 class MiniDisplayPlugin : public QQmlExtensionPlugin
     7 {
     8     Q_OBJECT
     9     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
    10 
    11 public:
    12     void registerTypes(const char *uri);
    13 };
    14 
    15 #endif // MINIDISPLAY_PLUGIN_H
    16