Qt5.6.0+OpenGL 纹理贴图首战告捷
重要的话写在前面~~通过今晚的实验,知道了EBO是不能随便release的~~~一直不要release就可以了,否则vao会失效
Display.h
#ifndef DISPLAYWIDGET_H
#define DISPLAYWIDGET_H #include <QGLWidget> #include <QOpenGLFunctions>
#include <QOpenGLBuffer>
#include <QOpenGLVertexArrayObject>
#include <QOpenGLShaderProgram>
#include <QOpenGLVertexArrayObject>
#include <QOpenGLTexture> class DisplayGLWidget:public QGLWidget,protected QOpenGLFunctions
{
Q_OBJECT
public:
DisplayGLWidget(QWidget *parent = );
~DisplayGLWidget(); void teardownGL();
public slots:
//void CompileAndLinkVertexShader(const QString& shaderText);
//void CompileAndLinkFragmentShader(const QString& shaderText); protected: void initializeGL() ;
void paintGL() ;
void resizeGL(int width, int height) ; //void keyPressEvent(QKeyEvent *event) override;
void mousePressEvent(QMouseEvent *event) override;
void mouseMoveEvent(QMouseEvent *event) override; private:
QOpenGLBuffer m_vbo;
QOpenGLBuffer m_ebo;
QOpenGLVertexArrayObject m_vao;
QOpenGLShaderProgram *m_program;
QOpenGLTexture *texture; void printVersionInformation(); void initTextures(); }; #endif
Display.cpp
#include "DisplayGLWidget.h"
#include "Vertex.h" #include <QDebug>
#include <iostream> // Create a colored triangle
static const Vertex sg_vertexes[] = {
Vertex( QVector3D( 0.00f, 0.75f, 1.0f), QVector3D(1.0f, 0.0f, 0.0f) ),
Vertex( QVector3D( 0.75f, -0.75f, 1.0f), QVector3D(0.0f, 1.0f, 0.0f) ),
Vertex( QVector3D(-0.75f, -0.75f, 1.0f), QVector3D(0.0f, 0.0f, 1.0f) )
}; static const GLfloat vertices[] = {
// Positions // Colors // Texture Coords
0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, // Top Right
0.5f, -0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, // Bottom Right
-0.5f, -0.5f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, // Bottom Left
-0.5f, 0.5f, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f // Top Left
}; static const GLfloat vertices1[] =
{
-0.5f, 0.5f, 0.0f, // Top Left
-0.5f,0.0f, 0.0f,
0.0f, 0.5f, 0.0f
}; static const GLuint indices[] = { // Note that we start from 0!
, , , // First Triangle
, , // Second Triangle
}; DisplayGLWidget::DisplayGLWidget(QWidget* parent)
:QGLWidget(parent)
//: QGLWidget(QGLFormat(QGL::SampleBuffers),parent)
, m_vbo(QOpenGLBuffer::VertexBuffer)
, m_ebo(QOpenGLBuffer::IndexBuffer) { int a = ;
//timer.start();
} DisplayGLWidget::~DisplayGLWidget()
{
makeCurrent();
teardownGL();
} void DisplayGLWidget::teardownGL()
{
// Actually destroy our OpenGL information
m_vbo.destroy();
m_ebo.destroy();
m_vao.destroy();
delete m_program;
} void DisplayGLWidget::initializeGL()
{
//glShadeModel(GL_SMOOTH); // 启用阴影光滑
//glClearColor(0.2,0.2,0.2,0); // 设置清除屏幕的颜色
//glClearDepth(1.0); // 设置深度缓存
//glEnable(GL_DEPTH_TEST); // 深度测试
//glDepthFunc(GL_LEQUAL); // 启用深度测试
//glHint(GL_PERSPECTIVE_CORRECTION_HINT,GL_NICEST); // 进行最好的透视修正,可能会影响性能
initializeOpenGLFunctions();
printVersionInformation();
glClearColor(0.3,0.3,0.3,); // Application-specific initialization {
// Create Shader (Do not release until VAO is created)
m_program = new QOpenGLShaderProgram();
m_program->addShaderFromSourceFile(QOpenGLShader::Vertex, "./shaders/simple.vert");
m_program->addShaderFromSourceFile(QOpenGLShader::Fragment, "./shaders/simple.frag");
m_program->link();
m_program->bind(); // Create Vertex Array Object
m_vao.create();
m_vao.bind(); // Create Buffer (Do not release until VAO is created)
m_vbo.create();
m_vbo.bind();
m_vbo.setUsagePattern(QOpenGLBuffer::StaticDraw);
m_vbo.allocate(vertices, sizeof(vertices)); m_ebo.create();
m_ebo.bind();
m_ebo.setUsagePattern(QOpenGLBuffer::StaticDraw);
m_ebo.allocate(indices,sizeof(indices)); m_program->enableAttributeArray();
m_program->enableAttributeArray();
m_program->enableAttributeArray();
m_program->setAttributeBuffer(, GL_FLOAT, , , *sizeof(GLfloat)); // 3表示的是这一个属性里面有几个分量
m_program->setAttributeBuffer(, GL_FLOAT, *sizeof(GLfloat), , *sizeof(GLfloat));
m_program->setAttributeBuffer(, GL_FLOAT, * sizeof(GLfloat), , * sizeof(GLfloat)); initTextures(); // Release (unbind) all m_vbo.release();
m_vao.release();
//m_ebo.release();
m_program->release();
} } void DisplayGLWidget::paintGL()
{
//makeCurrent(); glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); // 清除屏幕和深度缓存
//glLoadIdentity(); // 重置当前模型的观察矩阵
// Render using our shader m_program->bind();
{ m_program->setUniformValue("ourTexture", );
texture->bind();
m_vao.bind();
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
glDrawElements(GL_TRIANGLES,,GL_UNSIGNED_INT,);
//glDrawArrays(GL_TRIANGLES, 0, sizeof(sg_vertexes) / sizeof(sg_vertexes[0]));
//glDrawArrays(GL_TRIANGLES, 0, 3);
m_vao.release();
}
m_program->release(); /*m_program1->bind();
{
m_vao1.bind();
glDrawArrays(GL_TRIANGLES,0,3);
m_vao1.release();
}
m_program1->release();*/
} void DisplayGLWidget::resizeGL(int width, int height)
{
if (height == ) // 规定屏幕高度不得低于20
{
height = ;
}
glViewport(,,(GLint)width,(GLint)height); // 重置当前的视口
glMatrixMode(GL_PROJECTION); // 选择投影矩阵
glLoadIdentity(); // 重置投影矩阵
//gluPerspective(45.0,(GLfloat)width/(GLfloat)height,0.1,100.0); // 建立透视投影矩阵
glMatrixMode(GL_MODELVIEW); // 选择模型观察矩阵
glLoadIdentity(); // 重置模型观察矩阵
} //void DisplayGLWidget::keyPressEvent(QKeyEvent* e)
//{
// switch (e->key())
// {
// default:
// break;
// }
//} void DisplayGLWidget::mouseMoveEvent(QMouseEvent* event)
{ } void DisplayGLWidget::printVersionInformation()
{
QString glType;
QString glVersion;
QString glProfile; // Get Version Information
//glType = (context()->isOpenGLES()) ? "OpenGL ES" : "OpenGL";
glVersion = reinterpret_cast<const char*>(glGetString(GL_VERSION)); // Get Profile Information
#define CASE(c) case QSurfaceFormat::c: glProfile = #c; break
switch (format().profile())
{
CASE(NoProfile);
CASE(CoreProfile);
CASE(CompatibilityProfile);
}
#undef CASE // qPrintable() will print our QString w/o quotes around it.
//qDebug() << qPrintable(glType) << qPrintable(glVersion) << "(" << qPrintable(glProfile) << ")";
qDebug() << qPrintable(glVersion) << "(" << qPrintable(glProfile) << ")";
} void DisplayGLWidget::initTextures()
{
texture = new QOpenGLTexture(QImage("./resources/texture/flower.jpg").mirrored());
texture->setMinificationFilter(QOpenGLTexture::Nearest);
texture->setMagnificationFilter(QOpenGLTexture::Linear);
texture->setWrapMode(QOpenGLTexture::Repeat); } void DisplayGLWidget::mousePressEvent(QMouseEvent* event)
{ }
结果:
Qt5.6.0+OpenGL 纹理贴图首战告捷的更多相关文章
- 基于Cocos2d-x学习OpenGL ES 2.0系列——纹理贴图(6)
在上一篇文章中,我们介绍了如何绘制一个立方体,里面涉及的知识点有VBO(Vertex Buffer Object).IBO(Index Buffer Object)和MVP(Modile-View-P ...
- OpenGL 纹理贴图
前一节实例代码中有个贴图操作. 今天就简单说明一下纹理贴图... 为了使用纹理贴图.我们首先需要启用纹理贴图功能. 我们可以在Renderer实现的onSurfaceCreated中定义启用: // ...
- (转载)Cocos2dx-OpenGL ES2.0教程:纹理贴图(6)
在上一篇文章中,我们介绍了如何绘制一个立方体,里面涉及的知识点有VBO(Vertex Buffer Object).IBO(Index Buffer Object)和MVP(Modile-View-P ...
- [OpenGL]纹理贴图实现 总结
实现步骤 第一步:设置所需要的OpenGL环境 设置上下文环境 删除已经存在的渲染的缓存 设置颜色缓存 设置帧缓存 清除缓存 设置窗口大小 开启功能 编译shander 使用program 获取sha ...
- 用OpenGL进行立方体表面纹理贴图
一.目的 掌握OpenGL中纹理对象的创建.绑定与使用方法. 二.简单介绍 1,连接静态库 #pragma comment(lib, "glut32.lib") #pragma c ...
- opengl学习笔记(三):经过纹理贴图的棋盘
opengl纹理贴图的步骤: 1:创建纹理对象,并为它指定一个纹理 2:确定纹理如何应用到每个像素上 3:启用纹理贴图功能 4:绘制场景,提供纹理坐标和几何图形坐标 注意:纹理坐标必须在RGBA模式下 ...
- (转)使用OpenGL显示图像(七)Android OpenGLES2.0——纹理贴图之显示图片
转:http://blog.csdn.net/junzia/article/details/52842816 前面几篇博客,我们将了Android中利用OpenGL ES 2.0绘制各种形体,并在上一 ...
- IOS 中openGL使用教程3(openGL ES 入门篇 | 纹理贴图(texture)使用)
在这篇文章中,我们将学习如何在openGL中使用纹理贴图. penGL中纹理可以分为1D,2D和3D纹理,我们在绑定纹理对象的时候需要指定纹理的种类.由于本文将以一张图片为例,因此我们为我们的纹理对象 ...
- android ndk调用OpenGL 实现纹理贴图Texture
android ndk调用OpenGL 实现纹理贴图Texture 时间 2014-06-25 05:24:39 CSDN博客 原文 http://blog.csdn.net/chrisfxs/a ...
随机推荐
- bzoj 2618: [Cqoi2006]凸多边形 [半平面交]
2618: [Cqoi2006]凸多边形 半平面交 注意一开始多边形边界不要太大... #include <iostream> #include <cstdio> #inclu ...
- 使用supervisor 进行进程管理时调整最大文件打开数
[supervisord]logfile=/tmp/supervisord.log ; 日志文件,默认是 $CWD/supervisord.loglogfile_maxbytes=50MB ; 日志文 ...
- CENTOS/RHEL 7 系统中设置SYSTEMD SERVICE的ULIMIT资源限制
遇到的问题: golang程序一直出现 too many open files的报错, 尽管对 /etc/security/limits.conf 做了设置, 对最大文件打开数,最大进程数做了调优. ...
- 05-Git
[Git] [安装git] $ yum install git #安装git $ ssh-keygen #遇到输入符直接回车 $ cat ~/.ssh/id_rsa.pub #将这里的信息添加 ...
- 洛谷P1879 [USACO06NOV]玉米田Corn Fields【状压DP】题解+AC代码
题目描述 Farmer John has purchased a lush new rectangular pasture composed of M by N (1 ≤ M ≤ 12; 1 ≤ N ...
- HashMap、Hashtable、 LinkedHashMap、TreeMap四者之分。
java为数据结构中的映射定义了一个接口java.util.Map,此接口主要有四个常用的实现类,分别是HasMap.Hashtable.LinkedHasmap和TreeMap. (1)HashMa ...
- 新人学习selenium哪些资源比较有帮助?
为什么学习selenium? selenium现在基本上成了页面自动化测试的标配,具体理由我在selenium 3.0发布这篇文章里已经说明过了.当一个东西成为标准以后,那么它的能量和潜力都是巨大的. ...
- 配置nginx服务器 —— Nginx添加多个二级子域名
1.安装nginx centos/linux下的安装Nginx 2.安装好后进入Nginx目录中 在conf目录下建立一个vhost(ps:名字自己设定)文件夹 其中的$NGINXHOME为你的ngi ...
- 编写一个js函数,该函数有一个n(数字类型),其返回值是一个数组,该数组内是n个随机且不重复的整数,且整数取值范围是[2,32]
首先定义个fn用来返回整数的取值范围: function getRand(a,b){ var rand = Math.ceil(Math.random()*(b-a)+a); return rand; ...
- Git (gnome-ssh-askpass:3871): Gtk-WARNING **: cannot open display:
在使用Git在客户端使用git push 命令提交文件到github时,出现报错 (gnome-ssh-askpass:): Gtk-WARNING **: cannot open display: ...