OpenGL Concept
Unsolved
QML and Qt Quick
-
I am new to the concept of OpenGL. Can anyone guide with a simple example of OpenGL in qt qml.
How OpenGl Works? How to use OpenGL in qt and qml? How to render? -
@QtQmlLearner said in OpenGL Concept:
I am new to the concept of OpenGL.
OpenGL is a cross-platform interface to let programmers to control graphics. However, it is quite old and it is likely to be replaced by newer technologies in the future.
Can anyone guide with a simple example of OpenGL in qt qml.
OpenGL is low-level. Qt Quick (QML) is high-level. This means writing OpenGL code is difficult, but writing QML code is easy.
Normally, people only use Qt Quick to avoid writing OpenGL code.
What is your goal? What do you want to use OpenGL for?
-