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.
57
votes
5answers
10k 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 ...
34
votes
5answers
21k 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 ...
32
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 ...
30
votes
2answers
5k 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 ...
29
votes
4answers
15k 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 ?
25
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 ...
24
votes
3answers
5k views
Up-to-date GLSL tutorial? [closed]
I've got a reasonably good shader for doing HSL transformations, but it's all written in old-school GLSL, and from what I've seen apparently a lot of the stuff it does is deprecated in more recent ...
20
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 ...
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 ...
18
votes
2answers
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 ...
18
votes
2answers
9k 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 ...
17
votes
2answers
2k views
Organizing GLSL shaders in OpenGL engine
Which is better ?
To have one shader program with a lot of uniforms specifying
lights to use, or mappings to do (e.g. I need one mesh to be parallax mapped, and another one parallax/specular ...
17
votes
4answers
7k views
Shader IDE suggestion for GLSL or HLSL
Just wondering what you would class as the best IDE for shaders.
I have used RenderMonkey in the past but it is no longer supported by AMD. Had a look and only thing close to it is NVidia's FX ...
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 ...
17
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 ...
16
votes
3answers
1k views
In OpenGL is there a way to get a list of all uniforms & attribs used by a shader program?
I'd like to get a list of all the uniforms & attribs used by a shader program object. glGetAttribLocation() & glGetUniformLocation() can be used to map a string to a location, but what I ...
15
votes
3answers
10k 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 ...
14
votes
3answers
2k views
What is the point of GLSL when there is OpenCL?
Consider this the complete form of the question in the title: Since OpenCL may be the common standard for serious GPU programming in the future (among other devices programming), why not when ...
13
votes
4answers
5k 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 ...
13
votes
3answers
12k views
GLSL: How to get pixel x,y,z world position?
I want to adjust the colors depending on which xyz position they are in the world.
I tried this in my fragment shader:
varying vec4 verpos;
void main(){
vec4 c;
c.x = verpos.x;
c.y = ...
13
votes
2answers
3k views
Tips for efficient GLSL code
Are there any guidelines for writing efficient shaders in GLSL? Does the compiler handle most of the optimization?
13
votes
1answer
2k views
Differences between GLSL and GLSL ES 2
Two questions really...
Is GLSL ES 2 a totally separate language, or a special version of GLSL?
What are the differences between them, in terms of "standard library" functions, syntax and ...
13
votes
3answers
2k views
Using WebGL Shader Language (GLSL) for arbitrary vector mathematics in JavaScript
The WebGL Shader Language (GLSL) is a very powerful tool for multidimensional vector mathematics.
Is there any possibility to use that power from JavaScript (running in web browser) for private ...
13
votes
2answers
3k views
Adding GLSL syntax highlighting to Eclipse
Is there an Eclipse plugin that adds support for GLSL files? I found something old on Google, but I couldn't get it to work.
12
votes
1answer
5k views
Passing a variable to a OpenGL GLSL shader
I'm writing an iPhone app which uses GLSL shaders to preform transformations on textures, but one point that I'm having a little hard time with is passing variables to my GLSL shader.
I've read that ...
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 ...
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 ...
11
votes
3answers
2k views
Proper way to delete GLSL shader?
My code approaches GLSL shader management in the way, that it creates each shader and the associated program and deletes each shader and program. I recently read http://www.opengl.org/wiki/GLSL_Object ...
11
votes
3answers
1k views
How to draw smooth lines in 2D scene with OpenGL without using GL_LINE_SMOOTH?
Since GL_LINE_SMOOTH is not hardware accelerated, nor supported on all GFX cards, how do you draw smooth lines in 2D mode, which would look as good as with GL_LINE_SMOOTH ?
Edit2: My current solution ...
11
votes
3answers
2k views
Is it possible to thicken a quadratic Bézier curve using the GPU only?
I draw lots of quadratic Bézier curves in my OpenGL program. Right now, the curves are one-pixel thin and software-generated, because I'm at a rather early stage, and it is enough to see what works.
...
11
votes
1answer
611 views
What's the origin of this GLSL rand() one-liner?
I've seen this pseudo-random number generator for use in shaders referred to here and there around the web:
float rand(vec2 co){
return fract(sin(dot(co.xy ,vec2(12.9898,78.233))) * 43758.5453);
}
...
10
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 ...
10
votes
3answers
4k views
printf in GLSL?
In C, I can debug code like:
fprintf(stderr, "blah: %f", some_var);
in GLSL ... is there anyway for me to just dump out a value in a Vertex or Fragment shader? I don't care if it's slow; I just ...
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 ...
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 ...
10
votes
2answers
2k views
Why would it be beneficial to have a separate projection matrix, yet combine model and view matrix?
When you are learning 3D programming, you are taught that it's easiest think in terms of 3 transformation matrices:
The Model Matrix. This matrix is individual to every single model and it rotates ...
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:
...
10
votes
1answer
835 views
GLSL specular lighting
When I use my shaders I get following results:
One problem is that specular light is sort of deformed and you could see sphere triangles, another is, that I can see specular where I shouldn't ...
10
votes
2answers
3k views
glUniformMatrix4fv fails with an error code of GL_INVALID_OPERATION [closed]
I'm having some bad luck trying to bind a uniform 4x4 matrix. I'm targeting OpenGL 3.3 with this program, but my environment is OpenGL 4.2. I have a function that simply binds an identity matrix to ...
9
votes
2answers
4k views
openGL GLSL Shader: Draw a Circle on a flat polygon
I'm looking for a way to draw something similar to these "knobs" with an GLSL shader
I only want to draw the coloured circles, and my application is not for a knob rather a funky progress meter. Is ...
9
votes
4answers
4k views
OpenGL: How to render perfect rectangular gradient?
I can render triangular gradient with simply just one triangle and using glColor for each corner.
But how to render perfect rectangular gradient? I tried with one quad, but the middle will get ugly ...
9
votes
2answers
1k views
GLSL major mode for Emacs?
I found this link http://artis.imag.fr/~Xavier.Decoret/resources/glsl-mode/, but there isn't a lot of description around it, aside that it's "simple".
Ideally, I'd like an extension to CcMode that ...
9
votes
4answers
12k 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 )
...
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 ...
9
votes
4answers
1k views
Shader limitations
I've been tuning my game's renderer for my laptop, which has a Radeon HD 3850. This chip has a decent amount of processing power, but rather limited memory bandwidth, so I've been trying to move more ...
9
votes
2answers
4k views
How to get a “Glow” shader effect in OpenGL ES 2.0?
I'm writing a 3D app for iOS. I'm new to OpenGL ES 2.0, so I'm still getting myself around writing basic shaders.
I really need to implement a "Glow" effect on some of my models, based on the ...
9
votes
2answers
936 views
Known bugs in OpenGL 3, OpenGL 4 implementations
As we all get to know eventually, the specification is one thing and the implementation is another. Most of bugs we cause ourselves, but sometimes that's not the case.
I believe it'd be useful to ...
9
votes
1answer
5k views
Generic GLSL Lighting Shader
Pixel based lighting is a common issue in many OpenGL applications, as the standard OpenGL lighting has very poor quality.
I want to use a GLSL program to have per-pixel based lighting in my OpenGL ...
8
votes
3answers
8k views
OpenGL ES 2.0 Shader best practices
I've been searching for examples of shaders in OpenGL and I've seen some varying styles. Some shaders specifically use the built in types (ie. gl_Vertex) to transfer data to and from the application ...
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 ...