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.

learn more… | top users | synonyms

8
votes
0answers
564 views

Does RenderMonkey have a bug in TEXCOORD stream mapping for GLSL?

For clarity, I start with my question: Is it possible to use (in the shader code) the custom attribute name which I set for the TEXCOORD usage in the (OpenGL) stream mapping in RenderMonkey 1.82 or ...
6
votes
0answers
83 views

GLSL uniform only being updated by unrelated calls

I have an extremely basic GLSL program which is failing to properly update a uniform value after the first draw call. No errors are received from glGetError, no errors are reported in the info logs ...
4
votes
0answers
208 views

Strange issue with a multi pass, multi RT render in GLSL

I am seeing a strange issue with a multi pass, multi RT ping-pong render I am using 3 shaders and an FBO, I get no errors at any stage. I am using opengl 4, so I am not using glBegin/glEnd, I use my ...
4
votes
0answers
265 views

Does using XEmbed put restrictions on OpenGL functionality?

I am building an NPAPI plugin for Linux that uses the XEmbed protocol for the window that is controlled by the plugin. I am using Gtk+ for attaching to the window, wrapping the XEmbed window with a ...
3
votes
0answers
458 views

GLSL fragment shader on different video cards

I'm trying to convert a 12-bit YUV frame(YUV420P) to a 24-bit RGB frame with a GLSL shader. On Nvidia video cards it is working, but on ATI video cards it is working too, but works not correct. The ...
3
votes
0answers
308 views

GLSL: Which is more optimal? Ping-ponging with loops on the CPU or loops in the fragment shader?

I have a fragment shader which is doing a for loop with the number of passes passed in as a uniform int variable. uniform int numPasses; void main(void) { for (int i=0; i<numPasses; i=i+1) { ...
2
votes
0answers
113 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 ...
2
votes
0answers
42 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
0answers
84 views

Pyglet, shaders and GLSL layout tag for color attribute

I'm trying to use pyglet and OpenGL 4 style shaders (ie: not using any matrix operations, using (layout=...) etc...) I have a basic vertex shader which is: #version 400 uniform mat4 ...
2
votes
0answers
73 views

iPhone GLSL dynamic branching issue

I am trying to pass an array of vec3 as uniform and then iterate through them on each pixel. The size of array varies on situations so I can't make the loop with constant number of iterations. ...
2
votes
0answers
183 views

GLSL shader in the Blender GE

I am currently trying to achieve a tron like game model in the bge (blender game engine). I believe the only way to do this is with a GLSL shader. I am extremely interesting in learning how to use ...
2
votes
0answers
168 views

Geometry Shader on MacOS

I'm trying to write a simple pass-through geometry shader, but it's not working and I don't really get why. Here's my gs: #version 120 #extension GL_EXT_geometry_shader4 : enable void main(void) { ...
2
votes
0answers
263 views

Adreno GPU - Fragment shader: texture2D in a function causes glLinkProgram to crash

we have a weird problem. A texture2D call is working when used directly but not when used in a function with a return value. The device is a Samsung S3, SPH-L710, Android 4.0.4, Adreno 225. The code ...
2
votes
0answers
392 views

OpenGL/GLSL/GLM - Skybox rotates as if in 3rd person

I have just gotten into implementing skyboxes and am doing so with OpenGL/GLSL and GLM as my math library. I assume the problem is matrix related and I haven't been able to find an implementation that ...
2
votes
0answers
302 views

Geometry shaders and depth FBOs

Are there any special rules regarding rendering to an FBO when there's a geometry shader involved? Context: I'm trying to implement shadow mapping in a scene which includes different types of objects ...
2
votes
0answers
450 views

Compiling a shader and linking fail but verification of the shader succeeds

I'm rather confused about what my shaders are doing. I have a shader class which wraps the opengl parts of the shading for me. I build my application in code::blocks and run it, the compile fase ...
2
votes
0answers
220 views

Panorama (equirectangular) environmental map issue in GLSL

I'm implementing the equirectangular map demo in the OpenGL Orange Book and I've run into a problem. For the most part, the shader seems to work properly, but I'm encountering a couple UV ...
2
votes
0answers
320 views

how do i setup a floating point render targets with libgdx?

as opengl es 2.0 doesn't supports the following extensions: glClampColorARB(GL_CLAMP_VERTEX_COLOR_ARB, GL_FALSE); glClampColorARB(GL_CLAMP_READ_COLOR_ARB, GL_FALSE); ...
2
votes
0answers
761 views

iOS - pass UIImage to shader as texture

I am trying to pass UIImage to GLSL shader. The fragment shader is: varying highp vec2 textureCoordinate; uniform sampler2D inputImageTexture; uniform sampler2D inputImageTexture2; void main() { ...
2
votes
0answers
284 views

GLSL fragment shader garbage value

I have a simple program that just loads a shader and draws a triangle strip. When I use the following fragment shader precision mediump float; varying vec2 v_Position; uniform float u_Intensity; ...
2
votes
0answers
2k views

Texture Projection in GLSL

I'm trying to implement texture projection based directly on this example at oZone3d. My environment is OpenGL ES 2.0 on Android 2.2. Matrix math has never been my strong point and I suspect that ...
2
votes
0answers
916 views

Ogre material scripts; how do I give a technique multiple lod_indexes?

I have an Ogre material script that defines 4 rendering techniques. 1 using GLSL shaders, then 3 others that just use textures of different resolutions. I want to use the GLSL shader unconditionally ...
1
vote
0answers
50 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
0answers
59 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 ...
1
vote
0answers
74 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 ...
1
vote
0answers
74 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); ...
1
vote
0answers
133 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 ...
1
vote
0answers
135 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) { ...
1
vote
0answers
37 views

GLSL (iOS) function parameters not working correctly?

texture color passed to function is not working inside a loop? I am really confused about this, the first code is working, the second is not. does someone has an explanation for this behaviour? By ...
1
vote
0answers
37 views

iPhone GLSL dynamic branching behaviour

I know that branching is not a good idea of writing shaders, but I haven't thought of a way to avoid it. Here is my fragment shader code: precision highp float; varying vec4 v_fragmentColor; ...
1
vote
0answers
35 views

What does the w value of the GL_Positions' vec4 stand for?

Writing some GLSL and noticed the return value in my Vertex shader is a vec4 when Im retuning a x,y,z coordinate. I don't believe it to be alpha, and reading on the web its got something to do with ...
1
vote
0answers
53 views

Using large 3D textures in pyglet

I'm trying to do some GLSL particle stuff with precomputed velocity vector fields. These vector fields are stored as ~13 1024x170 float textures, each corresponding to a different "slice" in the ...
1
vote
0answers
144 views

GLSL 330: down sample texture

I want to down sample an input texture from 800x600 to one quarter itself (200x150 pixel). But if I do that I can see only a little bit of the image. It seems that the frament shader doesn't down ...
1
vote
0answers
127 views

Passing a structure to GLSL as Uniform

Is there a way to pass a custom structures as uniform to GLSL shader? The OpenGL Cookbook shows a way to do it by using the function setUniform('stuff') but this method is not clear to me.
1
vote
0answers
159 views

OpenGL glValidateProgram error on Mac OS X

I am trying to write a simple OpenGL 3.2 (with GLSL 1.5) program using GLUT on Mac OS X (Mountian Lion), but I keep getting error from glValidateProgram: 'Validation Failed: Current draw framebuffer ...
1
vote
0answers
139 views

normal mapping, TBN matrix calculation

I just want to be sure I understand TBN matrix calculation correctly In vertex shader we usually use: vec3 n = normalize(gl_NormalMatrix * gl_Normal); vec3 t = normalize(gl_NormalMatrix * ...
1
vote
0answers
74 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). ...
1
vote
0answers
54 views

Texture coords per element instead of per vertex in GLSL?

I'm trying to figure out programming with GLSL and I'm slightly confused on what I'm supposed to do. I've figured out how to pass a vertex array, an array of texture coordinates (per vertex), an ...
1
vote
0answers
123 views

How to tell VS2010's IntelliSense to ignore .glsl files

I have a C++ VS2010 solution that also has .glsl shader files (I use Visual Studio and the NShader syntax highlighter to edit them). However, in my VS2010's "Error List" window are permanently listed ...
1
vote
0answers
78 views

glTexImage2DMultisample with un-normalized texture-formats

I am having difficulty with rendering multisampled textures with un-normalized internal formats such as GL_RGBA32UI, GL_RGBA32I. Here is my code: width1=height1=32; ...
1
vote
0answers
107 views

Resample image with WebGL

User may upload images via drag'n'drop or select in dialog window. These files may be huge (dimensions and size), so before upload I want to resize with WebGL. Shaders code was taken from this ...
1
vote
0answers
100 views

GLGS: How do I “connect” a sampler to a texture?

I am trying to read from a 3D texture inside a geometry shader: #version 150 layout(points) in; // origo of cell layout(points, max_vertices = 1) out; uniform sampler3D text; void main (void) { ...
1
vote
0answers
258 views

GLSL phong shaders, debugging

I am looking for some help debugging my GLSL phong shading code. Here is my vertex shader: layout(std140) uniform Matrices { mat4 model[1024]; }; layout(location = 0) in vec4 vertexCoord; ...
1
vote
0answers
95 views

libGDX: how to tell if shader log refers to frag or vert shader error

After compiling a ShaderProgram if it doesn't compile I print the log. However, I can't find a way to tell if the error is in the fragment or vertex shader. Here I put an error in the frag shader: ...
1
vote
0answers
333 views

Drawing full screen post process inner glow in GLSL

I am looking for a way to create glowing effect along the screen quad edge(inner glow) in GLSL. I know how to create rectangle procedural in fragment shader and how to blur it out so it glows ...
1
vote
0answers
269 views

glsl fragment shader black screen

i try to create a wall that has two colors: top 0.8, 0.8, 1, and bottom 0.4, 0.4, 0.8 and the rest of it i want to interpolate those two colors. i have these fragment shader and vertex shader: ...
1
vote
0answers
238 views

webgl glsl emulate texture3d

I'm porting a piece of opengl to webgl and i'm trying to emulate texture3d. Somehow something is going wrong. No interpolation is needed because it is only used for calculations. I'm not sure about ...
1
vote
0answers
137 views

glsl ray casting transparency isuue

i'm trying to implement ray casting of 3D volume and i've implemented it based on the code obtained from link . But i made a change on what i'm passing to the fragment shader. I passed the back face ...
1
vote
0answers
107 views

GLSL imageStore slower on uimageBuffer than on uimage2D?

I have a #version 420 GLSL vertex shader that writes to a texel (always the same one) of an uimage using the imageStore function. (In the actual release version, I use more than one texel, so this ...
1
vote
0answers
175 views

Projective Texture Mapping

I am trying to project a image as a spotlight from my light source. So far, my fragment shader looks like uniform sampler2D image; varying vec4 projCoord; void main() { gl_FragColor = ...

1 2 3 4 5 6