-4
votes
1answer
99 views

What's the complexity, given current technology, of writing a decent scene renderer in OpenGL? [closed]

What's the complexity, given current technology, of writing a scene renderer that produces reasonably high-quality output in OpenGL? I'm definitely not asking about writing a full games engine - ...
2
votes
1answer
57 views

Precomputing SSAO causes driver timeout

I was trying to do a pre-calculations of an SSAO effect by rendering normals and depth on a cubemap and doing a second ssao pass on each of these faces. The problem is I'm getting a timeout: "the ...
3
votes
1answer
1k views

GLSL if-else statement unexpected behaviour

This question is related to this other one I asked a few days ago. Because I have finally get to the bottom of the issue, I have rather preferred to open a new question with a more detailed ...
3
votes
2answers
402 views

OpenGL behaviour depending on the graphics card?

This is something that never happened to me before. I have an OpenGL code that uses GLSL shaders to texture a 3D model. The code involves a lot of GPU texture processing, blending, etc... I wanted to ...
-3
votes
0answers
283 views

Why OpenGL provided with latest GeForce drivers is so extremely slow?

I'm writting a code in OpenGL and using two computers - an old and a new one. On the old computer (which I use for debugging/creating implementation for the old GL) I have GeForce 5500 FX. Before ...
5
votes
1answer
266 views

How can I test shaders for nVidia on an ATi system?

I and our other devs have ATi graphics cards. However we have encountered that some shaders that compile without warnings on ATi don't compile at all on nVidia. The problems are trivial to fix, but ...