Process of applying (adjusting) brightness to objects on scene. Tightly related to computer games' engines and 3d graphics software.
0
votes
0answers
7 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
54 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
56 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
30 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
31 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
17 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
50 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
31 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
49 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
36 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
0answers
24 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 ...
-1
votes
0answers
57 views
c++ opengl 2d Color blending
I'm trying to make 2 lights blend and make there color blend.
The problem is that it makes hard lines where the Lights should blend,and the color overflow is also weird.
my code:
...
2
votes
1answer
112 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
36 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
167 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
42 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
126 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
55 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
87 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
126 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
66 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
38 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
52 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
122 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
119 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
89 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
258 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
164 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
58 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
56 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
44 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
332 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
66 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
74 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
285 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
74 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
98 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
97 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
303 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
91 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
103 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 ...
0
votes
0answers
48 views
Having trouble with depth test ( glut )
I am having trouble figuring out why my depth test is not working.
I am using codeblocks with glut/mingw.
Here is my code, oh and can anyone say why is my lighting so.. odd i gess .. ?
Controls :
...
0
votes
1answer
95 views
Ambient/Diffuse Lighting, get a final static diffuse shade color of vertex
I'm not sure if this is possible (or if I'm asking the right question). I have a vertices/indices and I render in a scene in DirectX 9.0. Now, I'd like to add ambient and diffuse lights, and then ...
0
votes
0answers
152 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
0answers
121 views
Is there a documentation on the Diffuse Global Illumination sample by Nvidia? [closed]
I am referring to the sample here: https://developer.nvidia.com/nvidia-graphics-sdk-11-direct3d (Diffuse Global Illumination)
The problem is,of all their samples,this is the only one that doesn't have ...
0
votes
1answer
134 views
Replacement for deprecated OpenGL: glEnum GL_LIGHTING
The books and websites I've gone through all tell me to use glEnable(GL_LIGHTING) to enable lighting. I've seen that this enum is now deprecated. What has superseded it and what other deprecated ...
1
vote
2answers
408 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
191 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 ...
1
vote
1answer
116 views
OpenGL lighting with vertex arrays
I'm just writing a simple program to draw voxels using a vertex array object. I can't get the lighting working properly when I run the program it looks the same as when lights are not enabled. Here ...