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
0answers
63 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 ...
0
votes
1answer
52 views

GLSL Support on VMware Player

I managed to install OpenGL driver on a VMware ubuntu guest using the methods described here. I'm wondering with this method will provide GLSL support under this VM, and if yes, where can I get the ...
0
votes
1answer
72 views

Rendering to a texture using the image API (no Framebuffer)

As an experiment I decided to try rendering to a texture using the image API exclusively. At first the results were obviously wrong as the texture write occurred before the depth test. So I enabled ...
2
votes
2answers
139 views

ThreeJS predefined shader uniforms

I can't find this info, although I'm sure it's written down somewhere. So I apologize if this has been asked before or if it's a stupid question. I have started with ThreeJS's WebGL renderer after ...
0
votes
0answers
70 views

trying to re-create a new GLSL progam fails after first program failed

I'm trying to use two different shaders on android depending on the shader language version and API version. My idea is to try to compile first the more efficient shader which requires dynamic ...
2
votes
1answer
166 views

Using shaders to implement field of view on a 2D enviroment

I'm implementing dynamic field of view. I decided to use shaders in order to make the illumination better looking and how it affects the walls. Here is the scenario I'm working on: ...
1
vote
1answer
36 views

How to Make Large Matrix Multiply

I'm trying to make an GLSL shader that multiplies a 90x10 matrix with an 10x1 one. The 90x1 result corresponds to the xyz values of 30 vertices. The first large matrix is only loaded at startup. The ...
1
vote
1answer
79 views

Geometry Shader Additional Primitives

I wanted to use a GLSL geometry shader to look at a line strip and determine the place to put a textured annotation, taking into account the current ModelView. It seems I'm limited to only getting 4 ...
0
votes
2answers
130 views

Per vertex lighting problems in opengl 4

I have a model made of cubes with 8 vertices only, and I am having issues with per vertex directional lighting. Instead of the entire model being lit at once, each cube seems to be lit separately ...
0
votes
1answer
80 views

what is space the light calculating belong to in opengl?

last week,i've saw one shader script,which does deferred shading .but i was confused by some transform the vertex shader does.such as the following: vert: varying vec3 normals; varying vec4 ...
0
votes
2answers
60 views

Anyone knows what coordinates this GLSL function would produce?

I am trying to experiment with pixel shaders in WPF, and I want to try out this code: -1.0 + 2.0 * gl_FragCoord.xy / resolution.xy But I am not sure what range of values that would produce. I am ...
0
votes
1answer
208 views

OpenGL problems while compiling

I'm trying to compile a sample from a project, the following code is the makefile: CC = g++ ifeq ($(shell sw_vers 2>/dev/null | grep Mac | awk '{ print $$2}'),Mac) CFLAGS = -g ...
0
votes
0answers
66 views

Program linking error without log message on intel driver

Note: I will first spit out specifically my issue and then I will explain better my scenario. On my windows, using my intel driver. I can compile these two (respectively vertex and fragment shader), ...
1
vote
1answer
90 views

OpenGL Getting Shader Attached to Program

Is there a way to access the shaders attached to a program? That is, given a program, can I do something like: vertexShader = getVertexShaderFromProgram(program); (I would like to log shader ...
2
votes
1answer
289 views

GLSL calculating color vector from multiple lights

I'm using my own (not opengl built in) light. This is my fragment shader program: #version 330 in vec4 vertexPosition; in vec3 surfaceNormal; in vec2 textureCoordinate; in vec3 eyeVecNormal; out ...
0
votes
0answers
131 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. ...
1
vote
0answers
181 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 ...
2
votes
1answer
107 views

Alternative to glMultiDrawArrays when using uniform stride?

Background: I am developing an application that essentially draws a huge 3D graph of nodes and edges. The nodes are drawn as instanced cubes while the edges are drawn with GL_LINE and expanded with a ...
0
votes
0answers
91 views

Algorithmic Woodgrain GLSL

I am trying to write and algorithm to shade an object to look like wood grain. I have been following the OpenGL 4.0 Cookbook to accomplish this. I have drawn the object on screen but I have a bug ...
2
votes
2answers
190 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 ...
1
vote
1answer
85 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
50 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
94 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
156 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
88 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
264 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
216 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
43 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
175 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
71 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
82 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
115 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
128 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
97 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
313 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
219 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
204 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
116 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
87 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
115 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
349 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
155 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
186 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
140 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
139 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 ...
2
votes
0answers
169 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
150 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
116 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
47 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
154 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 3 4 5 6 7 34