Tagged Questions
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. GLSL is available on OpenGL ES 2.0 platforms as well.
20
votes
4answers
2k 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 ...
20
votes
4answers
2k 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 ...
15
votes
3answers
3k 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 ...
13
votes
4answers
831 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 ...
12
votes
2answers
5k 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 ...
11
votes
3answers
4k 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 ?
10
votes
3answers
1k 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 ...
10
votes
3answers
2k views
Shader IDE 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 ...
10
votes
1answer
360 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
3answers
564 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.
...
9
votes
1answer
1k 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 ...
9
votes
2answers
1k views
Tips for efficient GLSL code
Are there any guidelines for writing efficient shaders in GLSL? Does the compiler handle most of the optimization?
8
votes
2answers
1k 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 ...
8
votes
2answers
488 views
GLSL branching behaviour
I have a rather simple fragment shader with a branch and I'm a bit unsure how it is handled by the GLSL compiler and how it would affect performance.
uniform sampler2D sampler;
uniform vec2 texSize;
...
8
votes
3answers
1k 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 ...
7
votes
1answer
391 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 ...
7
votes
1answer
173 views
Overview/showcase of shader techniques/uses for games
I am looking for resources that can provide me with a better understanding of what kind of things shaders are used for in games, what they can do, and maybe even more importantly, what they cannot. I ...
7
votes
4answers
984 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 ...
7
votes
3answers
843 views
Up-to-date GLSL tutorial?
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 ...
7
votes
2answers
2k 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 ...
7
votes
4answers
636 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 ...
7
votes
2answers
745 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 ...
6
votes
1answer
168 views
GLSL: Why is const int array so much slower than normal array?
I have an OpenGL shader written in glsl. I have a globally defined array at the top of the header like this:
const int permutations[256] = int[256](
64 , 34 , 36 , 137 , 120 , 122 , 246 , 46 , ...
6
votes
2answers
245 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
1answer
1k views
Need help with 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
3answers
264 views
OpenGL Shading Language Different Types of Variable (Qualifiers)
I've been writing programs using OpenGL. Recently, I started learning OpenGL Shading Language. I'm a newbie; so please be detailed in your answers.
My questions are:
1. What are different types ...
6
votes
4answers
2k views
OpenGL: gl_NormalMatrix
I hava found that "gl_NormalMatrix - 3x3 Matrix representing the inverse transpose model-view matrix". Why matrix for normals must be inverse transpose model-view matrix. Why I cannot use simply ...
6
votes
2answers
2k views
How to calculate Tangent and Binormal?
I'll be as simple as possible and hope the answer is too.
Talking about bump mapping, specular highlight and these kind of things in OpenGL Shading Language (GLSL)
I have:
An array of vertices ...
6
votes
1answer
423 views
State-of-the-art GPU volume rendering
what is the current technique for implementing a GPU based volume renderer in the medical context, i.e. reasonable amounts of image data (512x512x1500 or more at 16bit) and interactive/real-time ...
6
votes
1answer
220 views
Performance Profiling of OpenGL Shaders
Is there a tool available that can do performance profiling of OpenGL shaders?
6
votes
1answer
540 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 ...
5
votes
1answer
162 views
Performance of integer and bitwise operations on GPU
Though GPUs are supposed for use with floating point data types, I'd be interested in how fast can GPU process bitwise operations. These are the fastest possible on CPU, but does GPU emulate bitwise ...
5
votes
2answers
181 views
Ensure GLSL compatibility
How can ensure that GLSL shaders are compatible with most modern cards?
I've got a software where I use GLSL code from here. But even though I've added #version 120 to the beginning of my final ...
5
votes
1answer
101 views
per-fragment lighting coordinate system
I'm developing an OpenGL 2.1 application using shaders and I'm having a problem with my per-fragment lighting. The lighting is correct when my scene initial loads, but as I navigate around the scene, ...
5
votes
1answer
304 views
Unexplainable behavior when using uniform sampler2d[]
I'm sorry but this will require a little bit of explanation. I'm trying to make it as simple as possible.
What I want to do:
I'm visualizing height fields. A height field may have multiple patches. A ...
5
votes
2answers
398 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 ...
5
votes
2answers
704 views
Most efficient method for GLSL edge detection shader
I'm looking for a quick and dirty, very efficient edge detection shader or edge mesh for a video application. Since this will be done on a mobile device, I need something that places performance over ...
5
votes
1answer
583 views
pixel perfect texture mapping with modern OpenGL
After deciding to try programming in modern OpenGL, I've left behind the fixed function pipeline and I'm not entirely sure about getting the same functionality I had before.
I'm trying to texture map ...
5
votes
3answers
744 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 ...
5
votes
2answers
690 views
How should I organize switching between GLSL Shaders in OpenGL engine?
There were many questions in this topic, but I didn't find clear answer anywhere, so I ask:
What seems to be a better idea?
To have a one shader program with a lot of uniforms telling
what type ...
5
votes
2answers
2k 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
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 gl_ModelViewProjectionMatrix ...
5
votes
4answers
9k 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 ...
5
votes
5answers
3k 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 ...
5
votes
1answer
435 views
Stuffed Animal In OpenGL
I have seen metal/plastic/water/fire/... shaders for OpenGL.
However, it it possible to render something fur-like, say a stuffed animal / teddy bear in OpenGL (I know this is possible with renderman ...
5
votes
3answers
1k 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 ...
5
votes
3answers
2k views
What options are there for GLSL shader development on OS X?
Apple's Shader Builder is not terribly advanced. I was wondering if there are any better choices for OS X other than running something under bootcamp.
5
votes
1answer
5k 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 ...
4
votes
3answers
111 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 I glBegin/glEnd for ages and my 3D framework based on OpenGL 2.1.
so, as far as I ...
4
votes
2answers
146 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 ...