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.
sl@2
     1
#include "minidisplay_plugin.h"
sl@2
     2
#include "minidisplay.h"
sl@2
     3
sl@2
     4
#include <qqml.h>
sl@2
     5
sl@2
     6
void MiniDisplayPlugin::registerTypes(const char *uri)
sl@2
     7
{
sl@2
     8
    // @uri com.slions.minidisplay
sl@2
     9
    qmlRegisterType<MiniDisplay>(uri, 1, 0, "MiniDisplay");
sl@2
    10
}
sl@2
    11
sl@2
    12