Tagged Questions
1
vote
1answer
36 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 ...
2
votes
1answer
38 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
0answers
70 views
Issue with Sphere + Lighting
I am drawing a sphere using following code :
GLfloat thita=0.0f,fy=0.0f;
GLfloat r=0.5f;
GLfloat light_direction[] = {1.0, 1.0, 1.0};
while(thita<=pi)
{
fy=0.0f;
...
0
votes
1answer
105 views
Compute normals in shader issue
I have the following vertex shader to rotate normals. Before I implemented that, I passed also the rotation matrix of the mesh to calculate the normals. That time lighting was just fine.
#version 150
...
0
votes
0answers
164 views
GLSL per pixel lighting issue on my terrain [closed]
I am doing per-pixel lighting on my terrain (directional light).
The normals are correct for each vertex from the heightmap (averaged from the surrounding ones, I have tested to make sure they are ...
1
vote
2answers
503 views
Rotate Normals in Shader
I have a scene with several models with individual positions and rotations. Given normals, the shaders apply simple bidirectional lighting to each pixel.
That is my vertex shader.
#version 150
in ...
2
votes
2answers
212 views
OpenGL Programmable Pipeline Point Lights
Since built-in uniforms such as gl_LightSource are now marked as deprecated in the latest versions of the OpenGL specification, I am currently implementing a basic lighting system (point lights right ...
0
votes
1answer
284 views
Opengl/glsl shader animation and lighting issue
So lately i've took my first serious steps (or at least i think so) into opengl/glsl and shaders in general.
Ive managed to construct and render VBOs, create and compile shaders and also mess with ...
0
votes
0answers
77 views
Fragment Shader Fixed-Function Lighting Pass-Through
I have made a simple fragment shader that works fine, but it loses the lighting information and renders all faces with uniform lighting. Without the shader active, the faces are lit with facet normals ...
1
vote
1answer
1k views
How to pass normals to a Vertex Shader in GLSL when using glDrawElements
I am building a simple 3D game for practice, and I am having trouble passing normals to my shader when using indexed rendering. For each face of a polygon, at each vertex there would be the same ...
1
vote
0answers
195 views
OpenGL/GLSL - Handling lighting from an old game (mixing ambient light and vertex colors)
I am writing a client that supports loading of an old game format. It uses fake lighting where for every vertex, there is often a vertex color supplied. I got the lighting to appear correctly by ...
0
votes
0answers
438 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 ...
3
votes
1answer
677 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
2answers
832 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 ...
6
votes
1answer
318 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, ...
1
vote
1answer
1k 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 ...
6
votes
1answer
582 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
592 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 ...
1
vote
2answers
1k views
GLSL normals with non-standard projection matrix
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 stretch of the ...
1
vote
2answers
972 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, ...
0
votes
1answer
4k 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)
{
...
2
votes
5answers
6k 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 ...
0
votes
2answers
3k 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 ...