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

1
vote
1answer
67 views

Retrieving properties of shader storage buffer

I want to retrieve some properties of a shader storage buffer: struct A{ float x; float y; vec4 v; }; struct B{ vec3 u; }; layout(std430) buffer foo{ B b; A a[]; }; Let's ...
0
votes
0answers
49 views

how to move the vertex transform to vertex shader

I need your help! I am trying to move the vertex transform part from the cpu code to the vertex shader, here's the cpp code of the vertex transform: //calculate the transform matrix of a refelcting ...
2
votes
2answers
85 views

GLSL optimization for packed layout type

I am trying to simulate something like polymorphism in GLSL with nested structs. struct Primitve{ Sphere s; Plane p; Triangle t; int type; }; The integer type specifies what this ...
3
votes
4answers
143 views

Does GLSL really do unnecessary computations with uniform (not per-vertex) values?

For example, if I use vertex shader like the following: #version 400 core uniform mat4 projM; uniform mat4 viewM; uniform mat4 modelM; in vec4 in_Position; out vec4 pass_position_model; void ...
0
votes
2answers
84 views

Is it valid to draw with an empty shader program?

In my game there is a render module that handles shaders, framebuffers and drawing. Now I want to encapsulate the logic of these three tasks separately. The idea is that I split up the render module ...
0
votes
0answers
237 views

iPhone OpenGL ES 2.0 GLSL Multi-pass blur shader fps issue

I am trying to implement blur effect on a 2d game using shaders. The problem is that when I try to do gaussian blur in 2 passes the fps falls down to somewhere near 10! I've already tried to make the ...
0
votes
2answers
169 views

Writing to gl_FragColor causes glUseProgram to throw GL_INVALID_OPERATION

I'm trying to write a blur filter in GLSL ES 2.0 and I'm getting an Error with the line assigning gl_FragColor. I've not been able to figure out why #extension GL_OES_EGL_image_external : require ...
1
vote
1answer
40 views

Transform light worldspace coordinates to eyespace coordinates

I am attempting to model a spotlight in a scene for an introduction to graphics class. The assignment specifies that I must do everything in modernGL, therefore I can't use anything from legacy. I ...
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.
2
votes
1answer
64 views

Opengl shader: don't interpolate color

I'm trying out a really basic OpenGl example: rendering a single triangle. The triangle has three points and three different colors. Now OpenGl blends those colors together to create a gradient-like ...
1
vote
1answer
73 views

OpenGL GLSL, stuck viewing pyramid from “behind”

It appears that my pyramid is smaller in the front and bigger in the back. -(void)drawRect:(NSRect)dirtyRect { // get the dimensions of the window NSSize dim = [self frame].size; // ...
1
vote
1answer
92 views

Can a VBO be bound to multiple VAOs?

I'm trying to render a model's UV map by treating its texture coordinates as an array of vertex positions. I set up a VAO for the model which renders perfectly, then tried adding a second VAO and ...
0
votes
0answers
112 views

GLSL texcoords interpolating unevenly on OSX with OpenGL 3.2/GLSL 1.5

I'm trying to implement a bicubic interpolation shader in OpenGL 3.2/GLSL 1.5. I've tried this on a 2011 15" MBP running OSX 10.7 and a 2013 27" iMac running OSX 10.8 and both have a similar issue. ...
0
votes
0answers
85 views

GLSL Uniforms are not getting defined

I was designing a shader for multi-lights, and a function that handles the light creation. The lights are saved inside a struct uniform array and the quantity of lights in an int uniform called ...
0
votes
1answer
220 views

OpenGL 3.3 multitexture: GL_TEXTURE1 and following are always black (Only GL_TEXTURE0 works fine)

Every texture after GL_TEXTURE0 (texture on slot 0) is black. Fragment shader (sample code to check different textures by changing weights): #version 330 uniform sampler2D g_ColorTex; uniform ...
4
votes
1answer
188 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 ...
2
votes
2answers
154 views

Working around gl_PointSize limitations in three.js / webGL

I'm using three.js to create an interactive data visualisation. This visualisation involves rendering 68000 nodes, where each different node has a different size and color. Initially I tried to do ...
0
votes
1answer
104 views

Modern GLSL basics

I'm trying to learn the modern GLSL but i cant even display my a cube... This is how i create VBO: glBindBuffer(GL_ARRAY_BUFFER, vboVertexHandle); glBufferData(GL_ARRAY_BUFFER, vertexData, ...
0
votes
1answer
66 views

Setting shininess for glsl

How do i set opengl shininess float, so i can use it in a shader program with gl_FrontMaterial.shininess? I tried this glMaterialf(GL_FRONT_AND_BACK, GL_SHININESS, 100f);, but the highlights are not ...
2
votes
1answer
96 views

OpenGL / GLSL line trails

I'm trying to draw a line, and then have a trail that fades behind it as it moves. Think of the "Curves and Colors" screensaver from Windows 98. It's kind of a really simple-looking motion blur shader ...
0
votes
1answer
245 views

THREE.js blur the frame buffer

I need to blur the frame buffer and I don't know how to get the frame buffer using THREE.js. I want to blur the whole frame buffer rather than blur each textures in the scene. So I guess I should ...
1
vote
1answer
121 views

Texture mapping of non-rectangle textures - how to get the color of a specific texel

I'm trying to convert a shader wich is written using GLSL version 120 into OpenGl ES 2.0 and I came to a problem on how to map this shader correctly. On the original shader, I'm using texture2DRect ...
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 ...
0
votes
2answers
106 views

How to create billboard matrix in glm

How to create a billboard translation matrix from a point in space using glm?
0
votes
1answer
104 views

GLSL Weird Error When Compiling Shader (structs)

I have a fragment shader, it has structs and a uniform of those structs. When I tried to compile them, OpenGL gave me this error: 0(30) : error C0000: syntax error, unexpected identifier, expecting ...
1
vote
0answers
138 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 * ...
0
votes
1answer
122 views

cube map implementation using GLSL

i currently work with some shader codes, but some of them makes me confused. it used incoming gl_vertex to calculate out eyevector,then refelect vector.finally pass to frag shader. in pass of frag ...
3
votes
1answer
99 views

Normal Mapping problems

I've followed many online tutorials for normal mapping, and have gotten it working, to a degree... I cannot seem to make it work properly unless the polygon is perpendicular to the view vector. I ...
0
votes
0answers
42 views

CAMShift or other tracking algorithm with GLSL

I'm working with GPUImage framework on iOS for create an application that track multiple objects. Actually I get an image mask where all object that I need to track are white, but I don't understand ...
0
votes
1answer
137 views

Getting a texture output from GLSL shader to opengl

I have a GLSL shader that compares two masks, and colours the pixel with the image of the highest value. I want to output that to a texture that stores at each pixel the highest mask for example I ...
1
vote
2answers
104 views

GLSL Point Light Transformation

I wrote a basic vertex shader in GLSL. Here is the source code: varying float intensity; uniform vec4 lightPos; void main() { intensity = 0.1; vec3 tfVert = ...
6
votes
1answer
136 views

What are shadow samplers in OpenGL and what are possible uses for them?

I have been working with this ES extension for a while, but I still don't quite get what these shadows samplers are and what one could use them for. Googling didn't really get me any nice, readable ...
0
votes
1answer
101 views

Multiply a vec3 by modelview matrix

I have a 3D coordinate I want to transform by the modelVeiw matrix to get into view space in a GLSL shader. The point is defined in the shader, and is not affected by OpenGL's transformations. Is ...
1
vote
1answer
156 views

THREE.js repeat wrapping texture in shader

I want to repeat wrapping texture in THREE.js shader. The original texture image is: I want it to repeat 4x4 times which will looks like: But with the following code, it turns out to be: ...
1
vote
2answers
150 views

Passing in matrix to glsl shader

So if a given mesh comes with a given matrix transformation and I want to use that transformation in my vertex shader, how do I use it once it's already passed in. Let's call it "myMatrix". So what ...
0
votes
1answer
113 views

'out can't be used with non-varying' shader compile error on Nvidia driver, Intel works fine, AMD has another error

I tried to run a simple OpenGL 3 app with the following vertex shader program:- in vec4 vPosition; out vec2 otexcoord; uniform mat4 modelview; uniform mat4 projection; void main() { gl_Position ...
2
votes
3answers
49 views

Is automatic vertex attribute assignment guaranteed to be in the correct order?

When specifying the vertex attribute location in the shader code using layout(location = ...) I do not need to fetch the locations using glGetAttribLocation in my C++ program. If I neither define the ...
3
votes
1answer
87 views

Double sided transparent shader looks buggy

I have made a little test that allows you to experiment with shaders in a 3D environment using three.js. There's a sphere in the scene that shows the shader. The demo shader I have created is a very ...
0
votes
2answers
313 views

Drawing Textures Using OpenGL ES2.0 (or how to use GPU for YUV -> RGB)

I'm trying to use OpenGL for the first time under iOS in an attempt to render a stream of YUV images by converting them to RGB. I've looked around and found some examples here and there, and I'm ...
1
vote
1answer
27 views

Constant for that access sampler

I have the following GLSL code: for( int i=0; i<3; ++i ) { finalColor += texture2D(myTextures[i],uv); } My opengl driver gives me the following output: "error: sampler arrays indexed with ...
0
votes
1answer
48 views

How to store texture uniforms in the state of the program?

I already learned that uniform values are stored in the state of the shader program. // GLSL code uniform mat4 projection; // C++ code GLuint location = glGetUniformLocation(program, "projection"); ...
0
votes
0answers
41 views

Understanding implementation dependant limits

My question is close to this one What is the actual number of vertex uniform components for GLSL shader on ATI graphics card? In his case, he had a GL_MAX_VERTEX_UNIFORM_COMPONENTS of 4096 he was ...
1
vote
1answer
134 views

How much work should be done in shaders in opengl? [closed]

Should I avoid doing excess calculations in the shaders in opengl? For example: Things that need to be calculated every frame such as lighting. Should I do the calculations then send the results to ...
0
votes
1answer
73 views

Sampler 2D Alpha Value Stays at 1

I create a texture for use in a 2D sampler as a displacement map for a mesh of tessellated terrain. Using the passed in vertex coordinates, I have a smooth interpolated value of the patch corners for ...
0
votes
0answers
137 views

cannot pass uniform float array to fragment shader

I'm trying to pass an array to a fragment shader: //c++ code float filter[9] = {-1.0f,-1.0f,-1.0f, -1.0f,9.0f,-1.0f, -1.0f,-1.0f,-1.0f}; glUniform1fv(glGetUniformLocation(imageShaderId, ...
0
votes
2answers
320 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 ...
0
votes
0answers
56 views

glsl vertex shader compiles on pc, mac and not on another pc

So, I have a PC with an nvidia geforce gtx 580, a mac with some ATI card and then a notebook with a geforce gtx 680M. The vertex shader compiles on the 580 and the ATI, but not on the gtx 680M. The ...
2
votes
2answers
95 views

Removing strings from the stack in C

I would like to store my GLSL shaders inside of my executable file for neatness, would having the string defined inside the function that will load them into shader objects get the strings removed ...
0
votes
1answer
131 views

gl_FragCoord.x, y, z being 1 for all pixels and w being the depth

I'm using THREE.js with shader. I'm trying to get the zbuffer information. Vertex shader: // switch on high precision floats #ifdef GL_ES precision highp float; #endif void main() { gl_Position ...
0
votes
0answers
30 views

GLSL: How to constrain texture() calls to region of interest?

I'd like to constrain our 3D surface shader, which visualizes a voxel volume, to an axis aligned bounding box which specifies a sub-region of the texture. I've replace all the texture3D() calls with ...

1 2 3 4 5 33