6 changed files with 48 additions and 14 deletions
@ -0,0 +1,16 @@ |
|||||||
|
#include "GLVideoItemStub.h" |
||||||
|
|
||||||
|
GLVideoItemStub::GLVideoItemStub() |
||||||
|
{ |
||||||
|
// setFlag(QQuickItem::ItemHasContents, true);
|
||||||
|
} |
||||||
|
|
||||||
|
GLVideoItemStub::~GLVideoItemStub() |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
//QSGNode*
|
||||||
|
//GLVideoItemStub::updatePaintNode(QSGNode* oldNode, UpdatePaintNodeData* updatePaintNodeData)
|
||||||
|
//{
|
||||||
|
// return oldNode;
|
||||||
|
//}
|
@ -0,0 +1,18 @@ |
|||||||
|
#pragma once |
||||||
|
|
||||||
|
#include <QtQuick/QQuickItem> |
||||||
|
|
||||||
|
class GLVideoItemStub : public QQuickItem |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
GLVideoItemStub(); |
||||||
|
~GLVideoItemStub(); |
||||||
|
|
||||||
|
protected: |
||||||
|
// QSGNode* updatePaintNode(QSGNode* oldNode, UpdatePaintNodeData* updatePaintNodeData);
|
||||||
|
|
||||||
|
private: |
||||||
|
|
||||||
|
}; |
Loading…
Reference in new issue