2

我想混合 opengl 和 QML 的东西。我使用了 qt 5 beta 2。我制作了一个极简程序来向您展示问题:

主文件

#include <QGuiApplication>
#include "back.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Back b;
    b.setSource(QUrl("ui.qml"));
    b.show();

    return a.exec();
}

返回.h

#ifndef BACK_H
#define BACK_H
#include <QtQuick>
#include <QtOpenGL>
#include <QTimer>

class Back :  public QQuickView
{
Q_OBJECT
public:
    ~Back();
    Back();
public slots :
    void paint();
};

#endif // BACK_H

返回.ccp

#include "back.h"

Back::Back()
{
    setClearBeforeRendering(false);
    connect(this, SIGNAL(beforeRendering()), this, SLOT(paint()), Qt::DirectConnection);
    QTimer *timer = new QTimer(this);
    connect(timer, SIGNAL(timeout()), this, SLOT(update()), Qt::DirectConnection);
    timer->start(3000);
}

Back::~Back()
{
}

void Back::paint()
{
    glViewport(0, 0, 150, 150);
    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    glOrtho(0, 150, 150,0,0,10);
    glMatrixMode(GL_MODELVIEW);
    glLoadIdentity();

    glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
    glColor3ub(255, 0, 0);
    glBegin(GL_QUADS);
        glVertex2i(0, 0);
        glVertex2i(100, 0);
        glVertex2i(100, 100);
        glVertex2i(0, 100);
    glEnd();
}

ui.qml

import QtQuick 2.0

Item {
    width : 150
    height : 150

    Rectangle {
         x : 50
         y : 50
         width: 100
         height: 100
         color: "green"
    }
}

第一张图片是正确的:我有一个带有偏移的绿色正方形和黑色背景的红色正方形。 图片1

3秒后,第二个不正确:我只有带背景 图片的绿色方块2

有人知道我做错了什么吗?

4

0 回答 0