MiniDisplay/minidisplay_plugin.h
author sl
Thu, 29 May 2014 14:27:08 +0200
changeset 15 737f8bb110be
permissions -rw-r--r--
Adding MiniDisplay methods to display image and window.
Using our test tab to render our display frame in QML and send it to our display.
Using a timer and frame counter to profile our performance.
     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