What exactly is an "OpenGL Context"? How does it work?
#1 Members - Reputation: 100
Posted 07 June 2011 - 04:24 PM
From my experiments and what i've read before using any OpenGL function calls and such an "OpenGL context" is required. Im a bit puzzled as to what this actually means, my initial thought was that this would just be a window capable of displaying pixel data, but clearly there is something more to it.
What actually defines a window as being an OpenGL context?
How does OpenGL know if a window is a valid OpenGL context?
Lets say on operating system X i've used the native API to create a window, what steps would i then need to take to make it capable of displaying openGL data, do native api's include special openGL settings or something?
Currently im using SFML to abstract the creation of an OpenGL context and it works perfectly but i'd still like to have a at least vague idea of the inner working that are going on...
For example SFML 1.6 does not work with OpenGL 3.0+ whereas SFML 2.0 does, i don't understand this, why is displaying the pixels rendered by OpenGL so complicated that compatibility becomes an issue?
Thank you for any help, and im sorry that my writing is not very good!
#2 Members - Reputation: 536
Posted 07 June 2011 - 04:50 PM
#3 Members - Reputation: 785
Posted 07 June 2011 - 05:37 PM
You just need to 1. setup a pixelformat 2. make a GL context 3. make the GL context current.
SFML, GLUT, freeGLUT, QT, SDL and the many others do that for you.
and render away until you need to destroy resources and destroy the GL context and close the window.
an open source GLU replacement library. Much more modern than GLU.
float matrix[16], inverse_matrix[16];
glhLoadIdentityf2(matrix);
glhTranslatef2(matrix, 0.0, 0.0, 5.0);
glhRotateAboutXf2(matrix, angleInRadians);
glhScalef2(matrix, 1.0, 1.0, -1.0);
glhQuickInvertMatrixf2(matrix, inverse_matrix);
glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);
#4 Members - Reputation: 554
Posted 09 June 2011 - 12:57 AM
Quite right. ATI driver developers dont need to know what a opengl context is among other things.<BR>Unless you plan on become a programmer in a team that makes GL drivers and you want to work at nVidia, it doesn't matter what a GL context is.<BR>
Blood Tactics - Online first person shooter.........Frost TD - 3D tower defence game.
Spheres of Madness - 2D puzzle game...............Essence - Online Go (boardgame).
Descent - 2D top down shooter...........................Dragon Wars - Online turn based strategy game.
#5 Members - Reputation: 785
Posted 09 June 2011 - 06:29 AM
an open source GLU replacement library. Much more modern than GLU.
float matrix[16], inverse_matrix[16];
glhLoadIdentityf2(matrix);
glhTranslatef2(matrix, 0.0, 0.0, 5.0);
glhRotateAboutXf2(matrix, angleInRadians);
glhScalef2(matrix, 1.0, 1.0, -1.0);
glhQuickInvertMatrixf2(matrix, inverse_matrix);
glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);
#6 Members - Reputation: 544
Posted 09 June 2011 - 07:03 AM
Anyway, when a context is created, it is tied to your application's process, usually to the main Window's paint area. Often creating Window paint surface and creating an OpenGL context goes hand in hand. Therefore, destroying the Window may also destroy the context.
1. Create window
2. Create OpenGL context
3. Attach context to window and current process
4. Switch to created context
5. Render stuff
6. Release context
7. Destroy window
This is the general process for setting up OpenGL on most systems. I'm not familiar with X specifically, but I assume the steps would be quite similar.
#7 Members - Reputation: 554
Posted 09 June 2011 - 12:47 PM
LOL. You don't like ATI?
Its fine now but the past is haunting me!
Blood Tactics - Online first person shooter.........Frost TD - 3D tower defence game.
Spheres of Madness - 2D puzzle game...............Essence - Online Go (boardgame).
Descent - 2D top down shooter...........................Dragon Wars - Online turn based strategy game.
#8 Members - Reputation: 307
Posted 09 June 2011 - 01:13 PM
If you can define something then you don’t understand it!
Sadly, nobody before Tachikoma tried to answer to the question. Although it is not crucial for programmers to know how rendering context is implemented, it is important to understand what it is in order to know how to use it.
An OpenGL context is the data structure that collects all states needed by server to render an image. It contains references to buffers, textures, shaders, etc. OpenGL API doesn’t define how rendering context is defined, it is up to the native window system; but none of OpenGL commands can be executed until rendering context is created and made current.
A rendering context should be compatible with a window it will render to. There can be several contexts per application, or even per window. On the other hand, the same context can be used for rendering in multiple windows, but in that case all windows using the same context must have the same pixel format. Now we have come to another important aspect of rendering context: its rendering surface must be adequate for appropriate window. In order to achieve that we have to choose and set appropriate pixel format of the window that have to be created. The rendering surface is the surface to which primitives are drawn. It defines types of buffers that are required for rendering such as a color buffer, depth buffer, and stencil buffer.
Choosing pixel format must be performed in order to verify support for defined pixel format. The system would return ID of appropriate pixel format, or the closest match. Setting pixel format that is not previously returned from the system would almost certainly fail. It is not recommended to set pixel format for the window more than once.
In order to issue any OpenGL command we have to make OpenGL context active (i.e. “current”). By making active we assume binding OpenGL context to a window’s DC. It is done from a certain thread. Only one context can be made current for a single thread at a moment. Calling OpenGL commands from another thread (different from that made the context current) fails. If we want to make use of multithreading update of OpenGL resources, we have to make a share-group. All contexts from the share-group share resources like textures, buffers, etc. Although multithreading update can be useful in some cases, we have to be aware that most OpenGL drivers serialize access to the GPU. OpenGL guarantees that all commands in the single context will be executed in the order in which they are issued, but there is no guarantee for multiple contexts. Since OpenGL 3.2 synchronization is enabled through sync objects.
Prior to OpenGL 3.0, there was just one type of OpenGL rendering contexts; the context that contains full functionality. OpenGL3.0 introduced forward compatibility, and 3.2 introduced concept of profiles. If anyone is interested in further discussion, we could proceed, but I think it is a bit out of the scope of the OP’s question. I was already too comprehensive. ![]()
#9 Members - Reputation: 544
Posted 09 June 2011 - 08:01 PM
na, you did good!I was already too comprehensive.
#10 Members - Reputation: 124
Posted 09 June 2011 - 09:35 PM
http://nehe.gamedev.net/lesson.asp?index=01
#11 Members - Reputation: 212
Posted 10 June 2011 - 07:16 AM
This isn't a direct answer to your question, but I would recommend the NeHe tutorial for learning openGL. It will take you through creating a Window, setting up openGL, drawing on the Window, and much more.
http://nehe.gamedev....on.asp?index=01
Just remember that following a tutorial is no substitute for reading the documentation. A tutorial shows you how to use a hammer to drive in a nail. If someone then gives you a screw you will think to yourself "this looks a lot like a nail, better use a hammer!". Read the documentation on nails, screws and hammers is all I'm saying
#12 Members - Reputation: 785
Posted 10 June 2011 - 07:22 AM
http://www.opengl.org/wiki/FAQ#GL_context
I am keeping it short. I did not go into the actual calls needed since these are OS specific and you can get that info from other parts of the web.
You can give feedback. Modify the Wiki to your liking, etc.
an open source GLU replacement library. Much more modern than GLU.
float matrix[16], inverse_matrix[16];
glhLoadIdentityf2(matrix);
glhTranslatef2(matrix, 0.0, 0.0, 5.0);
glhRotateAboutXf2(matrix, angleInRadians);
glhScalef2(matrix, 1.0, 1.0, -1.0);
glhQuickInvertMatrixf2(matrix, inverse_matrix);
glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);
#13 Members - Reputation: 307
Posted 10 June 2011 - 08:00 AM
#14 Members - Reputation: 785
Posted 10 June 2011 - 09:49 AM
You can of course modify it or make suggestions right here if you want things worded differently.
You can say that about any other webpage.Anyway it is good that beginners can read something, although I don't think they really read wiki.
The Wiki is not for stopping people from asking questions.
Before the Wiki was around, people asked questions and received many nice answers and that followed by "Why isn't this documented somewhere?". At some point, whoever manages opengl.org decided that a Wiki would be a good idea.
an open source GLU replacement library. Much more modern than GLU.
float matrix[16], inverse_matrix[16];
glhLoadIdentityf2(matrix);
glhTranslatef2(matrix, 0.0, 0.0, 5.0);
glhRotateAboutXf2(matrix, angleInRadians);
glhScalef2(matrix, 1.0, 1.0, -1.0);
glhQuickInvertMatrixf2(matrix, inverse_matrix);
glUniformMatrix4fv(uniformLocation1, 1, FALSE, matrix);
glUniformMatrix4fv(uniformLocation2, 1, FALSE, inverse_matrix);
#15 Members - Reputation: 307
Posted 10 June 2011 - 12:35 PM
You need a window because that is how it is designed. It is as simple as that.
No comment. (Or to be more precise, I've already commented such answers)
You can of course modify it or make suggestions right here if you want things worded differently.
I don't like writing wikis, because they are so impersonal. Although I have to admit that Wikipedia is really great.
Concerning OpenGL rendering context (RC), I think I've said what I have to say. The most important aspects are: what it is, how it can be created, what the scope of RC is, how resources can be shared, profiles and forward compatibility. But since OP hasn't reacted on our posts, we are probably uselessly fiddling.






