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