The shadow-mapping tag has no wiki summary.
0
votes
0answers
15 views
Shadow Mapping Wobble
Ive been researching omnidirectional shadow mapping and have been stuck on this problem for a while. Basically the shadows seem to wobble as the camera is moved or rotated. I made a video here:
...
1
vote
0answers
52 views
Wrong texture coords from FBO
I'm working on chess game and implementation of some graphic algoritms in C++ and OpenGL. Now I'm working on shadow mapping, I render depth map to texture, everything is fine until I rotate the world.
...
0
votes
0answers
41 views
Shadow Map too big
All is OK in the shader map texture, but the is scaled (too big).
The coord texture:
mat4 bias = mat4(0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.5, 0.5, 1.0);
ShadowCoord ...
1
vote
1answer
35 views
Problems caused by depth-stencil buffer created by default
I'm learning from a sample in DirectX SDK on shadow map. This sample created a stencil surface during initialization, and says:
Create the depth-stencil buffer to be used with the shadow map
We do ...
1
vote
1answer
64 views
incomplete attachment using GL_TEXTURE_2D_ARRAY with depth component
I'm trying to use opengl texture arrays for storing a lot of shadow maps.
Unfortunately, I always get an "incomplete attachment" error on checking the framebuffer.
I tried to set up my texture array ...
3
votes
1answer
116 views
OpenGL Shadow Map
I am trying to do a basic shadow map but for some reason It doesn't render properly.
Video of the Problem
I render the house using a flat shader:
int shadowMapWidth = WINDOW_SIZE_X * ...
3
votes
1answer
148 views
2d shadow mapping
I have been wondering about how to implement this with openGL:
I have a map, with a flat floor and walls. Every thing here is 2d, there is no 3d geometry, only 2d poligons that compose the map.
...
2
votes
1answer
234 views
Shadow map projection in deferred rendering (OpenGL 3.3)
I have a working G-buffer (color, normal, depth) and for each spot light, I have the depth map from the light's point of view. The problem is in the lighting map phase, I can't get it to work. Could ...
2
votes
0answers
75 views
Depth Stencil and Shadow resource empty
After Spending about 3 days trying to get shadow mapping to work I'm having some trouble getting the shadow mapped passed in to the shaders.
First I initialize the depth stencil and the resource ...
1
vote
1answer
259 views
OpenGL ES 2.0 - Rendering depth buffer
I have read some tutorials and trying to wrap my head around OpenGL ES 2.0. While trying to create a depth buffer, my JVM crashes. Btw I am using LibGDX framework.
IntBuffer depthBuffer = ...
1
vote
1answer
126 views
Bias matrix in shadow mapping confuse
I have confused about bias matrix in shadow mapping. According this question: bias matrix in shadow mapping, bias matrix is used to scale down and translate to [0..1]x and [0..1]y. So I image that if ...
7
votes
1answer
490 views
Odd OpenGL shadow mapping behaviour
I am working on a 3D game in C++ and OpenGL 3.2 with SFML. I have been struggling to implement point light shadow mapping. What I have done so far seems to conform to what I have learnt and examples ...
2
votes
1answer
103 views
ShadowMap confuse
I am confused about shadow mapping. Here's what I've understood (folowing steps are not working:) )
How to get profit (please don't get confused about the code, it is roughly because I write on ...
0
votes
1answer
150 views
shadowmapping opengl glsl shader graphics math
i'm having difficulties understanding the math between the different shader stages.
in the fragment shader from the lights perspective i basically write out the fragDepth to rgb color
#version 330
...
0
votes
1answer
202 views
OpenGL depth texture artifacts
I'm implementing shadow mapping for my little 3d engine. However, there seem to be artifacts in the depth texture, which can be seen by using the texture and observing the shadows, or drawing the ...
11
votes
1answer
568 views
Pointers on modern OpenGL shadow cubemapping?
Background
I am working on a 3D game using C++ and modern OpenGL (3.3). I am now working on the lighting and shadow rendering, and I've successfully implemented directional shadow mapping. After ...
3
votes
1answer
336 views
Omnidirectional Shadow Mapping Spot Lights
I was implementing omnidirectional shadow mapping in a deferred renderer but am having trouble solving this problem:
Here is a picture:
This is what happened when I just position six spot lights ...
15
votes
1answer
346 views
Shadow Mapping - artifacts on thin wall orthogonal to light
I'm having an issue with back faces (to the light) and shadow mapping that I can't seem to get past. I'm still at the relatively early stages of optimizing my engine, however I can't seem to get there ...
0
votes
1answer
1k views
OpenGL|ES add shadow / shadow mapping
What is the easiest way to add shadows to a 3d Object?
I have objects information(vertices, texCoordinates, normals, indices) stored in arrays.
There are some frameworks like isgl3d for iOS that ...
4
votes
1answer
991 views
How to use a single shadow map for multiple point light sources?
As I understand it, shadow-mapping is done by rendering the scene from the perspective of the light to create a depth map. Then you re-render the scene from the POV of the camera, and for each point ...
