Tagged Questions

3
votes
2answers
249 views

Basic OpenGL lighting question

I think this is an extremely stupid and newbie question, but then I am a newbie in graphics and openGL. Having drawn a sphere and put a light source nearby, also having specified ambient light, I ...
2
votes
2answers
129 views

Open GL Lighting Problem

I've been working on a game engine for a month now, and I've finished the basic OpenGL stuff. However, the one thing that I can't get to work like I expect it to is the lighting. (Note: This is the ...
2
votes
3answers
2k views

How can I make a ball of light in openGL?

I'm trying to make a orb of light (Like a sun) but I can't seem to make it visible at all. I'll give you some snipets of code I have. It's in Java LWJGL, so it might look a little different. private ...
1
vote
1answer
35 views

OpenGL - Light values and position

This is how i have declared my light values and their positions is this correct or is there another more officiant way? // Lighting values GLfloat greenLight[] = { 0.0f, 0.6f, 0.0f, 1.0f }; ...
1
vote
1answer
273 views

OpenGL Lighting Quads

just a quick question. I have a quad in 3D OpenGL scene. I define a normal to the plane counter clockwise. So that the normal points out one side of the plane. In the direction of my light source. The ...
1
vote
1answer
166 views

openGL lighting rotates with camera

I'm trying to build something simple for uni coursework and I've just tried to light it, but the lights seem to rotate with the camera, which is totally annoying... I've pasted my code below using a ...
1
vote
1answer
196 views

Per vertex pre-computated lighting in DirectX9 using fixed function rendering pipeline

I'm making a DirectX 9 C++ application using the fixed function pipeline, given pre-computated lighting for each vertex, (Regardless of normals/etc) how can I apply this to the final image? I'm ...
1
vote
3answers
359 views

OpenGL: Using shaders to create vertex lighting by using pre-calculated colormap?

First of all, I have very little knowledge of what shaders can do, and i am very interested in making vertex lighting. I am attempting to use a 3d colormap which would be used to calculate the vertex ...
0
votes
0answers
54 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
3answers
144 views

Problems with OpenGL lighting

I'm having trouble being able to see objects I've created when I have enabled lighting in OpenGL. I have an object that is imported from 3D Max that the lighting works correctly on but the rest of my ...
0
votes
0answers
60 views

Ambient Occlusion lighting ray collision

I'm attempting to implement ambient lighting as shown on this page (scroll down a bit), but I'm stuck where I have to check where each ray collides into another cell. My volume is a 3D grid of values, ...
0
votes
1answer
107 views

OpenGL perspective and lighting not working?

EDIT: A few people have said to use glNormal3f() to solve my lighting problem, but I researched and implemented that just now and it didn't change anything at all. I'm kind of new to OpenGL so I ...
0
votes
3answers
154 views

Opengl proper lighting problem

I have written the following program to display a teapot on a table in a room with 2side walls and a floor. #include <stdio.h> #include <glut.h> void wall1(float thickness) { ...
0
votes
1answer
220 views

OpenGL Spotlights

I'm trying to make 'spotlights' over a pool table in openGL. This should be fairly simple, but something is going wrong, and I can't work out what. I have a class 'PoolLight' that I'm using as a sort ...
0
votes
1answer
142 views

Ambient Lighting in some shader code

#version 150 core in vec3 pos; in vec3 vshade; in vec3 normal; out vec3 cshade; out float shadescale_o; out vec3 v_o; out vec3 locallight_o; out vec3 n; uniform float pscale; uniform mat3 ...
0
votes
1answer
219 views

Lighting issue in OpenGL

I have trouble developing an OpenGL application. The weird thing is that me and a friend of mine are developing a 3d scene with OpenGL under Linux, and there is some code on the repository, but if we ...