Tagged Questions
Process of applying (adjusting) brightness to objects on scene. Tightly related to computer games' engines and 3d graphics software.
23
votes
9answers
2k views
Calculating which tiles are lit in a tile-based game (“raytracing”)
I'm writing a little tile-based game, for which I'd like to support light sources. But my algorithm-fu is too weak, hence I come to you for help.
The situation is like this: There is a tile-based map ...
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
101 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
3answers
208 views
Fast 2D illumination algorithm?
We have a rectangular area with translucent walls and a few light sources.We are considering only the top view,so it is a 2D problem. We need to find the approximate lighting (signal strength)at each ...
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.
5
votes
4answers
1k views
Adaptive threshold Binarization's bad effects
I implemented some adaptive binarization methods, they use a small window and at each pixel the threshold value is calculated. There are problems with these methods:
If we select the window size too ...
4
votes
1answer
172 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
36 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
315 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
214 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
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 ...
3
votes
14answers
1k views
What kind of light environment do you prefer to work in? [closed]
What type of light do you prefer to be working in? How do you have your light source(s) situated? Wattage? Any particular lamp recommendations?
Is there any sort of lighting environment that you ...
3
votes
2answers
656 views
How do I make the lights stay fixed in the world with Direct3D
I've been using OpenGL for years, but after trying to use D3D for the first time, I wasted a significant amount of time trying figure out how to make my scene lights stay fixed in the world rather ...
2
votes
1answer
95 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
193 views
Light source inside a room acting unexpectedly
I've written several Android apps, but this is my first experience with 3D programming.
I've created a room (4 walls, ceiling and floor) with a couple objects inside and am able to move the camera ...
2
votes
1answer
542 views
Cocos2d & Box2d dynamic lighting and shadows
I'm looking to start building an iPhone app and I was wondering if it was possible to create dynamic lighting/shadows using the Cocos2d/Box2D combo? I have worked with these before and would like to ...
2
votes
0answers
222 views
Design patterns for lighting in XNA 4.0 for Xbox 360?
I am wondering if anyone has any good patterns for handling lighting in XNA for the Xbox 360. I am currently trying to implement a spotlight component. I have read about deferred shading as a means ...
2
votes
1answer
347 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
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
4answers
486 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
429 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
240 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
1answer
49 views
Are there any algorithms for removing lighting from a video?
Are there any algorithms for removing lighting from video? I have a video in which some objects are too strongly lit. How might I remove lighting from that objects without corrupting the entire video?
...
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 ...
2
votes
3answers
813 views
Recommended 3D Programming Aspects for Light/Laser Show Simulator?
Hey guys, I would like to develop a light/laser show editor and simulator, and for this of course I am going to learn some graphics programming. I am thinking about using C# and XNA.
I was just ...
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
70 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
1answer
184 views
Maximum number of point lights with Three.js
I'm trying to light up each side of a cube in my Three.js scene by using point lights. However it seems that only 4 of the 6 lights I add to the scene are actually rendered as the top and bottom faces ...
1
vote
1answer
78 views
Unusual Lighting Effects - Random Polygons Coloured
I am working on creating an object loader for use with iOS, I have managed to load the vertices, normals and face data from and OBJ file, and then place this data into arrays for reconstructing the ...
1
vote
2answers
131 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
132 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
421 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
101 views
2d platformer light sources
Making a prototype for a platformer that uses moving and stationary light sources and encountering some tricky problems and just basically looking for some sort of workaround or alternate solution.
...
1
vote
1answer
135 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
150 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
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
475 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
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
2answers
485 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
350 views
Deferred shading, normal mapping and self-shadowing surfaces pointing away from light
I bumped into a problem with normal mapping and surfaces pointing away from light. These surfaces should not be lit at all since they are not facing the light. However, it is possible that quite a few ...
1
vote
1answer
309 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
2answers
2k views
Why isn't this Android specular lighting example working as intended?
Why aren't specular highlights showing up in the binary produced by the following code?
package com.example.helloandroid;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import ...
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
193 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
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 ...
1
vote
1answer
172 views
Tryton as a CalDAV server
Has any of You any experience with using Tryton as a CalDAV server ?
How does it perform ?
How does perform Mozilla Sunbird / Thunderbird-lighting as a client ?
Is it ready to apply in real business ...
1
vote
2answers
512 views
Issue with Android OpenGLES lighting
Hey all,
I'm writing a little 3D engine for android to better learn the platform and opengl. I hope to eventually use it as a base for little 3D games.
I'm trying to implement lighting right ...