Process of applying (adjusting) brightness to objects on scene. Tightly related to computer games' engines and 3d graphics software.

learn more… | top users | synonyms

0
votes
0answers
22 views

Objects not lit using directional light OpenGL

I know what is a directional light (for it, it matters only the direction and not the position) but when using OpenGL I positioned the light far away from the scene and my objects were not lit. Is ...
0
votes
0answers
6 views

2 or more lightings in lwjgl?

How can I make multiple lights in lwjgl? example ligthing from north ,west,east,and south on a 3d dimension. I tried to do this but it didint work on my render method glLight(GL_LIGHT0, GL_POSITION, ...
0
votes
0answers
8 views

Multiple lighting in lwjgl?

Is there a way of doing a multiple lighting in lwjgl? I was planning to create a simulation of light that need multiple lighthing source like light from north , south , east and west in a 3d ...
21
votes
4answers
1k views

Improved Area Lighting in WebGL & ThreeJS

I have been working on an area lighting implementation in WebGL similar to this demo: http://threejs.org/examples/webgldeferred_arealights.html The above implementation in three.js was ported from ...
1
vote
1answer
31 views

Grid-based lighting engine

I am trying to create a grid-based shadow engine using JavaScript. My algorithm shades squares based on whether their position is 'behind' a block, relative to a light source. This is my algorithm ...
0
votes
0answers
49 views

OpenGL ground plane becoming black at certain perspectives

I have a simple program in OpenGL that creates a ground plane, randomly placed tree objects, and has some lightning. There is an issue with the lightning that I am unable to solve. When the camera at ...
0
votes
0answers
56 views

How to make the lighting in OpenGL more visually pleasant?

I need a rendering platform to show the result of my mesh processing algorithm, it's quite basic and easy, I've had it done, except that the default lighting from OpenGL is a little weird. My ...
1
vote
0answers
32 views

Raytracing luminescence/bioluminescence

I'm looking for papers on how to render (bio)luminescence using a raytracer and I was wondering if anyone here had any suggestions on where to look or if you happen to already know of any in-depth ...
0
votes
0answers
32 views

Set OpenGL background color with lighting enabled

I want to set a background color for my OpenGL canvas. Ususally, I use the glClearColor method and then gl.glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); It worked fine until I needed to enable ...
1
vote
1answer
42 views

Is it possible to import/process advanced light attributes (IES) in WebGL?

IES (Illuminating Engineering Society) is a file format (.ies) that enhances lights in animation tools. It adds accurate falloff, dispersion, color temperature, spatial emission, brightness and stuff ...
1
vote
2answers
103 views

Light and shadow not working in opengl and c++

I am creating the solar system and I keep running into problems with the lighting. The first problem is that the moon casts no shadows on the earth and the earth casts no shadows on the moon. The ...
4
votes
1answer
83 views

Sun as a light source using opengl and c++

I am working on the solar system and I am trying to get the sun to be the central light source of this program but it's not working the way I thought it would. Here is a picture of what I have ...
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
1answer
31 views

opengl es 2.0 specular lighting

this is my very first post here but I'm banging my head against a wall trying to figure out this problem. The code below is my fragment shader for an incredibly simple Opengl es 2.0 app. The vertex ...
1
vote
1answer
62 views

Lighting not working on OpenGL - Solid color

The lighting doesn't work, the object appears with solid color. The color itself changes with the material or lighting parameters but no shadow or anything just solid grey. Here's part of the code: ...
0
votes
0answers
36 views

Only way to get sharp lighting in Unity?

I'm creating a mesh via a script in Unity, and I'm trying to get a sharp lighting effect on each face. Think old 1980s graphics. I've found two ways, labelled 1 and 2 in my (awful) diagram below. 1 ...
0
votes
2answers
60 views

Difference between positioned and direct light in C++ OpenGL?

I just did a tutorial from videotutorialsrock.com on lighting in C++ OpenGL. I understand ambient light, but don't understand the difference between positioned light and direct light, since the idea ...
0
votes
0answers
40 views

projecting light and shadows on a surface

Hi I am trying to extract the lighting and the shadow from one surface and apply it to another type of surface. I convert the image to HSV and extract the Hue component and plot it which seems to give ...
0
votes
1answer
40 views

Direct2D - using lighting effects in direct2d

I got the direct2d lighting sample from http://code.msdn.microsoft.com/windowsapps/Direct2D-lighting-effects-e0801da3 URL. The sample looks very impressive, but what I don't understand is that after ...
2
votes
1answer
186 views

How can I add a normal to a text mesh so that it lights correctly?

I'm using a text mesh to place text on a 3D object, but as you all know, the text mesh does not have any normals... http://docs.unity3d.com/Documentation/Components/class-TextMesh.html ...so it does ...
0
votes
1answer
40 views

lighting and collision detection

I've developed a simple game: an object (cube) moves across the screen. When hitting an object, the color changes from red to black. A single light source is being used. The problem: when lighting is ...
2
votes
1answer
229 views

Deferred Rendering with Tile-Based culling Concept Problems

EDIT: I'm still looking for some help about the use of OpenCL or compute shaders. I would prefer to keep using OGL 3.3 and not have to deal with the bad driver support for OGL 4.3 and OpenCL 1.2, but ...
0
votes
1answer
47 views

Panda 3d Collada help c++

So I'm new to Panda 3D in c++ and I have created collada files or dae files to show in panda 3d. When I view them in pview, they show up without color or texture. So if I press the L hotkey, color ...
0
votes
1answer
144 views

Lighting a 2D Tile Map in XNA

I have a quick question for those who know XNA and Color theory in computer graphics well. I am making a tile game (a bit like Terraria), and I was wondering how to go about applying per-tile lighting ...
0
votes
1answer
70 views

webGL ambient lighting without textures on object

I have been following these tutorials which were good, but I can't seem to figure out how to light an object which doesn't have a texture on in. I mean that the shader given in the tutorials doesn't ...
0
votes
1answer
108 views

OpenGL ES 2.0 iOS spot light incorrect with increasing distance

I'm currently implementing a spot light in Open GL ES 2.0 on iOS. All my lighting calculations are done in world space (i.e. I pass world space coords to the shaders). I have placed a floor mesh ...
0
votes
2answers
155 views

LWJGL - Simple lighting

i want to code a little minecraft clone. Now i tried to insert some simple lighting but my results are very bad. I read much about it and i tried different solutions without any result. Thats what i ...
1
vote
0answers
75 views

OpenGL lighting: half of triangles not lit

I'm using the marching cubes algorithm described here http://paulbourke.net/geometry/polygonise/ to turn a scalar field into a triangle mesh, and then displaying the mesh using OpenGL's GL_TRIANGLES ...
0
votes
0answers
43 views

glMaterialf breaks lighting when disabled, and triangle strips when enabled

I'm trying to convert my terrain from normal triangles to triangle strips in OpenGL, but I'm having a bit of a problem. Without calling glMaterialf, the triangle strips draw properly, but a model ...
0
votes
0answers
61 views

Java - Tile based lighting issue

I have an issue where my tile based lighting code is not functioning properly going up and left. It works properly going right and downward (see image), but only goes one tile to the left/up and ...
1
vote
1answer
177 views

Normal calculations in vertex shader?

I'm using the rastertek framework for terrain generation. I've got the terrain rendered from the vertex shader but I don't know how to calculate the normals in the shader. Theres a function call in ...
2
votes
1answer
143 views

Drawing normals in LWJGL messes with lighting

My issue is fairly straightforward: Drawing normals in LWJGL causes the light source to only apply to the model until it is manually updated after initialization. Here's the lighting initialization: ...
0
votes
1answer
100 views

2D Software Lighting Issues in Java

I'm creating a 2D top-down tiled game in pure Java and by now I'm trying to implement a way to do lighting. First, some details on how I render: there is a screen class which handles all the ...
2
votes
2answers
403 views

Realistic lighting (sunlight) with Three.js?

I'm attempting to create a small 1st-person game using Three.js, but I'm having trouble with the lighting. Basically I want to simulate the sun and have it rotate around casting light on everything. ...
3
votes
1answer
193 views

In a TBN Matrix are the normal, tangent, and bitangent vectors always perpendicular?

This is related to a problem described in another question (images there): Opengl shader problems - weird light reflection artifacts I have a .obj importer that creates a data structure and ...
-1
votes
1answer
76 views

LWJGL Lighting.. light point doesnt act as point of light?

I have a simple cube at (0,0,0) and a point of light at (10,0,0). For some reason both the right and left sides of my cube are illuminated. So opposite sides of the cube are lighting up. Im using ...
0
votes
1answer
59 views

OpenGL normals misunderstanding?

I'm trying to get my lighting to work in OpenGL, using LWJGL as an implementation library. The problem I think I'm having, is that I don't set my normals properly and therefore the lighting doesn't ...
2
votes
1answer
47 views

Multiple Rooms with Lights

I'm in a bit of a predicament and I'm sure I'm not the first one to run into this problem. I'm trying to model an office building with multiple rooms. I want the player to be able to turn the lights ...
1
vote
1answer
413 views

OpenGL flat shading - Strange lighting behaviour

I have a slight issue with my OpenGL lighting. It's rendering the model (Utah Teapot) just fine, but I have some weird lighting patterns. The model should be flat shaded with a single ambient light ...
0
votes
0answers
71 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; ...
1
vote
1answer
85 views

Rendering lighting

I have a small block engine similar to a very early version of Minecraft using LWJGL. I now want to actually implement lighting. I understand how it works I'm just confused as to how I'm supposed to ...
0
votes
4answers
340 views

Increasing specular shininess decreases lighting in OpenGL

I've got an issue with changing the specular power component in my opengl 4.3 shader. What happens is the specular is working fine when I use a shininess value of between 0-10, however, as the value ...
1
vote
0answers
66 views

References for 2d dynamic lighting in iOS environment.

I'm looking to implement 2d dynamic lighting in my Cocos2d game project similar to the video link below. https://www.youtube.com/watch?v=mVlYsGOkkyM I believe that I need to look into OpenGL, but ...
2
votes
0answers
86 views

Fixed (in world coordinates) lighting position in LWJGL?

I have some cube models and a lantern model in the "world" (with normals) and a light source which is placed in specific coordinates. The problem comes when I try move around the models, position of ...
1
vote
2answers
126 views

C++ OpenGL lighting only lights certain walls

I am lighting my scene in opengl and there are 4 walls, only 2 of them are being lit. I think it is something wrong with the normals but I am not sure. This is the lighting code: ...
0
votes
1answer
106 views

OpenGL: Easy way of stopping light at vertexes?

I have a scene built in OpenGL. When my light is in the center of the room, the outside of the room is lit. Is there any easy way to make OpenGl stop the lighting at vertexes, or will it require ...
0
votes
1answer
343 views

SharpDX. truble with lighting

I'm using SharpDX d3d9 to make sphere with lighting effect. so, I tryed below code. var direct3D = new Direct3D(); var device = new SharpDX.Direct3D9.Device(direct3D, 0, ...
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 ...
1
vote
0answers
117 views

How can I create a 3D line object in Matlab which I can light using a light object?

I have 3 vectors which specify the X, Y, and Z coordinates of various points on a line in 3-space. I plot them using plot3, i.e. plot3(X,Y,Z,'go-','LineWidth',4,'MarkerSize',32); grid on to get a ...

1 2 3 4 5