Tagged Questions

6
votes
3answers
235 views

How to create fast and easy scene-independent shadows w/o shaders in OpenGL

Let i have some mesh (for ex. sphere) in the center of room, full of cubes and one light source. How can i make fast and easy shadow-casting in OpenGL, using "standard" (fixed) functions only? Note: ...
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, ...
5
votes
2answers
1k views

How does Minecraft perform lighting?

The only model I'm familiar with is diffuse lighting but this look way more complicated than that.
4
votes
1answer
76 views

OpenGL object glossy/shiny in Mac OS X 10.6, but not 10.5. Why?

I've written an OpenGL screensaver for Mac OS X 10.5 and higher which shows a spinning heart constructed using marching cubes. It works fine on my black 13.3" development Macbook running Snow Leopard ...
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
1answer
37 views

OpenGL glEnable(GL_COLOR_MATERIAL) followed by glDisable(GL_COLOR_MATERIAL)

I was drawing, simultaneously, a vertex colored cube next to a textured cube, with glDrawArrays(), and found that with lighting enabled the textured cube gets "slightly brighter". After some ...
3
votes
1answer
319 views

Deferred rendering and moving point light

I know there are couple of threads on the net about the same problem but I haven't got help from these because my implementation is different. I'm rendering colors, normals and depth in view space ...
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 ...
3
votes
2answers
252 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
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
1answer
348 views

OpenGL: Lighting Inside of Cube

I am creating a scene where I use a box to represent a room and different models within that box. When I enable lighting, my models light up fine but the room itself (the inside of the box) does not ...
2
votes
2answers
131 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
4answers
487 views

OpenGL lights limit

As I was reading RedBook I stayed quite confused, that openGL can have maximum 8 lights in scene (number depending on implementation, but should be arround 8). But I can imagine number of situations ...
2
votes
1answer
431 views

OpenGL per pixel lighting in fixed function pipeline

Is it possible to enable per-pixel lighting (so that I can have nice specular highlights on low tessellated surfaces) in the OpenGL fixed function pipeline?
2
votes
2answers
241 views

openGL rotating with Lighting problem

I want to draw car in my world. but i have problem with lighting when my car rotate ,it seems light position change when car is rotating; but when i draw simple cube with glut function it work ...
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 ...
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
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
0answers
72 views

Global illumination for static geometry

I have been trying to find a suitable global illumination technique, preferably based on OpenGL or GPGPU, to light an outdoor scene which has static objects and dynamic light sources (it is a city ...
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
135 views

realtime terrain lighting

What would be the best way to provide realtime lighting in an OpenGL terrain scene? The level of detail between of each quad will be generated dynamically as it is subdivided as it zooms in, so a ...
1
vote
1answer
136 views

OpenGL light not working

I am using this code to draw different cubes with different colors using the LWJGL: GL11.glBegin(GL11.GL_QUADS); GL11.glColor3f(rcol.x, rcol.y, rcol.z); // Color Vector ...
1
vote
1answer
89 views

3D Lighting (OpenGl)

I already asked this question but I didn't get my answer. Btw I found some thing new.I want to show a 3D model from a wrl file exported by solid works.The file contains triangle's vertices and I am ...
1
vote
3answers
152 views

OpenGL lighting small objects?

Hey. I'm having a problem with lighting when dealing with really small particles. I'm doing particle-based fluid simulation and am right now rendering the fluid as really tiny polygonized spheres (by ...
1
vote
1answer
275 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
479 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
1answer
168 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
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
310 views

OpenGL spotlight with Cg

I'm trying to accomplish a spotlight effect with Cg. I've already managed to do normal ambient and diffuse lighting. I understand the basic functionality of a spotlight (position, direction, cutoff ...
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) { ...
1
vote
2answers
196 views

OpenGL: What happens if I specify a light as both specular and diffuse?

On the sphere lighting example of the redbook I read this: GLfloat light_ambient[] = { 0.0, 0.0, 0.0, 1.0 }; GLfloat light_diffuse[] = { 1.0, 1.0, 1.0, 1.0 }; GLfloat light_specular[] = { 1.0, 1.0, ...
1
vote
3answers
360 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 ...
1
vote
5answers
630 views

Lighting inside of a sphere?

I have this question in mind: I need to make a scene that looks like a real sky. My first idea was to make a cube and texturize it. It wasn't that good looking. I came up with the idea of using a ...
1
vote
1answer
156 views

Working with Lights

Trying to get a grasp on lights and working through the OpenGL Superbible book. Below is what I am currently using for my lighting. It's placed in the SetupRC function. The lighting is mostly working ...
1
vote
3answers
2k views

Techniques to smooth face edges in OpenGL

When I light my human model in OpenGL using face normals it is very apparent where each face is on the model. The lighting becomes considerably smoother using vertex normals but still noticeable. Is ...
0
votes
1answer
25 views

How do I get blending to work with lighting and material?

Which alpha should I change? Diffuse, specular, or ambient?
0
votes
0answers
23 views

Opengl: How do I specify a directional vector for lighting in opengl?

This doesn't make sense to me at all, but anyways, lets say we have this: Glfloat dir[] = { 0.0, -1.0f, 0.0f, 0.0f }; glLightfv(GL_LIGHT0, GL_POSITION, dir); Guess what? The light rays point UP, ...
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
1answer
103 views

Problems with OpenGL lighting in Java/lwjgl

I've created a scene with a rotating cube in Java/lwjgl. If I enable lighting, I get a realistic behavior as if the light source were at the camera position, no matter where I place my light source. ...
0
votes
1answer
80 views

How to rotate my object with the light in opengl

In my code, I cannot set cordinate the lighting according to the object so I cannot with fixed my lighting on the object which moves. How can i move the light with the objects I have an objet that ...
0
votes
1answer
56 views

lighting the sun giving absurd results

I am trying to develop space simulator. I am trying to use sun as the light source. My problem is that the lighting dosent work as expected. Maybe i am using the wrong calculation for the normals. I ...
0
votes
3answers
146 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
1answer
67 views

Making a light source visible in OpenGL

I want to move my light source in my OpenGL-Scene, which is working. But to actually I want to see thee light source as well. How can I do this? ... glPushMatrix(); GLfloat lightPos[] = {0, 0, ...
0
votes
1answer
108 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
1answer
154 views

Why doesn't my open gl ambient lighting work?

I got most of my lighting working the way I want, but I seem to be completely missing any ambient lighting. That is, the away-from-the-sun sides of things are completely black (I was hoping for 50% ...
0
votes
3answers
155 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
218 views

3D Lighting (OpenGl) [closed]

Hello I want to create a nice 3D scene to show some 3D models. How I should manage the lighting to made models appear quite 3D! Some thing like Solidworks! How many light source I need? Directional or ...
0
votes
1answer
223 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
3answers
113 views

Please help with 3d shading/lighting

How do you guys handle shading in a 3d game? I have a directional light source that shades one side of a tree made of cubes. The remaining 3 sides all get ambient shading only. So the 3d effect is ...

1 2