1 Star 6 Fork 3

chen227/OpenglAndQml

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
uptrianglewindow.h 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
chen227 提交于 2018-05-24 13:47 . opengl 上层界面追加
#ifndef UPTRIANGLEWINDOW_H
#define UPTRIANGLEWINDOW_H
#include "openglwindow.h"
#include <QtGui/QGuiApplication>
#include <QtGui/QMatrix4x4>
#include <QtGui/QOpenGLShaderProgram>
#include <QtGui/QScreen>
#include <QtCore/qmath.h>
#include <QOpenGLBuffer>
#include <QOpenGLTexture>
#include <QOpenGLExtraFunctions>
#include <QGLWidget>
#include <qmath.h>
class UpTriangleWindow: public Openglwindow
{
public:
UpTriangleWindow();
~UpTriangleWindow();
void initialize() override;
void render() override;
public slots:
void setFrame(qreal frame){ m_frame = frame; }
private:
//位置
GLuint m_posAttr;
//颜色
GLuint m_colAttr;
//矩阵
GLuint m_projection;
GLuint m_view;
GLuint m_model;
//环境光
GLuint m_ambientColAttr;
//点光源
GLuint m_lightColAttr;
GLuint m_lightPosAttr;
GLuint m_aNormal;
//视点
GLuint m_viewPosAttr;
//纹理
GLuint m_texcoordLocation;
//着色器程序
QOpenGLShaderProgram *m_program;
int m_frame;
//顶点缓冲对象
GLuint VBO;
//顶点数组对象
GLuint VAO;
//索引缓冲对象
GLuint EBO;
GLuint m_VAO[2];
GLuint m_VBO[2];
GLuint m_EBO[2];
//纹理对象
QOpenGLTexture *m_texture;
GLuint textureVAO;
GLuint textureVBO;
//纹理对象 数组
QVector<QOpenGLTexture *> m_vTexture;
QOpenGLTexture *m_textureBg;
};
#endif // UPTRIANGLEWINDOW_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chen227/OpenglAndQml.git
git@gitee.com:chen227/OpenglAndQml.git
chen227
OpenglAndQml
OpenglAndQml
master

搜索帮助