Hello GLSL

GLSL Shader App with Qt

In this tutorial we will extend the previous tutorial and make use of a Shader written in GLSL to fill our spinning quad. GLSL is a C-like language you can use to execute code on your GPU (aka graphics card). More sophisticated effects can be achieved with this technique. [Read More]
Tags: opengl qt

Hello Quad

basic OpenGL App with Qt

In this first tutorial we will create a simple (I mean really simpleā€¦) Qt program to render OpenGL graphics (spinning quad). I will extend the programs you find in the Qt boxes demo and Qt OpenGL examples with a separate thread that does the actual redering to be independent (in... [Read More]
Tags: opengl qt