The OpenGL Shading Language (GLSL) is the standard programming language for shaders in OpenGL. There are many versions of the language, with each version corresponding to a version of OpenGL. OpenGL ES 2.0 and above have separate versions of GLSL.
1
vote
1answer
42 views
GLSL geometry value changing when it shouldnt
I'm working with a VERY simple program that is passing an array of points into the programable pipline to draw a cube. I'm trying to set it up so I can change the geometry every frame (based on some ...
1
vote
2answers
492 views
1
vote
1answer
78 views
Vertex shader fails to compile, but no message from Info Log
I'm trying to set up a simple vertex shader. When I compile it, it fails (according to GL_COMPILE_STATUS), but the info log is empty, leaving me nothing to work with from a debugging standpoint.
Here ...
0
votes
0answers
47 views
Multiple frame buffer object, frame rate drop dramatically
Here is the situation:
I use 2 FBOs, 1 for image filtering resolution 640*480, the other for real rendering using filtered images resolution 1024*768. However the framerate is much lower than i ...
1
vote
1answer
80 views
Weird issue with GLSL Radial Blur
Shader used: http://www.gamerendering.com/2008/12/20/radial-blur-filter/
My issue is this: The whole scene only takes up a quarter of the screen space (which is a rectangle of these coordinates: ...
1
vote
1answer
28 views
Does OpenGL (and OpenGL ES) support preprocessor “line continuation” characters?
I've got a macro in my OpenGL ES fragment shader that looks like this:
#define CHECK(x, DELTA, outColor, c1, c2) \
if (x < (delta + (DELTA))) { \
outColor = mix(c1, c2, smoothstep(delta, ...
1
vote
1answer
55 views
OpenGL texture transformations
I'm a beginner to OpenGL and I'd like a simple introduction to using textures. For my application, I have no need of geometry, just some texture manipulation. I want to be able to scale, rotate, and ...
0
votes
2answers
62 views
What is stereoscopic shader?
These days, I am making some shaders such that Phong, Gourard, even Toon Shader in GLSL.
I have a curious question, I want to make a stereoscopic shader which using 2 camera, and left camera takes ...
-3
votes
1answer
104 views
Why am I using opengl glsl to implement skybox, getting something wrong?
I'm currently using glsl to draw a skybox, but final result of my program is not my expect, the six sides of the skybox looks like all sides flipped vertically, then flipped vertically. If I make the ...
1
vote
0answers
76 views
GLSL blank screen
I am getting a blank window (white) for my GLSL shader program. My program compiles fine with a warning level of 4. The only error I am getting is from the shaders are:
Both shaders (vertex and ...
0
votes
1answer
36 views
default uniform (array) values
Rather than explicitly setting uniform data for a GL program, I set 'defaults' in a simple test (fragment) shader with:
uniform vec3 face_rgb[] = vec3[]
(
vec3(0.0, 0.0, 1.0), vec3(0.0, 1.0, ...
1
vote
1answer
96 views
GLSL glass effect plus depth peeling
I'm working on rendering a scene that potentially has multiple intersecting transparent objects. This makes the standard method of sorting and drawing back to front problematic (even sorting triangles ...
0
votes
1answer
148 views
OpenGL rendering does not work correctly with OpenCV using GLSL shaders
I have coded a small OpenGL program using OpenGL and GLSL shaders. Here's a screen of my application :
Now, my objective is to mix my opengl frame and the one from my webcam in a unique frame using ...
3
votes
1answer
134 views
Explanation of dFdx
I am trying to understand the dFdx and dFdy functions in GLSL.
I understand the following:
The derivative is the rate of change
The partial derivative of a function with two parameters is when you ...
3
votes
1answer
74 views
GLSL: Removal of dead code causes visual errors
I've been having a lot of strange problem's while trying to write a raytracer in an opengl shader. I try to determine if the source of the error is myself, and often this is the case, but I've come to ...
2
votes
1answer
51 views
Can't render to texture (anymore)
I implemented a volume rendering demo application a few months ago. Everything worked fine in Windows XP-32bits. I used OpenGL -glew and SFML2.0-rc as a windowing&input library.
Now. I moved to ...
0
votes
1answer
75 views
Shader program to Vertex + Fragment shader
I am studying a tutorial which uses this shader:
struct VSInput
{
vec3 Position;
vec2 TexCoord;
vec3 Normal;
};
interface VSOutput
{
vec3 WorldPos;
vec2 TexCoord;
vec3 Normal;
};
...
0
votes
1answer
101 views
Why is this GLSL shader so slow?
I am trying to do a raytrace on a grid in a fragment shader. I have written the shader below to do this (vertex shader just draws a screenquad).
#version 150
uniform mat4 mInvProj, mInvRot;
uniform ...
2
votes
0answers
145 views
Calculate per Vertex Normals in Geometry Shader after Tesselation
I've succeeded in getting tesselation control and evaluation shaders to work correctly, but the lighting for my scene is still blocky because I've been calculating per (triangle) face normals, instead ...
0
votes
1answer
46 views
AMD 6310 GLSL / FBO copy corrupts first few lowest order bits (but only sometimes)
I'm using OpenGL 2.0 and an FBO to copy some data from an RGBA texture to an RGB texture, and I ran into an issue where sometimes it "corrupts" the first few lowest order bits of some of the pixel ...
0
votes
0answers
45 views
Shadow Map too big
All is OK in the shader map texture, but the is scaled (too big).
The coord texture:
mat4 bias = mat4(0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.5, 0.5, 1.0);
ShadowCoord ...
0
votes
0answers
15 views
Unsigned int literal passed as array index - different behavior?
I have a GLSL vertex shader which accessed a vec4 as an array:
someVec4[3]=[some nonzero value here]
...however when I happened to change the '3' to '3u'...
someVec4[3u]=[some nonzero value here]
...
1
vote
0answers
105 views
Lighting Dual depth peeling
I'm doing Dual depth peeling. I want to ask you, how to properly. I have algorithm like this.
glDisable(GL_DEPTH_TEST);
glEnable(GL_BLEND);
glBindFramebuffer(GL_FRAMEBUFFER, dualDepthFBOID);
...
0
votes
1answer
164 views
Volume ray casting doesn't work fine (Webgl + GLSL + Three.js)
I have tried to make better quality of my volume ray casting algorithm. I have set a smaller step of raycast (quality is better), but it causes problem. It is on pictures below (black areas where they ...
0
votes
1answer
61 views
Removing calls to glGenVertexArrays() results in black screen
So, I previously used vertex array buffers (Core Profile 3.3), setup as follows:
int offset = 0;
glGenVertexArrays(1, &m_vba);
glBindVertexArray(m_vba);
glGenBuffers(1, &m_vbo);
...
0
votes
0answers
36 views
Texture not animating only showing blue quad
I am trying to move my texture coordinates however I am only getting a blue screen for some reason
here is what my quad looks like
I am not really sure what I am doing wrong
I have tried moving the ...
0
votes
0answers
41 views
OpenGL ES 2.0 texture not animating
I was wondering if anyone could help me as I cannot seem to get my texture to animate. I am trying to use my bump map to make a wave like effect.
here is my vertex shader
attribute highp vec3 ...
0
votes
0answers
80 views
Particle System error
Im working in Particle System Class from this tutorial Particles - Anton's OpenGL 4 Wiki - Dr Anton Gerdelan
Code:
//Pixel Shader
// shader to update a particle system based on a simple ...
0
votes
1answer
93 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
152 views
imageStore() doesn't work on AMD hardware (OpenGL 4.2)
I tried this code on Nvidia hardware without any problem but on AMD, the imageStore() function doesn't seem to do anything (No GL error is thrown though, I checked)
Shader:
#extension ...
1
vote
0answers
241 views
Edge detection shader using a color picking texture (OpenGL)
I'm writing a small 3D application where I want to highlight selected objects with colored edges. I render the normal scene into two color attachments using a FBO. The first one contains only the ...
0
votes
0answers
59 views
OpenGL glsl: can't pass data from program to shader
I am writing a program that sends data from a function in a C++ program to a vertex shader. A program ID is passed into the function as follows:
void setUpOrtho(GLuint program) {
glUseProgram( ...
0
votes
1answer
66 views
Trouble Compiling glsl Shader, #version must occur first error
I am following the WikiBooks OpenGL Tutorial # 2
I can't get my shader to compile, it says #version must occur first.
Here is the main.cpp code: ...
1
vote
3answers
170 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
1answer
70 views
0
votes
2answers
38 views
Are there any Debuggers present for glsl?
I am unable to print any statements in glsl files. Is there any debugger for glsl files? As in I spotted something called glslDevil, but I find only broken links for that. Are there any other ...
0
votes
1answer
19 views
Composing the ADS (Phong/Gourang) components
I have the basic shader code below for the Phong lighting model. I've testing the diffuse, ambient and specular lighting and they're producing the correct results. When it comes to composing them on ...
0
votes
1answer
51 views
Opengl Shader Basic Computation
OS: Win7 VS 2012
Graphics Card: Inter HD 4000
I have no problem generating an image without any computation.
However, when I added p*vPosition for a prospective projection,
My window opened and ...
2
votes
0answers
159 views
GLSL - Bump Mapping based on Noise
I am trying to create a stucco texture similar to the image below in an GLSL fragment and vertex shader.
I know there are multiple ways to accomplish this. However, I want to focus on perturbing ...
1
vote
1answer
90 views
OpenGL performance overhead from frequently swapping between two shaders
I have a situation where I have two particular shaders:
The first shader casts shadows from all objects in a scene and renders to a single fullscreen 8 bit shadow texture. The glsl code is very ...
2
votes
0answers
46 views
Can't get subroutine info for specified shader type
I am using separated shader objects programs and now trying to integrate subroutines.
I acquire subroutine indices using glGetSubroutineIndex() .Then I set current subroutine with :
...
2
votes
2answers
87 views
OpenGL Textures are all black in 3.3 - but work in 3.1
I'm currently working on a simple 3D scene in OpenGL3.3, but when trying to texture the objects - all of them are textured entirely black. However, if I change the context version to 3.1; it has no ...
1
vote
2answers
101 views
GLSL shader for each situation
In my game I want to create seperate GLSL shaders for each situation. In example if i would have 3 models character, shiny sword and blury ghost i would like to set renderShader, animationShader and ...
0
votes
1answer
82 views
Why this GLSL code don't work on old Intel card (openGL 2.1)?
As we know, almost all 3D software has an XYZ-axis in the view section. Suppose to draw a coordinate axis like that. Here is my method.
Firstly, there is a function named drawOneAxis() used to draw ...
0
votes
2answers
66 views
Getting the color of the back buffer in GLSL
I am trying to extract the color behind my shader fragment. I have searched around and found various examples of people doing this as such:
vec2 position = ( gl_FragCoord.xy / u_resolution.xy );
vec4 ...
2
votes
1answer
74 views
GLSL How to ensure largest possible float value without overflow
From what I understand, there are no FLT_MAX type constants in GLSL.
Is there any way to ensure that a float represents the largest possible value without overflow?
EDIT:
Since it was asked what ...
0
votes
1answer
84 views
Vertex to Fragment shader: pass vec3 or recalculate every fragment?
In my vertex shader I pass through positions in world space for each vertex. I use a uniform to pass the position of the cameras in world coordinates to the fragment shader. I need both of the values ...
1
vote
1answer
107 views
glsl pass through geometry shader issue
At this point I have a working vertex and fragment shader. If I remove my geometry shader completely, then I get the expected cube with colors at each vertex. But with the geometry shader added, no ...
0
votes
1answer
52 views
What can one do to keep OpenGL up to date?
While trying to create a program in OpenGL using new features it provides, like vertex buffers objects, I eventually ran into a problem: many new functions in OpenGL API are not supported on my ...
1
vote
0answers
192 views
GLSL for-loop array index
I'm having some trouble using variable indices in GLSL.
The folowing GLSL code is working fine on NVidia cards. But its not working on my Intel HD 4000:
for(int i=0;i<int(uLightCount);++i)
{
...


