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.
0
votes
1answer
5 views
Can you pass a fixed-size array as a GLSL function parameter?
In a GLSL shader, I want to create a function that looks a bit like this :
void MyFunction(out float results[9])
{
float value0 = 3.1546;
float value1 = 42; // whatever value
/* ...
2
votes
1answer
82 views
RenderMonkey / GLSL camera & viewpos
How do I make the vec3 viewpos follow the values of the camera? Presumably they should be the same but I don't know how to access the camera's position values.
0
votes
1answer
10 views
Luminance values clipped to [0, 1] during texture transfer?
I am uploading a host-side texture to OpenGL using something like:
GLfloat * values = new [nRows * nCols];
// initialize values
for (int i = 0; i < nRows * nCols; ++i)
{
values[i] = (i % 201 ...
2
votes
1answer
17 views
Trouble understanding GPU disassembly
I'm trying to write a raycasting shader in GLSL, and it's being unbearably slow. So I installed AMD's "GPU Shader Analyzer", so I can look at what is actually generated. I've got it from 2 FPS up to ...
1
vote
4answers
63 views
GLSL, combining 2D and 3D textures
I am trying to blend a 3D texture with a 2D one to make a terrain. The 3D texture has moss, sand, snow and the like, interpolated to enhance the illusion of heights. The 2D texture currently only has ...
0
votes
0answers
47 views
OpenGL DrawElements with Vertex Buffer Object and GLSL Shader to GBuffer not working
I'm drawing a plane with a diffuse and normal map to a gbuffer.
I can confirm that the plane's textures and the gbuffer-fill shader are properly initialized and compiled (no errors).
I get the ...
0
votes
2answers
45 views
OpenGL & GLSL exe not running in windows 7 [closed]
I have developed one GLSL application with OpenGL. It is perfectly running on my windows XP. But when we are trying to execute only the executable file on windows 7 which does have any visual studio, ...
6
votes
3answers
115 views
GLSL, interface block
The Problem:
I'm learning OpenGL from http://www.arcsynthesis.org/gltut/index.html tutorial, and I had really hard time getting Tutorial 13: Geometry Impostors working (6+ hours), and it is now ...
1
vote
1answer
29 views
Can anyone recommend a concise resource for picking up the maths/physics necessary for implementing lighting in GLSL? [closed]
I've searched the internet for a good while regarding the implementation of a light source using GLSL ES, but every last "tutorial" assumes that the reader already has a working understanding of the ...
0
votes
0answers
30 views
Chromatic aberration in C#/Python [closed]
I recently stumbled across the chromatic aberration effect. I really like this effect, but I didn't find any ways to produce it without OpenGL (I just found some rough explanations of how to do it in ...
1
vote
0answers
136 views
glsl ray casting transparency isuue
i'm trying to implement ray casting of 3D volume and i've implemented it based on the code obtained from link . But i made a change on what i'm passing to the fragment shader. I passed the back face ...
0
votes
2answers
38 views
How exactly does deferred shading work in LWJGL?
I want to start a deferred shading project with GLSL , Java & openGl
1. How does a deferred rendering pipeline works, does it render the scene for each image?
For example when I want to create a ...
1
vote
1answer
65 views
What is the difference between opengl and GLSL?
I recently started programming with openGL. I've done code creating basic primitives and have used shaders in webGL. I've googled the subject extensively but it's still not that clear to me. ...
1
vote
1answer
43 views
GLSL - Weird syntax error “<”
I'm trying to use a shader but it keeps telling me this error on both fragment and vertex shader:
error(#132) Syntax error: "<" parse error
vertex shader
varying vec4 diffuse;
varying vec4 ...
-1
votes
3answers
706 views
What does (gl_FragCoord.z / gl_FragCoord.w) represent?
I want actual world space distance, and I get the feeling from experimentation that
(gl_FragCoord.z / gl_FragCoord.w)
is the depth in world space? But I'm not too sure.
EDIT I've just found where I ...
6
votes
0answers
80 views
GLSL uniform only being updated by unrelated calls
I have an extremely basic GLSL program which is failing to properly update a uniform value after the first draw call. No errors are received from glGetError, no errors are reported in the info logs ...
1
vote
2answers
54 views
Should I calculate matrices on the GPU or on the CPU?
Should I prefer to calculate matrices on the CPU or GPU?
Let's say I have the following matrices P * V * M , should I calculate them on the CPU so that I can send the final matrix to the GPU (GLSL) ...
3
votes
1answer
43 views
Setting Up GLSL Ocean Water Shader Following Nvidia GPU Gems Chapter 1
I am following the Nvidia GPU Gems Chapter 1 regarding water simulation using shaders. I am trying to follow the chapter to create an ocean water shader using glsl in OpenGL es 2.0 (iOS).
I am able ...
2
votes
1answer
29 views
Fragment Diffuse value changing with camera location/rotation
I am attempting to get some simple diffuse lighting to work in GLSL. I have a cube that is being passed in as an array of points and I'm calculating the face normals inside my geometry shader (because ...
0
votes
1answer
28 views
image2DArray :only first layer work
I attempt to use the image load/store function.I need several images,and if they are indexed ,it's convienient for coding,so I want to use the image2DArray uniform.But it seems that only the first ...
1
vote
2answers
2k views
How to render depth linearly in modern OpenGL with gl_FragCoord.z in fragment shader?
I read lots of information about getting depth with fragment shader.
such as
http://www.opengl.org/discussion_boards/ubbthreads.php?ubb=showflat&Number=234519
but I still don't know whether or ...
0
votes
1answer
25 views
Are point sprites always perfect circles/squares?
I noticed that regardless of the shape (aspect ratio) of a texture, it will always draw as a perfect square, scaling unequally, when using it as a point sprite. I assume this is because points are, ...
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 = ...
-1
votes
3answers
93 views
OpenGL Shaders - Normals in Gouraud and Phong shading?
I can't seem to understand the OpenGL pipeline process from a vertex to a pixel.
Can anyone tell me how important are vertex normals on these two shading techinques? As far as i know, in gouraud, ...
0
votes
1answer
49 views
GLSL Normal Mapping (Areas With 0.0 Lambert Gets Lit)
when i use the model's normal , the result is fine ( there are dark areas and lit areas , as i would expect from a simple lambert diffuse shader )
but when i use a normal map , the dark areas gets ...
2
votes
3answers
81 views
How do I obtain the vertices of the current polygon inside a fragment shader?
I've got a shader to procedurally generate geometric shapes inside a quad. Essentially, you render a quad with this fragment shader active, and it calculates which fragments are on the border of the ...
1
vote
2answers
46 views
How send recursive data structure to OpenGL shader?
how can I send recursive data structure, like octree, to OpenGL GLSL shader?
I think, I can send it as array of nodes and use indexes instead of pointers, is it a good idea? Are there other options to ...
0
votes
2answers
38 views
Reading current framebuffer
Is there a way to read fragment from the framebuffer currently rendered?
So, I'm looking for a way to read color information from the fragment that's on the place that current fragment will probably ...
0
votes
1answer
47 views
Per-vertex reflection and intersection calculation, OpenCL vs GLSL
I have to calculate the visibility field of a mirror on a plane (i.e: the floor).
The mirror surface is composed of several triangles (up to fewer thousands).
Each vertex define a mirror point, ...
1
vote
1answer
22 views
When using the same Vertex shader in different programs, does the uniform location persist
sorry if this is a duplicate I can't seem to find a solid answer.
If i use the same vertex shader in multiple programs is it safe to assume the getUniformLocation will stay the same?
example, if i ...
0
votes
1answer
59 views
Potential problems using OpenGL buffer object with multiple targets?
I am developing a library for Qt that extends it's OpenGL functionality to support modern OpenGL (3+) features like texture buffers, image load-store textures, shader storage buffers, atomic counter ...
1
vote
3answers
183 views
What is the theory behind the Light Glow effect of “After Effects”?
What is the theory behind the Light Glow effect of "After Effects"?
I wanna use GLSL to make it happen. But if I at least get closer to the theory behind it, I could replicate it.
2
votes
1answer
57 views
Sending two textures to GLSL shader
When sending two textures to my GLSL shader only one actually arrives. What is strange is the first texture I bind is used for both textures slots in my shader. This leads me to believe the way I am ...
1
vote
2answers
1k views
Drawing a sphere in OpenGL ES 2.0
I'm trying to draw a sphere in openGL ES 2.0 on Android. I already looked at the related questions and tried some of their code but I still can't get it to work.
Based on the Android developer ...
1
vote
2answers
276 views
1
vote
0answers
50 views
Logarithmic depth buffer
I use a logarithmic depth buffer : in my shader I wrote the code describes here :
In the vertex shader :
void main()
{
vec4 vertexPosClip = gl_ModelViewProjectionMatrix * gl_Vertex;
gl_Position ...
1
vote
2answers
419 views
GLSL 4.2 Image load and store & memoryBarrier
Using image load and store, i would like to do the following in GLSL 4.2:
vec3 someColor = ...;
vec4 currentPixel = imageLoad(myImage, uv);
float a = currentPixel.a/(currentPixel.a+1.0f);
vec4 ...
1
vote
1answer
35 views
GLSL geometry value changing when it shouldnt
I'm working with a VERY simple program that is passing an array of points into the programable pipline to draw a cube. I'm trying to set it up so I can change the geometry every frame (based on some ...
3
votes
2answers
653 views
cylinder impostor in GLSL
I am developing a small tool for 3D visualization of molecules.
For my project i choose to make a thing in the way of what Mr "Brad Larson" did with his Apple software "Molecules". A link where you ...
1
vote
1answer
62 views
Vertex shader fails to compile, but no message from Info Log
I'm trying to set up a simple vertex shader. When I compile it, it fails (according to GL_COMPILE_STATUS), but the info log is empty, leaving me nothing to work with from a debugging standpoint.
Here ...
0
votes
0answers
34 views
Multiple frame buffer object, frame rate drop dramatically
Here is the situation:
I use 2 FBOs, 1 for image filtering resolution 640*480, the other for real rendering using filtered images resolution 1024*768. However the framerate is much lower than i ...
1
vote
1answer
53 views
Weird issue with GLSL Radial Blur
Shader used: http://www.gamerendering.com/2008/12/20/radial-blur-filter/
My issue is this: The whole scene only takes up a quarter of the screen space (which is a rectangle of these coordinates: ...
2
votes
2answers
421 views
How do i display 2 or more objects in openGL (model - view - projection matrices and shaders)
It's all ok when i want to draw one object, for example a cube. I create vertices for cube, i create the buffer, i create the MVP matrix and send it to shader and it works nice.
But, what to do when ...
1
vote
1answer
20 views
Does OpenGL (and OpenGL ES) support preprocessor “line continuation” characters?
I've got a macro in my OpenGL ES fragment shader that looks like this:
#define CHECK(x, DELTA, outColor, c1, c2) \
if (x < (delta + (DELTA))) { \
outColor = mix(c1, c2, smoothstep(delta, ...
1
vote
2answers
165 views
detecting if a gl_LightSource is enabled in glsl compatibility profile
I am writing a GLSL program as part of a plugin running inside of Maya, a closed-source 3D application. Maya uses the fixed function pipeline to define it's lights, so my program has to get it's light ...
2
votes
2answers
194 views
Does the input texture to a fragment shader change as the shader runs?
I'm trying to implement the Atkinson dithering algorithm in a fragment shader in GLSL using our own Brad Larson's GPUImage framework. (This might be one of those things that is impossible but I don't ...
0
votes
2answers
46 views
What is stereoscopic shader?
These days, I am making some shaders such that Phong, Gourard, even Toon Shader in GLSL.
I have a curious question, I want to make a stereoscopic shader which using 2 camera, and left camera takes ...
0
votes
1answer
63 views
Why is this GLSL shader so slow?
I am trying to do a raytrace on a grid in a fragment shader. I have written the shader below to do this (vertex shader just draws a screenquad).
#version 150
uniform mat4 mInvProj, mInvRot;
uniform ...
-3
votes
1answer
62 views
Why am I using opengl glsl to implement skybox, getting something wrong?
I'm currently using glsl to draw a skybox, but final result of my program is not my expect, the six sides of the skybox looks like all sides flipped vertically, then flipped vertically. If I make the ...
1
vote
1answer
45 views
OpenGL texture transformations
I'm a beginner to OpenGL and I'd like a simple introduction to using textures. For my application, I have no need of geometry, just some texture manipulation. I want to be able to scale, rotate, and ...


