Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
9answers
6k views

OpenGL 4.x learning resources

I know there are some question about learning OpenGL. The difference is that I want to learn OpenGL 4.0 Core profile (no immediate functions). Preferably with good portion of SL knowledge. And I do ...
23
votes
4answers
2k views

What is state-of-the-art for text rendering in OpenGL as of version 4.1?

There are already a number of questions about text rendering in OpenGL, such as: OpenGL live text-rendering But mostly what is discussed is rendering textured quads using the fixed-function ...
7
votes
2answers
3k views

OpenGL 4.1 vs 3.1+

I understand that OpenGL 4 and 3 are fairly similar. What are the differences, especially, what could be better about an OpenGL 4.1 workflow and feature set compared with OpenGL 3.1+? Additionally, ...
6
votes
4answers
353 views

Learning modern OpenGL

I am aware that there were similar questions in past few years, but after doing some researches I still can't decide where from and what should I learn. I would also like to see your current, actual ...
6
votes
1answer
520 views

glLineStipple deprecated in OpenGL 3.1

glLineStipple has been deprecated in the latest OpenGL APIs. What is it replaced with? If not replaced, how can I get a similar effect? (I don't want to use a compatibility profile of course...)
5
votes
1answer
351 views

Unexplainable behavior when using uniform sampler2d[]

I'm sorry but this will require a little bit of explanation. I'm trying to make it as simple as possible. What I want to do: I'm visualizing height fields. A height field may have multiple patches. A ...
4
votes
1answer
160 views

How to create OpenGL 3.x or 4.x context in Ruby?

I've looked everywhere, but there seam to be no ruby binding that would allow to create OpenGL 3/4 context. It do not have to be complete OpenGL binding library, just portion that creates OpenGL ...
4
votes
1answer
328 views

How can I use OpenGL 4 features through WebGL

I want to use some of the features of OpenGL 4 (specifically, tessellation shaders and newer shader language versions) from WebGL. Is this possible, in either a standards-compliant or a hackish way? ...
3
votes
3answers
376 views

How should modern OpenGL shaders be written so as to be compatible with each other?

In the fancy new versions of OpenGL (3.0 and 4.0 up), built-in vertex attributes like gl_Vertex are being deprecated. The "new way" to actually render anything is to specify your own vertex attributes ...
2
votes
1answer
160 views

How to implement painting (with layer support) in OpenGL?

situation I'm implementing a height field editor, with two views. The main view displays the height field in 3D enabling trackball navigation. The edit view shows the height field as a 2D image. On ...
2
votes
1answer
451 views

Using OpenGL draw_indirect with OpenCL

Edit: Original question was misconceived. Can you use OpenCL to write a tesselation shader for OpenGL 4.0/4.1?
2
votes
2answers
236 views

OpenGL 4.0 GPU Draw Feature?

In Wikipedia and other sources' description of OpenGL 4.0 I read about this feature: Drawing of data generated by OpenGL or external APIs such as OpenCL, without CPU intervention. What is this ...