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

32
votes
2answers
6k views

Where can I find sample OpenGL ES 2.0 shaders that perform image processing tasks?

Where can I find OpenGL ES 2.0 shaders that can perform the following image processing tasks? Colorspace transform ( RGB/YUV/HSL/Lab ) Swirling of the image Converting to a sketch Converting to an ...
36
votes
5answers
23k views

Random / noise functions for GLSL

As the GPU driver vendors don't usually bother to implement noiseX in GLSL, I'm looking for a "graphics randomization swiss army knife" utility function set, preferably optimised to use within GPU ...
62
votes
5answers
11k views

What is state-of-the-art for text rendering in OpenGL as of version 4.1?

There are already a number of questions about text rendering in OpenGL, such as: OpenGL live text-rendering But mostly what is discussed is rendering textured quads using the fixed-function ...
31
votes
4answers
6k views

How can I improve the performance of my custom OpenGL ES 2.0 depth texture generation?

I have an open source iOS application that uses custom OpenGL ES 2.0 shaders to display 3-D representations of molecular structures. It does this by using procedurally generated sphere and cylinder ...
19
votes
2answers
10k 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 ...
8
votes
4answers
13k views

Multiple textures in GLSL - only one works

My problem is getting more than one texture accessible in a GLSL shader. Here's what I'm doing: Shader: uniform sampler2D sampler0; uniform sampler2D sampler1; uniform float blend; void main( void ) ...
7
votes
1answer
4k views

volume rendering (using glsl) with ray casting algorithm

I am learning volume rendering using ray casting algorithm. I have found a good demo and tuturial in here. but the problem is that I have a ATI graphic card instead of nVidia which make me can't using ...
5
votes
3answers
424 views

GCC, stringification, and inline GLSL?

I'd like to declare GLSL shader strings inline using macro stringification: #define STRINGIFY(A) #A const GLchar* vert = STRINGIFY( #version 120\n attribute vec2 position; void main() { ...
9
votes
2answers
4k views

How to design a simple GLSL wrapper for shader use

UPDATE: Because I needed something right away, I've created a simple shader wrapper that does the sort of thing I need. You can find it here: ShaderManager on GitHub. Note that it's designed for ...
14
votes
4answers
6k views

GLSL: passing a list of values to fragment shader

I want to send a list of values into a fragment shader. It is a possibly large (couple of thousand items) list of single precision floats. The fragment shader needs random access to this list and I ...
10
votes
2answers
3k views

How to change hue of a texture with GLSL?

Is there a way to efficiently change hue of a 2D OpenGL texture using GLSL (fragment shader)? Do someone have some code for it? UPDATE: This is the code resulting from user1118321 suggestion: ...
5
votes
2answers
3k views

iOS GLSL. Is There A Way To Create An Image Histogram Using a GLSL Shader?

Elsewhere on StackOverflow a question was asked regarding a depthbuffer histogram - Create depth buffer histogram texture with GLSL. I am writing an iOS image-processing app and am intrigued by this ...
10
votes
2answers
4k views

PowerVR SGX535 Shader Performance (OpenGL ES 2.0)

I'm currently working on a couple of shaders for an iPad game and it seems as if Apple's GLSL compiler isn't doing any optimizations (or very few). I can move a single line in a shader and drop my ...
3
votes
2answers
960 views

GLUT on OS/X with OpenGL 3.2 Core Profile

Is it possible to use GLUT on OS/X Lion or OS/X Mountain Lion using core profile (so I can use GLSL 1.50)? Can I use the built in GLUT or do I need to use a third-part library such as FreeGLUT? And ...
1
vote
1answer
1k views

OpenGL shader: a spotlight and a directional light

I want to have two light sources: a directional one and a spotlight. I cannot seem to get what I am doing wrong -- probably not understanding how shaders work! I get the first light fine but no sign ...
0
votes
1answer
414 views

Problem when going from opengl 1.1 to Opengl-es 2.0

this is my opengl-es 2.0 code : { for (surfnum=0;surfnum<surftotal;surfnum++){ for (i=0;i<triNum[surfnum];i++){ GLfloat *Vertices[] = { triArray[surfnum][i].normpt1, ...
26
votes
3answers
11k views

Vertex shader attribute mapping in GLSL

I'm coding a small rendering engine with GLSL shaders: Each Mesh (well, submesh) has a number of vertex streams (eg. position,normal,texture,tangent,etc) into one big VBO and a MaterialID. Each ...
19
votes
3answers
2k views

GLSL multiple shaderprogram VS uniforms switches

I'm working on a shader manager architecture and I have several questions for more advanced people. My current choice oppose two designs which are: 1. Per material shader program => Create one shader ...
6
votes
3answers
4k views

GPGPU programming with OpenGL ES 2.0

I am trying to do some image processing on the GPU, e.g. median, blur, brightness, etc. The general idea is to do something like this framework from GPU Gems 1. I am able to write the GLSL fragment ...
5
votes
2answers
10k views

GLSL for simple water surface effects

I'm looking for some pointers on how to implement simple water surface effects in OpenGL ES 2.0. Nothing fancy like reflection or refraction, just a basic ripple/wave effect that modulates over ...
17
votes
1answer
8k views

In OpenGL ES 2.0 / GLSL, where do you need precision specifiers?

Does the variable that you're stuffing values into dictate what precision you're working with, to the right of the equals sign? For example, is there any difference, of meaning, to the precision ...
7
votes
4answers
5k views

What's the best way to draw a fullscreen quad in OpenGL 3.2?

I'm doing ray casting in the fragment shader. I can think of a couple ways to draw a fullscreen quad for this purpose. Either draw a quad in clip space with the projection matrix set to the identity ...
4
votes
2answers
4k views

HDR, adaptive tone mapping and MSAA in GLSL

In an effort to teach myself OpenGL, I am working my way trough the 5th edition of the Superbible. I am currently trying to figure out how to combine HDR and MSAA (as described in chapter 9). For ...
4
votes
1answer
1k views

Again - parallax mapping issue in OpenGL, GLSL. It's not as usual as it seem to be

And this is result when I invert the tangent vector right after transferring it to vertex shader: The "shadow" is in the wrong place. (And it works only when I rotate it through Y axis so the ...
3
votes
2answers
2k views

Alternative to texelFetch?

I'm getting into GLSL and need some help with texture lookups. I'm trying to use a texture for storage but I cannot get "proper" texture lookups. I would prefer using the usual texture2D method (using ...
1
vote
2answers
215 views

GLSL SpinLock only Mostly Works

I have implemented a depth peeling algorithm using a GLSL spinlock (inspired by this). In the following visualization, notice how overall the depth peeling algorithm functions correctly (first layer ...
6
votes
1answer
412 views

GLSL, semaphores?

I was having previously already the problem that I wanted to blend color values in an image unit by doing something like: vec4 texelCol = imageLoad(myImage, myTexel); imageStore(myImage, myTexel, ...
2
votes
1answer
2k views

Problems converting YV12 to RGB through GLSL

I'm trying to accomplish YV12 to RGB conversion mentioned in this post with GLSL shaders. My application loads a raw YV12 frame from the disk and tries to perform the conversion using GLSL shaders. ...
0
votes
0answers
162 views

On android ,How to implements translucent materials by GLSL?

As 3d software (3dmax, maya) handles the translucent materials such as jade, wax Mostly through coloring shader (material ball).in opengl es 2.0,If I want to achieve the same effect of the ...
0
votes
1answer
141 views

Fragment shader inexplicable bahaviour

I have written a C++ program where I draw a teapot and apply lighting. It is itself simple, but I also use shaders. Simple I'm new with GLSL I just tried a simple fragment shader, but the screen ...
0
votes
1answer
3k views

About converting YUV(YV12) to RGB with GLSL for iOS

I'm trying to convert YUV(YV12) to RGB with GLSL shader. As below step. read a raw YUV(YV12) data from image file filtering Y, Cb and Cr from the raw YUV(YV12) data mapping texture send Fragment ...
0
votes
1answer
160 views

Is there any way we can run fragment shader on non-graphics-card pc?

Is there any way we can run fragment shader on non-graphics-card pc? I don't have graphics card on my machine, I have intel OpenCL sdk, and visual studio 2010 installed.
21
votes
6answers
5k views

Tools for GLSL editing

I'm looking for some kind of tool to work with GLSL. I want to experiment with shaders in the WebGL application, so what I'm looking for is something like RenderMonkey. As far as I know - RenderMonkey ...
15
votes
3answers
11k views

How do you get the modelview and projection matrices in OpenGL?

I am trying to use the OpenGL Shading Language (GLSL) version 1.5 to make vertex and geometry shaders. I have learned that in GLSL version 1.5, the built-in variables like ...
31
votes
4answers
16k views

How to debug a GLSL shader?

I need to debug a GLSL program but I don't know how to output intermediate result. Is it possible to make some debug traces (like with printf) with GLSL ?
11
votes
2answers
7k views

Why does my OpenGL Phong shader behave like a flat shader?

I've been learning OpenGL for the past couple of weeks and I've run into some trouble implementing a Phong shader. It appears to do no interpolation between vertexes despite my use of the smooth ...
8
votes
3answers
3k views

What is the most efficient way to implement a convolution filter within a pixel shader?

Implementing convolution in a pixel shader is somewhat costly as to the very high number of texture fetches. A direct way of implementing a convolution filter is to make N x N lookups per fragment ...
7
votes
1answer
4k views

Textures in OpenGL ES 2.0 for Android

I'm new to OpenGL and I'm teaching myself by making a 2D game for Android with ES 2.0. I am starting off by creating a "Sprite" class that creates a plane and renders a texture to it. To practice, I ...
6
votes
1answer
9k views

Rendering to cube map

According to ARB_geometry_shader4 it is possible to render a scene onto the 6 faces of a cube map with a geometry shader and the cube map attached to a framebuffer object. I want to create a shadow ...
20
votes
3answers
4k views

What is the correct file extension for GLSL shaders?

I'm learning glsl shading and I've come across different file formats. I've seen people giving their vertex and fragment shaders .vert and .frag extensions. But I've also seen .vsh and .fsh ...
19
votes
2answers
6k views

GLSL/C++: Arrays of Uniforms?

I would like to leave OpenGL's lights and make my own. I would like my shaders to allow for a variable number of lights. Can we declare an array of uniforms in GLSL shaders? If so, how would we set ...
12
votes
6answers
9k views

How do I get the current color of a fragment?

I'm trying to wrap my head around shaders in GLSL, and I've found some useful resources and tutorials, but I keep running into a wall for something that ought to be fundamental and trivial: how does ...
10
votes
5answers
18k views

OpenGL ES 2.0 Rendering with a Texture

The iPhone SDK has an example of using ES 2.0 with a set of (Vertex & Fragment) GLSL shaders to render a varying colored box. Is there an example out there on how to render a simple texture using ...
6
votes
3answers
5k views

GLSL Editor program

I'm looking for a GLSL editor program. I did find some by googling, but I wanna know if there are any preferred ones based on user experience. Possible features: Syntax Highlighting ...
12
votes
1answer
4k views

Externally Define Preprocessor Macros in GLSL

GLSL has a full C-style preprocessor. The only thing that does not work is #include. One of the great features is that that you can used #ifdef to comment out functions and thus create one shader that ...
9
votes
1answer
2k views

Mac OS 10.8 supports GLSL 3.30?

I'm following the arcsynthesis tutorials on OpenGL 3.3 using 10.8 Mountain Lion and when building the project it compiles and runs the shaders using GLSL version 3.30, however even in the core profile ...
8
votes
2answers
6k views

What is the precision of highp floats in GLSL ES 2.0 (for iPhone/iPod touch/iPad)?

I have a shader that ideally needs 28 bits of mantissa, though I can use less and degrade performance. How can I determine what the precision of 'highp' is in OpenGL ES? It's probably an FP24, with ...
5
votes
3answers
2k views

Modern OpenGL: VBO, GLM and Matrix Stacks

After searching and reading about Modern OpenGL in order to upgrade my existing project, I'm a bit confused, since my 3D framework based on OpenGL 2.1. so, as far as I learn... We need to generate ...
4
votes
1answer
381 views

Calculate clipspace.w from clipspace.xyz and (inv) projection matrix

I'm using a logarithmic depth algorithmic which results in someFunc(clipspace.z) being written to the depth buffer and no implicit perspective divide. I'm doing RTT / postprocessing so later on in a ...
2
votes
2answers
1k views

Create depth buffer histogram texture with GLSL

I'm using the depth buffer of the current context to influence a texture I am displaying. The texture is 1 dimensional and in grayscale. From left to right represents from near to far. The more pixels ...

1 2 3