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

0
votes
0answers
19 views

OpenGLES 2.0 mod function returning incorrect values on iphone

I am compositing many video frames into a single draw call, on iphone5 with a 352x288 video frame, I can store 154 video frames into a single GL texture. I store the video frames into a 11x14 grid ...
0
votes
0answers
13 views

Bind SDL2 texture to GLSL shader

I'm trying to bind a sdl2 texture to a glsl shader though I'm not entirely sure how? I'm using a library called glfx to handle the glsl shaders and I've been helping with the development of this ...
0
votes
0answers
13 views

QT glsl different fshaders for different textures

I use glsl to transform a colored texture into a black and white and e.t.c. The program draws two textures. After the drawn first, I need to disable glsl (fshader). .... ...
0
votes
1answer
27 views

WebGL state management when switching GLSL programs

so this is a somewhat vague question, probably due to my still limited (but improving) knowledge of the internals of WebGL (OpenGL), in particular the way the state is managed inside the GL context. ...
2
votes
1answer
27 views

OpenGL : Bone Animation, Why Do I Need Inverse of Bind Pose When Working with GPU?

I implemented an MD5 Loader with software skinning. Bind pose in md5 is final, absolute position and rotations, you just need to do computations for weights which are joint dependent. I tried to ...
0
votes
2answers
56 views

Why am I getting multiple regex matches?

I'm trying to write a processor for GLSL shader code that will allow me to analyze the code and dynamically determine what inputs and outputs I need to handle for each shader. To accomplish that, I ...
0
votes
0answers
53 views

Basic GLSL shaders not working

So I've tried to follow some tutorials on OpenGL and GLSL. I'm writing them in Java, using JOGL2, Original is in C++ though. All code compiles without any problems, shader preview in Shader designer ...
2
votes
0answers
30 views

Combing vertex attributes in a single array [closed]

I've seen examples of combining OpenGL shader vertex attributes into one array, and they generally take the form of one of these methods, supposing A, B, C are vertex positions and a, b, c are color ...
0
votes
0answers
27 views

Uniforms not working after changing them to uniform blocks

I have just switched my matrix uniforms to a single block but they are no longer working even though I have not changed the way my matrices are generated, only the way they get into the shader My ...
0
votes
0answers
6 views

glsl set pixel color without check the coordinates of each pixel

How can I set the color of certain pixel without "if" for each pixel, if I know its coordinates. I have to check the coordinates of each pixel in the fragment shader and if the coordinates are the ...
1
vote
3answers
27 views

GLSL Reading From Sampler3d texture

I have 3D volume texture which I initialize it with below line : glTexImage3D(GL_TEXTURE_3D, 0, GL_RED, numX, numY, numZ, 0, GL_RED, GL_UNSIGNED_BYTE, voldata); In fragment shader, I want to read ...
-2
votes
0answers
33 views

Simple triangle in glsl is not visible after multiplication it's position in shader by MVP matrix

I'm trying to make a triangle using shaders, and it works. But when I'm trying to pass a ModelViewProjectionMatrix as a uniform to a vertex shader(so it won't move together with camera), the triangle ...
1
vote
1answer
32 views

Why Do I Need TBN Matrix in OpenGL?

I think i couldn't understand the TBN concept, they use it for bump mapping, normal mapping etc. But can't they just extract normals from a texel using modelview matrix ? I need an explanation for TBN ...
0
votes
0answers
31 views

Triangle strip always faces camera

I am want to use GLSL geometry shader to generate something like hair. In GLSL geometry shader I have one triangle for which one hair should be calculated. Therefore I am having the normal for every ...
-2
votes
0answers
38 views

OpenGL 3.1+ and GLSL nothing displaying [closed]

I am using OpenGL 3.1, GLSL, freeGLUT and GLEW on a windows system. When I run it there is just a black window. Can anyone help me with this? #define GLEW_STATIC #include <stdlib.h> #include ...
-2
votes
2answers
38 views

Simple image filter using GLSL Fragment Shader [closed]

I am starting with OpenGL ES 2 and I am trying to build a very simple app where I have a static image and a button that applies an Instagram-like photo filter using a GLSL fragment shader to that ...
0
votes
2answers
60 views

The cost of texture2D in glsl

Quite confuse about this function In the codes of glsl, I always see something like this uniform sampler2D source; varying vec2 textureCordi; void main() { vec2 uv = textureCordi.xy; vec3 t1 ...
1
vote
3answers
62 views

GLSL uniform arrays incorrect values

I am trying to pass light and lightcolor information to my shader via a uniform array. I declared these in my shader like this: uniform vec2 lightpositions[4]; uniform vec4 lightcolors[4]; ...
0
votes
1answer
34 views

WebGL batching: reducing the number of transforms I need to send

I am currently drawing objects in a single draw call. Each object is just a bunch of vertices with one transform, one color, and a stream of vertices: uniform vec4 color; uniform mat4 transform; ...
0
votes
1answer
55 views

Color interpolation across a polygon mesh

What is the best way to interpolate colors across a polygon mesh where all of the polygons have the same normal and considerable color differences? Is Using GLSL (with gouraud or phong shading) the ...
-3
votes
0answers
42 views

Trouble with GLSL in openGL

i am using mac book pro and just learning opengl.. here is the question.. when i want to compiled my project in xcode, my code has no error. but there's 1 problem that make the picture can't be see. ...
1
vote
1answer
50 views

A few questions regarding GLSL pipeline

I used to code HLSL when I was working with DirectX but have forgotten quite a lot and I am now trying to figure out GLSL and how it works. I am using a fixed pipeline of OpenGL in OpenFramework ...
3
votes
1answer
51 views

GLSL — texture1D is deprecated, what to use instead?

I'm writing a GLSL shader to #version 130 (OpenGL 3.0) It gives a warning that "global function texture1D is deprecated after version 120" I've googled but can't find much. If it's deprecated, then ...
0
votes
1answer
59 views

Compute shader not modifying 3d texture

I want to move the initialization of my 3D texture from the CPU to the GPU. As a test, I wrote a shader to set all voxels to a constant value, but the texture is not modified at all. How do I make it ...
0
votes
0answers
19 views

Making “smooth” clipping (eg. using glsl shader)

I have a scroll view (similar to table view), which changes the opacity of the object that is going out of the scroll view area (eg. it fades out when scrolling out of the layer) and is also clipped ...
-3
votes
1answer
50 views

Converting ARB shaders to GLSL

I have found a pair of shaders written in ARB.I need help converting those in GLSL (1.2).I want to extend a project that uses those ARB shaders, but learning GLSL I think it would be easiser to habe ...
1
vote
1answer
61 views

What is wrong with my shadow map implementation?

I'm trying to implement shadow mapping in my game. The shaders you see below result in correctly drawn shadows for the game's map, but all the models walking around on the map are completely black. ...
0
votes
1answer
21 views

get vertex world position in glsl

How can I get a vec3 with the the world position of a vertex? let's say I want to get white pixels for positions of a cube at Y 1 in world space and black pixels for 0… I tried (vertex shader) ...
0
votes
1answer
25 views

Using different texture types in same texture unit at the same time in shader

I came across a nasty problem in my program when i tried to use the same texture unit (number 0) for different texture types (i.e. a normal 2D texture and a cube map) in my shader. It appeared so that ...
0
votes
2answers
69 views

OpenGL - poor performance and incorrect results while updating texture in a loop using FBOs

First of all:Windows XP SP3, 2GB RAM, Intel core 2 Duo 2.33 GHz, nVidia 9600GT 1GB RAM. OpenGL 3.3 fully updated. Short description of what I am doing:Ideally I need to put ONE single pixel in a GL ...
2
votes
1answer
26 views

Calculate tangent Space in FragmentShader

I want to calculate the tangentspace in GLSL. Here is the important part from my code: // variables passed from vertex to fragment program // in vec3 vertexNormal; in vec2 textureCoord; in vec3 ...
1
vote
1answer
32 views

Cross-fade between two textures on a sphere

I have a 3D scene with only one sphere in it and I have two textures - one for the night, and one for the day of this planet. In addition I have the a lightSource at (15,15,15) in my scene. For each ...
0
votes
0answers
50 views

How to translate cpu codes to glsl(kuwahara filter)

According to this website oil painting I could generate oil painting like image, but I have no idea how to translate the codes to glsl on that website. I found an implementation of anisptropic ...
0
votes
1answer
30 views

GLSL, multiple uniform blocks

I am trying to use multiple uniform blocks in one GLSL shader and I debug my shader using the following code to print available uniform blocks: void printUniformBlocks(void) { GLint numBlocks; ...
2
votes
1answer
40 views

Does OpenGL internally calculate shaders starting with the vector?

Typically you see an OpenGL shader calculation structure as such: gl_Position=ProjectionMatrix * ModelViewMatrix * positionVector That is, matrix*matrix*vector As discovered in this question, ...
1
vote
0answers
34 views

3D Texture emulation in shader (subpixel related)

I am working on a Unity3D project which relies on a 3D texture momentarily. The problem is, Unity only allows Pro users to make use of Texture3D. Hence I'm looking for an alternative to Texture3D, ...
0
votes
1answer
25 views

Geometry shader invocations input layout qualifier

What does the "invocations" input layout qualifier of a geometry shader do? The OpenGL wiki just says that it causes the GS to be executed multiple times for each primitive, and goes on to say that: ...
1
vote
2answers
71 views

Order independent transparency with MSAA

I have implemented OIT based on the demo in "OpenGL Programming Guide" 8th edition.(The red book).Now I need to add MSAA.Just enabling MSAA screws up the transparency as the layered pixels are ...
1
vote
1answer
36 views

Why doesn't Xcode recognize these shaders?

I'm trying to teach myself Xcode, Objective-C, iOS app development, and GLSL all at once. (Probably not advisable, I know. ;-) I've been modifying the GLCameraRipple example, and had a lot of ...
0
votes
2answers
31 views

GLSL C style numeric cast

I am experiencing the following issue.I have two shaders (completely unrelated) which do casts to int and to float but in a different manner. Cast example from Shader #1 (int to float): color = ...
0
votes
1answer
69 views

Can someone please explain this Fragment Shader? It is a Chroma Key Filter (Green screen effect)

I'm trying to understand how this chroma key filter works. Chroma Key, if you don't know, is a green screen effect. Would someone be able to explain how some of these functions work and what they are ...
2
votes
1answer
44 views

Why is it legal to reverse the vector-matrix mult order in a shader?

While the graphical output is completely messed up when I do this, I tried it out of curiousity. I was expecting it to crash due to illegal math operation: // ...
0
votes
3answers
42 views

webgl and glsl picking

Im implementing webgl picking from scratch, and have decided to go down the GLSL route, as oppose to ray intersection testing. so Im rendering the whole scene into a separate frame buffer, assigning ...
0
votes
2answers
38 views

WebGL: Particle engine using FBO, how to correctly write and sample particle positions from a texture?

I suspect I'm not correctly rendering particle positions to my FBO, or correctly sampling those positions when rendering, though that may not be the actual problem with my code, admittedly. I have a ...
-4
votes
1answer
85 views

how to use pointers in GLSL

I need to send a set of data to shader like. //Application OpenGL uniform vec3 *variable; variable = (uniform vec3 *)malloc(80 * sizeof(uniform vec3)); //or uniform vec3 variable[80]; I ...
2
votes
2answers
84 views

Geometry shader producing gaps between lines

I wrote a geometry shader to compute the intersection contour of a mesh and a plane, but at the intersection points there are sometimes 1 pixel wide gaps between two lines. The shader first ...
0
votes
1answer
63 views

Improving shadow map performance of point lights?

I'm making point lights with shadow maps, and currently I have it done with six depth map textures, each rendered individually and applied to the light map. This works quite well, but the performance ...
0
votes
1answer
49 views

How do you set Opengl Line width in GLSL without geometry shader, is it even possible?

Does anyone know how I can set OpenGL line width using GLSL 4.0? I read something about geometry shader, I am knowing there is another application orientated way to set the line width. I have tried ...
0
votes
1answer
32 views

glGetTexImage returns 0s with FBO

After learning that I have to use a FBO to read floating point data from shader, I have tried this but with no luck: glGenTextures( 1, &renderTex ); glBindTexture( GL_TEXTURE_2D, renderTex ); ...
0
votes
0answers
28 views

Efficient OIT techniques for planar geometry

This question is the continuation to this one.I need to implement Order independent transparency(OIT) for planar object as it is done in Adobe AfterEffects. Some of the methods used today are depth ...

1 2 3 4 5 34