OpenGL 4 is the current iteration of the OpenGL standard, designed to reflect newest capabilities of modern GPU in 3D rendering. OpenGL 4 requires DX11 level hardware.

learn more… | top users | synonyms

-1
votes
1answer
23 views

OpenGL Learning advice on a project built on open gl 2.0

I started working on a project that is built on opengl 2.0. But I do not know anything about OpenGL and I search and found latest version is OpenGL 4.3 My question is to work on the project I have to ...
0
votes
0answers
31 views

Setup OpenGL 4 build / unittest server?

I'm trying to find a solution to setting up an OpenGL build server. My preference would be to have a virtual or cloud server, but as far as I can see those only go up to 3.0/3.1 using software ...
0
votes
1answer
71 views

Why is there just garbage data in texture layers beyond 2048?

I am trying to use a texture_2d_array with up to 8192 layers. But all layers after the 2048th just contain garbage data (tested by mapping the individual layers on a quad to visualize the texture). ...
0
votes
1answer
24 views

Updating OpenGL mipmapped texture

There is something I fail to understand completely about texture update in OpenGL.Let's say I create OpenGL texture with mipmaps like this: ///.. tex gen and bind here .... /// ...
0
votes
0answers
10 views

What happens in OpenGL 3.x+ if I don't specify a shader

I'm working with the new core OpenGL 4, so I'm using VAO exclusively and Vertex and Fragment Shaders. But, What if I don't specify any shader at all, Does the system provide a default shader? e.g. a ...
0
votes
1answer
83 views

Installing OpenGL 4.0 on OSX

I wanted to know if there is any possible way to update to the latest version of OpenGL on OSX. Is there any way to run programs that make use of OpenGL 4.0 calls on OSX?
0
votes
1answer
43 views

OpenGL separate program stages

I am exploring the relatively new feature GL_ARB_separate_program_object.What I understand is I have to create a pipeline object which should contain shaders from stages which are mapped to there via ...
0
votes
1answer
64 views

Rendering to a texture using the image API (no Framebuffer)

As an experiment I decided to try rendering to a texture using the image API exclusively. At first the results were obviously wrong as the texture write occurred before the depth test. So I enabled ...
0
votes
2answers
118 views

Is glTexStorage2D imperative when auto generating mipmaps

I do update to a texture2D in OpenGL 4.0 using gltexSubImage2D().The texture has mipmaps auto generated using glGenerateMipmap(GL_TEXTURE_2D); My texture update was failing till I understood I ...
0
votes
0answers
135 views

CUDA OpenGL interop post-processing sample issues

I am learning how to do CUDA -OpenGL interop using CUDA SDK "PostProcessing" demo. While the sample works fine I can't get it working in my engine.I am really lost ,I get no errors neither from CUDA ...
0
votes
0answers
88 views

OpenGL Image Load-Store Atomics Applications [closed]

So, I've been spending the last couple months or so getting familiarized with the latest OpenGL 4 features when I find myself with free time. (Things like transform feedback, tessellation, compute ...
1
vote
0answers
72 views

glGenerateMipmap and 1.#QNAN

I implement HDR in my graphics engine (deferred rendering) and I need to calculate an average luminance of the image (RGBA16F). I generate mipmaps and then I read the smallest mipmap (1x1). ...
6
votes
3answers
153 views

Performance gain using interleaved attribute arrays in OpenGL4.0

I work with OpenGL4.X .Recently I read this Apple OpenGLES2 doc where it is stated that using interleaved attribute arrays improves performance on IOS mobile devices and is the recommended way ...
0
votes
1answer
125 views

nvidia OpenGL extension not available even with a compatible graphics card and updated driver

I have a 440 GT Nvidia card. I need support for opengl 4.3 which contains a new GL_NV_bindless_texture extension that i need to use. I upgraded my driver and, as it says, OpenGl 4.3 would be ...
0
votes
1answer
80 views

OpenGL Window Error [closed]

I'm trying to create a simple OpenGL window in C, but I'm having problems with the window itself. A window is created, and then it suddenly disappears. I fixed this by zeroing "msg" but then the ...
1
vote
1answer
82 views

Passing RGBA32F texture to a shader as R32F for imageAtomic operations and accessing components

Is it possible to pass a 3D RGBA32F texture to shader as a type that is compatible with the imageAtomic operations (i.e. R32F), and then modifying somehow the ivec3 index such that the appropriate ...
0
votes
1answer
113 views

simple triangle won't draw in opengl 4.3

I'm trying my hand at opengl programming, loaded up a default example in codeblocks, and after doing a whole lot of function pointer loading, I got myself an opengl 4.3 context in a window which can ...
0
votes
2answers
218 views

Does an immutable texture need a GL_TEXTURE_MAX_LEVEL?

When allocating textures using glTexImage* functions, I know that I need to set glTexParameteri(GL_TEXTURE_MAX_LEVEL) to a reasonable value and specify all the levels up to that value, as described ...
0
votes
1answer
285 views

how glGenerateMipmap works?

I call glTexImage2D with a parameter level = 0. Then I call glGenerateMipmap(GL_TEXTURE_2D). What happens with GL_TEXTURE_BASE_LEVEL and GL_TEXTURE_MAX_LEVEL ? I assume that they are automatically set ...
1
vote
2answers
973 views

OpenGL Game Programming in C++ [closed]

I'm trying to learn OpenGL 3.3+ to do some simple game. There are some tutorial that illustrate how OpenGL Pipeling work but none of this show how to apply this things in a real game. I don't wont ...
0
votes
0answers
191 views

OpenGL 4. X Error of failed request: BadAlloc (insufficient resources for operation)

I have a one problem when I try compile a program in OpenGL 4. The trouble is the next: X Error of failed request: BadAlloc (insufficient resources for operation) Major opcode of failed request: ...
6
votes
1answer
549 views

How do I make this simple OpenGL code (works in a “lenient” 3.3 and 4.2 profile) work in a strict 3.2 and 4.2 core profile?

I had some 3D code that I noticed wouldn't render in a strict core profile but fine in a "normal" (not explicitly requested-as-core-only) profile context. To isolate the issue, I have written the ...
0
votes
1answer
412 views

deferred shading and background color

I implemented a simplified deferred shading (I don't calculate boundaries for point lights) where after filling g-buffer I just use a full screen quad for compute lighting. I use blending ( ...
0
votes
1answer
143 views

stencil buffer - understanding glStencilFuncSeparate

An example code looks like this: glEnable(GL_STENCIL_TEST); glClearStencil(2); glClear(GL_STENCIL_BUFFER_BIT); glStencilFuncSeparate(GL_FRONT, GL_NOTEQUAL, 0, 1); object.draw(); ...
1
vote
1answer
236 views

Obtaining a unique buffer index for multiple threads accessing a voxel

I'm trying to implement a portion of "Octree-Based Sparse Voxelization for Real-Time Global Illumination". Basically just the voxelization, which I am already done with. And the "Voxel-fragment ...
0
votes
0answers
258 views

Failure to write to texture as GL_R32UI using imageStore

I have a 3D texture with an internal format of GL_R32UI, writing to it works fine as long as I pretend its a floating point texture. That is if I bind it as layout(binding = 0) uniform image3D ...
0
votes
1answer
484 views

glBlendFunc and glClearColor alpha parameter

In OpenGL for achieving a proper transparency effect I should use glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) but with that blending function an alpha parameter in glClearColor becomes ...
0
votes
1answer
97 views

Fatal Error recompiling shaders using the Image api

I'm getting the error fatal error C9999: *** exception during compilation *** Whenever I try to recompile a GLSL shader that uses Image api for texture writes, for example layout(binding = 0) ...
3
votes
2answers
404 views

What about NURBS and opengl 4.2 core?

NURBS chapter in RedBook is denoted deprecated, including utility library: "Even though some of this functionality is part of the GLU library, it relies on functionality that has been removed from the ...
3
votes
2answers
649 views

eye-space pixel width in GLSL vertex shader

I want to compute the eye-space width of a pixel's projected pyramid at the current vertex location in a glsl vertex shader, but I can't seem to get the math right. Here is an obviously incorrect ...
1
vote
1answer
350 views

glsl double-precision vertex buffer

If I create a double-precision vertex buffer, for example: GLuint vertBuffer, spanBuffer, spanCount, patchSize, program; // already setup glUseProgram (program); glEnableClientState ...
0
votes
1answer
272 views

OpenGL 4.2 headers, Mesa 3D, extensions - how does it fit together?

Now, I've had an extremely hard time finding information about OpenGL headers and extensions and how to access the latest features. OpenGL.org doesn't touch upon any of this, neither does Mesa ...
0
votes
2answers
157 views

per fragment lighting and window to camera transforms

I implemented a per fragment lighting and light attenuation using a window to camera transforms: vec4 ndcPos; ndcPos.xy = ((gl_FragCoord.xy / windowSize.xy) * 2.0) - 1.0; ndcPos.z = (2.0 * ...
0
votes
1answer
429 views

light calculations in modelspace

I have a working per fragment lighting but I wonder what can I do to keep a lighting calculation in the modelspace where I don't have to multiply normals by normalModelMatrix as below in the fragment ...
1
vote
2answers
524 views

(OpenGL 3.1 - 4.2) Dynamic Uniform Arrays?

Lets say I have 2 species such as humans and ponies. They have different skeletal systems so the uniform bone array will have to be different for each species. Do I have to implement two separate ...
1
vote
1answer
98 views

(OpenGL 3.1 - 4.2) Objects take up all of the screen space

From what I know, everything about OpenGL changed since 3.1 and now I can't figure out how to re-size the rendering context. float positionData[] = { -0.8f, -0.8f, 0.0f, ...
0
votes
2answers
801 views

Opengl: Use single channel texture as alpha channel to display text

What I'm trying to do is load a texture into hardware from a single channel data array and use it's alpha channel to draw text onto an object. I am using opengl 4. If I try to do this using a 4 ...
17
votes
5answers
5k 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 ...
4
votes
1answer
642 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 ...
2
votes
1answer
289 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 ...
4
votes
1answer
864 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 ...
11
votes
1answer
2k 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...)
4
votes
1answer
513 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? ...
57
votes
5answers
10k 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 ...
3
votes
1answer
747 views

Using OpenGL draw_indirect with OpenCL

I don't quite have a 100% clear picture how the Draw Instanced/Draw Indirect family of functions all the way down to glDrawElementsInstancedBaseVertexBaseInstance work together. Using OpenGL 4.0+ ...
2
votes
3answers
473 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 ...
7
votes
2answers
6k views

OpenGL 4.1 vs 3.1+ [closed]

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, ...
5
votes
3answers
770 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 ...
36
votes
11answers
14k views

OpenGL 4.x learning resources [closed]

I know there are some question about learning OpenGL. Here is what I know: math for 3D 3D theory Here is what I want to know: - OpenGL 4.0 Core profile (or latter) - Shader Language 400 (or ...