Giter Site home page Giter Site logo

qt-opengl-template's Introduction

Qt/OpenGL Template

About

This example shows how to build a Qt GUI around a view that is rendered with OpenGL. The example is based on "Hello Triangle" from Learn OpenGL.

There are many similar examples out there, but it seems to me that most of them don't properly separate application code from UI code. Generally speaking, the business logic of an application should not depend on the framework used to implement the application's user interface. To that end, this example clearly separates the two:

  • Source/Gui contains Qt-dependent UI layer code and is written in C++
  • Source/Renderer contains OpenGL-dependent application layer code and is written in C

In other words, the OpenGL-based Renderer is independent of the Qt-based Gui. This way we could relatively easily swap Qt for any other framework to implement Gui without having to make any changes to Renderer.

This example uses GL3W to load OpenGL functions.

Build & run (Linux)

Scripts/Linux/bootstrap.sh
cmake -B build -S .
cmake --build build
./build/bin/Example-App

Build & run (Windows)

This should hopefully work, but you'll need to re-evaluate your life choices:

Scripts/Windows/bootstrap.ps1
cmake -B build -S .
cmake --build build
./build/Debug/bin/Example-App

qt-opengl-template's People

Contributors

ihonen avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.