Tagged Questions
0
votes
0answers
22 views
Calculate percentage of a fragments depth position relative to a range
In my fragment/pixel shader I am trying to calculate a fragment's depth position in percent [0-1] in an given range. What I have is a bunch of shapes (there is no relative data given from them) but ...
3
votes
1answer
51 views
GLSL(330) modulo returns unexpected value
I am currently working with GLSL 330 and came across some odd behavior of the mod() function.
Im working under windows 8 with a Radeon HD 6470M. I can not recreate this behavior on my desktop PC which ...
1
vote
1answer
32 views
Opengl Shader Builder: use texture as input for fragment shader
I'm trying to create a shader in Apple's OpenGL Shader Builder and I need a texture as input for the fragment shader.
The input is defined like:
uniform sampler2D texture;
It seems obvious I could ...
1
vote
1answer
16 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 ...
0
votes
1answer
71 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 ...
1
vote
4answers
67 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
2answers
48 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, ...
0
votes
3answers
48 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 ...
6
votes
3answers
122 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
66 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
48 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
vote
2answers
59 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) ...
6
votes
0answers
83 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 ...
2
votes
1answer
30 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 ...
0
votes
1answer
52 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 ...
-1
votes
3answers
95 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, ...
1
vote
2answers
48 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
42 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
51 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, ...
0
votes
1answer
61 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 ...
2
votes
1answer
59 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
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
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 ...
1
vote
2answers
285 views
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 ...
1
vote
1answer
54 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: ...
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 ...
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 ...
-3
votes
1answer
66 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
0answers
59 views
GLSL blank screen
I am getting a blank window (white) for my GLSL shader program. My program compiles fine with a warning level of 4. The only error I am getting is from the shaders are:
Both shaders (vertex and ...
0
votes
1answer
27 views
default uniform (array) values
Rather than explicitly setting uniform data for a GL program, I set 'defaults' in a simple test (fragment) shader with:
uniform vec3 face_rgb[] = vec3[]
(
vec3(0.0, 0.0, 1.0), vec3(0.0, 1.0, ...
1
vote
1answer
67 views
GLSL glass effect plus depth peeling
I'm working on rendering a scene that potentially has multiple intersecting transparent objects. This makes the standard method of sorting and drawing back to front problematic (even sorting triangles ...
0
votes
1answer
99 views
OpenGL rendering does not work correctly with OpenCV using GLSL shaders
I have coded a small OpenGL program using OpenGL and GLSL shaders. Here's a screen of my application :
Now, my objective is to mix my opengl frame and the one from my webcam in a unique frame using ...
3
votes
1answer
63 views
GLSL: Removal of dead code causes visual errors
I've been having a lot of strange problem's while trying to write a raytracer in an opengl shader. I try to determine if the source of the error is myself, and often this is the case, but I've come to ...
2
votes
1answer
38 views
Can't render to texture (anymore)
I implemented a volume rendering demo application a few months ago. Everything worked fine in Windows XP-32bits. I used OpenGL -glew and SFML2.0-rc as a windowing&input library.
Now. I moved to ...
0
votes
1answer
56 views
Shader program to Vertex + Fragment shader
I am studying a tutorial which uses this shader:
struct VSInput
{
vec3 Position;
vec2 TexCoord;
vec3 Normal;
};
interface VSOutput
{
vec3 WorldPos;
vec2 TexCoord;
vec3 Normal;
};
...
1
vote
0answers
75 views
Calculate per Vertex Normals in Geometry Shader after Tesselation
I've succeeded in getting tesselation control and evaluation shaders to work correctly, but the lighting for my scene is still blocky because I've been calculating per (triangle) face normals, instead ...
0
votes
1answer
38 views
AMD 6310 GLSL / FBO copy corrupts first few lowest order bits (but only sometimes)
I'm using OpenGL 2.0 and an FBO to copy some data from an RGBA texture to an RGB texture, and I ran into an issue where sometimes it "corrupts" the first few lowest order bits of some of the pixel ...
-2
votes
0answers
50 views
Error(#132) Syntax error in Vertex Shader in OpenGL [closed]
#version 150
in vec4 vPosition;
in vec3 vNormal;
out vec4 color;
...
void main(){
vec3 pos = (uView * uModel * vPosition).xyz;
vec3 L = normalize(LightPosition.xyz - pos);'
...
Error ...
0
votes
0answers
41 views
Shadow Map too big
All is OK in the shader map texture, but the is scaled (too big).
The coord texture:
mat4 bias = mat4(0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.5, 0.5, 1.0);
ShadowCoord ...
0
votes
0answers
13 views
Unsigned int literal passed as array index - different behavior?
I have a GLSL vertex shader which accessed a vec4 as an array:
someVec4[3]=[some nonzero value here]
...however when I happened to change the '3' to '3u'...
someVec4[3u]=[some nonzero value here]
...
1
vote
0answers
74 views
Lighting Dual depth peeling
I'm doing Dual depth peeling. I want to ask you, how to properly. I have algorithm like this.
glDisable(GL_DEPTH_TEST);
glEnable(GL_BLEND);
glBindFramebuffer(GL_FRAMEBUFFER, dualDepthFBOID);
...
0
votes
1answer
47 views
Removing calls to glGenVertexArrays() results in black screen
So, I previously used vertex array buffers (Core Profile 3.3), setup as follows:
int offset = 0;
glGenVertexArrays(1, &m_vba);
glBindVertexArray(m_vba);
glGenBuffers(1, &m_vbo);
...
0
votes
0answers
73 views
Particle System error
Im working in Particle System Class from this tutorial Particles - Anton's OpenGL 4 Wiki - Dr Anton Gerdelan
Code:
//Pixel Shader
// shader to update a particle system based on a simple ...
0
votes
1answer
75 views
Why is there just garbage data in texture layers beyond 2048?
I am trying to use a texture_2d_array with up to 8192 layers. But all layers after the 2048th just contain garbage data (tested by mapping the individual layers on a quad to visualize the texture).
...
0
votes
1answer
126 views
imageStore() doesn't work on AMD hardware (OpenGL 4.2)
I tried this code on Nvidia hardware without any problem but on AMD, the imageStore() function doesn't seem to do anything (No GL error is thrown though, I checked)
Shader:
#extension ...
1
vote
0answers
134 views
Edge detection shader using a color picking texture (OpenGL)
I'm writing a small 3D application where I want to highlight selected objects with colored edges. I render the normal scene into two color attachments using a FBO. The first one contains only the ...
0
votes
0answers
52 views
OpenGL glsl: can't pass data from program to shader
I am writing a program that sends data from a function in a C++ program to a vertex shader. A program ID is passed into the function as follows:
void setUpOrtho(GLuint program) {
glUseProgram( ...
0
votes
1answer
57 views
Trouble Compiling glsl Shader, #version must occur first error
I am following the WikiBooks OpenGL Tutorial # 2
I can't get my shader to compile, it says #version must occur first.
Here is the main.cpp code: ...
