Tagged Questions
5
votes
1answer
102 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, ...
4
votes
1answer
175 views
Why does GLSL lighting code shift the light spot with the camera?
I am trying to make a custom light shader and was trying a lot of different things over time.
Some of the solutions I found work better, others worse. For this question I'm using the solution which ...
3
votes
2answers
215 views
How do I tell if the active texture is texture id 0 in GLSL?
I have model assets that are untextured and I am tired of rendering them as black without lighting. This is because if texture id 0 is bound and I ask the sampler it tells me its black. Later leading ...
2
votes
1answer
100 views
Using GLSL shaders + lighting / normals
I've got this not-so-small-anymore tile-based game, which is my first real OpenGL project. I want to render every tile as a 3D object. So at first I created some objects, like a cube and a sphere, ...
2
votes
5answers
3k views
How to transform directional light to camera space in GLSL
I have the following GLSL code for lighting:
uniform vec3 lightDir; // Parallel light
uniform float ambient;
uniform vec3 lightColour;
void main()
{
gl_Position = ftransform();
vec3 ...
1
vote
2answers
132 views
Light Direction and its Transformation in the Simplest Lighting Model
So, I've gotten to basic lighting in my OpenGL learning quest.
Imagine this simplest lighting model. Each vertex has a position, color, and normal. The shader gets the ModelViewProjection matrix ...
1
vote
1answer
428 views
Strange results w/ Blinn-Phong GLSL shader, point lights
I've made a GLSL shader for doing per-pixel blinn phong lighting on a scene, and I've had some issues w/ the light cast on the scene. Each light seems to have a very hard boundary on its effect ( in ...
1
vote
1answer
478 views
GLSL normals with non-standard projection matrix
Afternoon everyone!
After a few days of getting my GLSL vertex shader to display the vertices correctly, I've now moved onto lighting! My understanding of openGL lighting/normals isn't great by any ...
1
vote
2answers
489 views
GLSL shading problem: Why is my sphere in greyscale instead of red? (see code)
I'm working on a beginner level GLSL shader program. I'm following this tutorial. But my sphere always appear in greyscale and not colored red as I expected.
Vertex Shader:
varying vec3 normal, ...
1
vote
1answer
1k views
Glsl phong shader and camera
I know this question was asked a lot already, but I still can't manage to do it right.
So, in my vertex shader I need to get light postition and eye position. Here is my code:
void main(void)
{
...
0
votes
0answers
57 views
Why does this GLSL texture binding not work?
I'm relatively new with shaders and I'm wondering if I'm doing anything wrong (shader wise or c++ code wise) Also wondering how I can test with GLEW the support I am using. This is my current GLEW ...
0
votes
2answers
2k views
OpenGL GLSL interpolation
I try to implement point lights in OpenGL with GLSL. I send all the required data to the shaders. For simplicity I only use the diffuse light here.
My example shows a huge triangle which I want to ...