资源简介

一直想用OpenGL来显示图像或者做视频播放器的窗口,网上找了很久,都没有Qt这方面最新的靠谱的例子,大部分都是3D模型上贴图,要不就是各种报错,或者Qt的OpenGL版本不对,自己摸索了好久,终于搞定了,是在QT5.6.3MinGW下编译的,可自适应窗口大小

资源截图

代码片段和文件信息

#include “widget.h“
#include 
#include 
#include “myglwidget.h“
int main(int argc char *argv[])
{
    QApplication a(argc argv);
    QCoreApplication::setAttribute(Qt::AA_UseDesktopOpenGL);
    Widget w;
    w.show();
    return a.exec();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-12-29 14:19  OPenGL_Test\
     目录           0  2018-11-22 14:27  OPenGL_Test\image\
     文件     1310092  2018-07-15 21:06  OPenGL_Test\image\Avengers.jpg
     文件         293  2018-11-22 16:48  OPenGL_Test\main.cpp
     文件        4002  2018-12-29 13:42  OPenGL_Test\myglwidget.cpp
     文件         880  2018-11-22 14:30  OPenGL_Test\myglwidget.h
     文件         496  2018-11-21 17:13  OPenGL_Test\OPenGL_Test.pro
     文件         102  2018-11-22 14:27  OPenGL_Test\resource.qrc
     文件         413  2018-12-29 13:43  OPenGL_Test\widget.cpp
     文件         273  2018-11-16 11:10  OPenGL_Test\widget.h
     文件        1118  2018-11-21 17:10  OPenGL_Test\widget.ui

评论

共有 条评论