043 - OpenGL on Windows For the First Time using QOpenGLWidget Qt Toolkit

Опубликовано: 04 Сентябрь 2020
на канале: IQ95 The Homo Siliconiens
1,917
32

MyGLWidget::MyGLWidget(QWidget *parent) : QOpenGLWidget(parent)
{
QSurfaceFormat format;
format.setDepthBufferSize(24);
format.setStencilBufferSize(8);
format.setVersion(3, 2);
format.setProfile(QSurfaceFormat::CoreProfile);
QSurfaceFormat::setDefaultFormat(format);
}

void MyGLWidget::initializeGL()
{
// this is compulsory
initializeOpenGLFunctions();
}

void MyGLWidget::paintGL()
{
glClearColor(1.0f, 1.0f, 0.0f, 0.0f);
glClear(GL_COLOR_BUFFER_BIT);

glBegin(GL_QUADS);

glColor3f(1.0f, 0.0f, 1.0f);

glVertex2f(-0.5f, -0.5f);
glVertex2f(0.5f, -0.5f);
glVertex2f(0.5f, 0.5f);
glVertex2f(-0.5f, 0.5f);

glEnd();
glFlush();
}

QOpenGLWidget Class
https://doc.qt.io/qt-5/qopenglwidget....

Computer Graphics Programming in OpenGL with C++
https://www.amazon.com/Computer-Graph...

OpenGL Programming Guide: The Official Guide to Learning OpenGL, Version 4.5 with SPIR-V (9th Edition)
https://www.amazon.com/OpenGL-Program...

Prerequisites:

041 - Plot Graph 6 - How to Use JavaScript In C++ Programming (Demo)
   • 041 - Plot Graph 6 - How to Use JavaS...  

042 - Plot Graph 7 - Polar Coordinates, Mathematics, Physics, and Computer Science
   • 042 - Plot Graph 7 - Polar Coordinate...  

Download Source Code:

Episode 043
http://sourcecode.talkplayfun.com/ele...


Смотрите видео 043 - OpenGL on Windows For the First Time using QOpenGLWidget Qt Toolkit онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь IQ95 The Homo Siliconiens 04 Сентябрь 2020, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 1,917 раз и оно понравилось 32 людям.