Tagged Questions
1
vote
0answers
47 views
Logarithmic depth buffer
I use a logarithmic depth buffer : in my shader I wrote the code describes here :
In the vertex shader :
void main()
{
vec4 vertexPosClip = gl_ModelViewProjectionMatrix * gl_Vertex;
gl_Position ...
1
vote
2answers
93 views
Depth as distance to camera plane in GLSL
I have a pair of GLSL shaders that give me the depth map of the objects in my scene. What I get now is the distance from each pixel to the camera. What I need is to get the distance from the pixel to ...
0
votes
3answers
169 views
How to make a billboard spherical
Following this turorial here
I have managed to create a cylindrical billboard (it utilizes a geometry shader which takes points and produces quads). The problem is that when i move the camera so that ...
0
votes
0answers
119 views
Implementing a LookAt function in the Vertex Shader with OpenGL
For purposes beyond my control, I need to calculate a ModelView Matrix in my vertex shader. I understand this is a bad idea but I don't have a choice right now. Here is the code in my vertex shader. ...
2
votes
2answers
163 views
Strategies for packing data into OpenGL 3D array
I am implementing a voxel raycaster in OpenGL 4.3.0. I have got a basic version going where I store a 256x256x256 voxel data set of float values in a 3D texture of the same dimensions.
However, I ...
4
votes
1answer
183 views
Opengl shader problems - weird light reflection artifacts
I've been wrestling with this for days. I think I've finally narrowed it down to a problem with the per vertex tangents, but I'm not sure the best way to fix it.
Context is iPhone app, opengl es2 ...
0
votes
2answers
302 views
GLSL-based projection/model view makes object invisible
So I am trying to move to a more modern, shader-based rendering system in OpenGL, and part of that, as I understand, is performing the projections that used to be accomplished with the built-in matrix ...
-3
votes
1answer
199 views
Drawing Spheres, Cylinders, etc. with GLSL 3.0+
Are any tutorials for explaining how to draw a cylinder or sphere using the OpenGL Shading Language?
0
votes
1answer
224 views
Why the triangle isn't showing on screen (OpenGL 3.3)?
I've tried all. Following OpenGL tutorials from http://www.opengl-tutorial.org/beginners-tutorials/.
On tutorial 4 it's asked to do a double model on your on. But I can't render the triangle and the ...
2
votes
2answers
187 views
OpenGL Programmable Pipeline Point Lights
Since built-in uniforms such as gl_LightSource are now marked as deprecated in the latest versions of the OpenGL specification, I am currently implementing a basic lighting system (point lights right ...
-1
votes
1answer
209 views
Is it possible to convert/export my 3D model (dae/blend/3ds/…) into GLSL ES 2.0?
Is it possible to export or convert my 3D models into GLSL ES 2.0? Is there any converter or any exporter tool/addon existing for any editor programs like Blender/3DS MAX/Maya that creates GLSL ES 2.0 ...
0
votes
1answer
276 views
Opengl/glsl shader animation and lighting issue
So lately i've took my first serious steps (or at least i think so) into opengl/glsl and shaders in general.
Ive managed to construct and render VBOs, create and compile shaders and also mess with ...
0
votes
1answer
202 views
OpenGl selection and shaders ( for lighting) Crash on certain GPU (mostly ati)
I got a little problem here with opengl selection and shaders.
We are using shaders for phong lighting. The shaders work just fine. But if we use our opengl picking combined with our shaders the app ...
1
vote
1answer
226 views
Drawing procedural lines on top of a texture avoiding aliasing in glsl
My goal is to draw white lines over an asphalt road. Since the properties of the road change, there cannot be just a texture representing both asphalt and white lines.
The current approach is to apply ...
1
vote
0answers
109 views
Optimizing OpenGL: VAOs vs Shader Organization
I'm writing some code that will be drawing a number of 3D models to the screen, ultimately for a sort of 3D world. Each model could have meshes within it that use different shaders for rendering. In ...
6
votes
1answer
227 views
GLSL abs() broken?
I'm making a Gaussian blur shader in GLSL. Since the convolution kernel is symmetrical, I store one half of it. I write:
vec3 glow = vec3(0.0);
for (int i = -WIDTH; i <= WIDTH; i++) {
uint j = ...
5
votes
3answers
652 views
Outline effects in OpenGL
In OpenGL, I can outline objects by drawing the object normally, then drawing it again as a wireframe, using the stencil buffer so the original object is not drawn over. However, this results in ...
1
vote
1answer
386 views
How to get completely rid of shadow acne and erroneous self shadowing?
I'm doing Simple Shadow Mapping and have problems with handling shadow acne and erroneous self shadowing and just can't get rid of it.
I already tried adding a bias to the depth value and rendering ...
0
votes
1answer
698 views
Use octree to organize 3D volume data in GPU
I am now trying to implement Ray Casting Volume Rendering using C++, OpenGL and GLSL (for GPU speeding). In order to get better quality and performance, I want to use octree to organize the 3D medical ...
1
vote
2answers
165 views
Convention of faces in OpenGL cubemapping
What is the convention OpenGL follows for cubemaps?
I followed this convention (found on a website) and used the correspondent GLenum to specify the 6 faces GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT but I ...
3
votes
1answer
165 views
Image Texture vs Color in 3D objects for Android OpenGL ES?
Is there any difference in terms of rendering overhead, if we simply use a color (e.g., green) or load a texture image file (e.g., green.png file) for a 3D object?
Shouldn't the OpenGL ES finally ...
3
votes
1answer
125 views
Optimizing a render-to-texture process
I'm developing a render-to-texture process that involves using several cameras which render an entire scene of geometry. The output of these cameras is then combined and mapped directly to the screen ...
0
votes
1answer
231 views
How to calculate the viewing cone radius (ie. size of a pixel) at a distance in raymarching?
I'm "raymarching distance fields" (proper lingo: sphere-tracing) in GLSL. To implement cone-marching atop of it (and also to minimize the number of raymarching steps regardless of whether ...
1
vote
2answers
669 views
GL_CULL_FACE makes all objects disappear
I am trying to create some simple polygons in openGL3.3. I have 2 types of objects with the following properties :
Object 1 - 10 vertices (listed below, in order) stored in GL_ARRAY_BUFFER and use ...
0
votes
1answer
136 views
Can a shader sample a block/region of pixels in a texture?
Are there ways a shader can query the sum/average of a block of pixels in a texture read, rather than looking up a single value? I'm working in Cg but any examples and search terms are welcome.
I ...
1
vote
1answer
180 views
(How) can a shader view the current render-buffer?
Is it possible for a pixel shader to see the current state of the depth/color/stencil buffer?
0
votes
1answer
338 views
How are non-square matrices used in computer graphics?
Normally, square matrices are used to transform various points. You have a 4D vector which transforms into a 1x4 or 4x1 matrix, which is multiplied by a 4x4 matrix on whichever side works to create a ...
6
votes
1answer
791 views
Blending multiple textures in GLSL
This is long but I promise it's interesting. :)
I'm trying to mimic the appearance of another application's texturing using jMonkeyEngine. I have a list of vertices, and faces (triangles) making up a ...
2
votes
3answers
1k views
Approach for writing a GLSL fragment shader with a solid color per triangle/face
I have vertex and triangle data which contains a color for each triangle (face), not for each vertex. i.e. A single vertex is shared by multiple faces, each face potentially a different color.
How ...
2
votes
3answers
1k views
GLSL Shaders in 3DSMax
So I've looked around, and since I have found no information on the subject, I assume 3DSMax does not support GLSL shaders? Is this correct?
I am using 3DSMax 2010 and 2011, and am sick of writing ...
0
votes
1answer
628 views
opengL: mirror object in glsl shader
is it possible to mirror an object along some axis, just in the vertex shader?
if i simply scale one axis by -1 in the projection matrix, i get bad culling and would need to change the culling from ...
18
votes
2answers
9k views
How to calculate Tangent and Binormal?
Talking about bump mapping, specular highlight and these kind of things in OpenGL Shading Language (GLSL)
I have:
An array of vertices (e.g. {0.2,0.5,0.1, 0.2,0.4,0.5, ...})
An array of normals ...
0
votes
3answers
844 views
Quick question about glColorMask and its work
I want to render depth buffer to do some nice shadow mapping. My drawing code though, consists of many shader switches. If I set glColorMask(0,0,0,0) and leave all shader programs, textures and ...
0
votes
1answer
297 views
Depth render artifacts
I am depth only rendering scene to different frame buffer, the problem is a bit hard to explain but as you can see in the image the depth map it is actually suffering from grid like artifacts. Do you ...
2
votes
6answers
1k views
Where can I learn how to interface with a graphics card using C++?
I'm learning c++ right now and I'd like to start interfacing with a graphics card and play with the basics of 3d graphics. I haven't found it in my book or in internet queries, and I actually have ...
1
vote
2answers
2k views
In OpenGL vertex shader, gl_Position doesn't get homogenized
I was expecting gl_Position to automatically get homogenized (divided by w), but it seems not working.. Why do the followings make different results?
1)
void main() {
vec4 p;
... omitted ...
...
1
vote
2answers
881 views
raycasting: how to properly apply a projection matrix?
I am currently working on some raycasting in GLSL which works fine. Anyways I want to go from orthogonal projection to perspective projection now but I am not sure how to properly do so.
Are there ...
16
votes
3answers
1k views
In OpenGL is there a way to get a list of all uniforms & attribs used by a shader program?
I'd like to get a list of all the uniforms & attribs used by a shader program object. glGetAttribLocation() & glGetUniformLocation() can be used to map a string to a location, but what I ...

