Тёмный
No video :(

Basic Shadow Mapping // OpenGL Tutorial #35 

OGLDEV
Подписаться 10 тыс.
Просмотров 22 тыс.
50% 1

Опубликовано:

 

4 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 62   
@tranxn7971
@tranxn7971 2 года назад
Awesome, thanks a lot for all your work and great tutorials ! You deserve much more views.
@OGLDEV
@OGLDEV 2 года назад
Thanks a lot!
@pb5821
@pb5821 2 года назад
hello. i m french. i m a big fan of your tutorials. i know they are exclusively opengl. but i wonder if you could, ad exception, make a tutorial on 3d collisions please? thanks again for your videos, they are very clear! keep on making them!
@OGLDEV
@OGLDEV 2 года назад
Thanks! It's true that right now I'm focusing on OpenGL but in the future I plan to branch out to more game development topics, including collision detection. However, this is a big topic and will require some research. I'll try to do something in between my regular videos. Possible after a few more light and shadow tutorials.
@pb5821
@pb5821 2 года назад
@@OGLDEV nice!
@SBH618
@SBH618 Год назад
Doing the lord's work
@OGLDEV
@OGLDEV Год назад
Wow! Thank you!
@maheshmahindrakar1884
@maheshmahindrakar1884 2 года назад
Really awesome explaination 👍
@OGLDEV
@OGLDEV 2 года назад
Thanks a lot 😊
@cromartie3292
@cromartie3292 2 года назад
Great, thanks for the video!
@OGLDEV
@OGLDEV 2 года назад
My pleasure!
@killcode6717
@killcode6717 Год назад
Earned a subscribe
@OGLDEV
@OGLDEV Год назад
Welcome!
@therealjtgill
@therealjtgill 2 года назад
Awesome video!
@OGLDEV
@OGLDEV 2 года назад
Glad you enjoyed it
2 года назад
I feel we are gonna see a cascade of these videos
@OGLDEV
@OGLDEV 2 года назад
Probably... ;-)
@undeadpresident
@undeadpresident Месяц назад
I'm wondering why the perspective division has to be done in the fragment shader rather than the vertex shader? For gl_Position I've tried doing the division by W in the vertex shader and just set the W value to 1.0, and appeared to have got the same result. I'm supposing there's more difference in the calculations done to gl_Position vs other variables between vertex and fragment shaders than just dividing by W, but I don't know what they are exactly or how to predict them since I can't print the values.
@OGLDEV
@OGLDEV Месяц назад
Are you referring to the position from the light point of view? If that's the case then the system is designed for rendering from only a single camera position. This goes into gl_Position and if you need another camera position you have no choice but to do this manually. In terms of vertex shader vs fragment shader - remember that by default the rasterizer performs perspective correct interpolation (taking into account the fact that the triangle is not perpendicular to the viewer in 3D, even though it looks like that in 2D) so things like that are usually more accurate in the fragment shader.
@undeadpresident
@undeadpresident Месяц назад
@@OGLDEV Yeah I'm referring to the LightSpacePos. I'm finding it really difficult to understand what the math is doing since all this automatic stuff is being done in the shaders and I can't view the numerical output.
@OGLDEV
@OGLDEV Месяц назад
That's the problem with the graphics pipeline which you can't directly debug like you're used to. Try to use RenderDoc. It adds a lot of visual stuff like showing you how the model looks like after the vertex shader which is often useful.
@mortezabahrami2407
@mortezabahrami2407 Год назад
Hello. how is going? Can we develop a program like Maya or 3ds max by OpenGL? What about 2d animation engine or any 2d graphic program? thankyou
@OGLDEV
@OGLDEV Год назад
Yes. If you want to take advantage of the power of the GPU to do the rendering then you have to choose one of the available APIs. There really isn't a direct access to the GPU as with the CPU. You can also do 2D stuff using OpenGL. After all, the 3rd dimension is simply a combination of a projection matrix and the perspective divide mechanism in the GPU. Not sure how convenient the API itself is for 2D and how it stacks up against 2D specific APIs such as Direct2D.
@mortezabahrami2407
@mortezabahrami2407 Год назад
@@OGLDEV thanks a lot
@Xizilqou
@Xizilqou Год назад
Shadow volumes looks better
@OGLDEV
@OGLDEV Год назад
Each method can be improved in different ways and one method may look better than the other in different environments and settings.
@killereks
@killereks 7 месяцев назад
How do game engines like unity handle moving the sun so that it's in the frustum of the camera? I need to figure out the orientation and position of the directional light so that the camera shadows are always highest possible quality. Any resources on this?
@OGLDEV
@OGLDEV 7 месяцев назад
In the case of a directional light you only have a direction, there's no position. You will find a discussion about a tight intersection between the view frustum and the light volume here: learn.microsoft.com/en-us/windows/win32/dxtecharts/common-techniques-to-improve-shadow-depth-maps
@killereks
@killereks 7 месяцев назад
@@OGLDEV but for lightspace matrix u need a position, is that somehow excluded?
@OGLDEV
@OGLDEV 7 месяцев назад
For the light space matrix you use orthogonal projection so no need for position: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JiudfB4z1DM.html
@killereks
@killereks 7 месяцев назад
@@OGLDEV now im confused. Surely u need a position when rendering to the framebuffer? Otherwise the projection doesnt know what to include
@OGLDEV
@OGLDEV 7 месяцев назад
OK so it's not exactly a position per se. You define an orthogonal frustum with the usual six clipping planes which looks like a box. You need to make sure all the objects in the scene are within it and clip it against the view volume to make it as small as possible. No need to render stuff whose shadow cannot be seen (tricky because the object may be outside but the shadow inside).
@fudgeracoon2529
@fudgeracoon2529 2 года назад
Can you do a video about PBR next ?
@OGLDEV
@OGLDEV 2 года назад
I plan to do a PBR tutorial in the not very distant future. You may also want to check out the video by my buddy Victor Gordan: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-RRE-F57fbXw.html.
@OGLDEV
@OGLDEV Год назад
And here's my video! - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-XK_p2MxGBQs.html
@matanmigdal7108
@matanmigdal7108 2 года назад
if you want to do shadow map for multi light source?
@OGLDEV
@OGLDEV 2 года назад
You need a separate shadow map for each spot light. You do a series of shadow passes - one pass per light/shadow map. You bind all the shadow maps to your lighting shader and do a single lighting pass. For each light you calculate its own shadow factor. A fragment may be in shadow for one light and not for another. You sum up the contribution from all light sources as usual. I will cover this in one of the upcoming videos.
@EDFHLFLFF
@EDFHLFLFF 2 года назад
Hi, when I follow this tutorial in my project, my shadow map texture texture values all seem to be 0.0, any idea why that would be? (In the calcShadowFactor() function in the shader the depth variable is always 0.0)
@OGLDEV
@OGLDEV 2 года назад
Did you change the default depth value by calling glClearDepth? It should be 1. Try to output some color from the fragment shader in the shadow pass (instead of the empty shader) so that you can see what the light "sees". This requires not binding the shadow map so that everything will go to the screen instead.
@EDFHLFLFF
@EDFHLFLFF 2 года назад
@@OGLDEV Currently I've got it outputting a black and white light view, which has the expected depth. However the texture from sampler2D in the lighting shader still only samples the value 0.0 which is confusing me. Even when I swap the argument to the texture function (float depth = texture(my-texture, uvCoords).x ) (where my-texture is the texture I use for the scene) it still gives 0.
@OGLDEV
@OGLDEV 2 года назад
Make sure the shadow map is bound correctly for reading during the light pass (glActiveTexture, glBindTexture, set the index and not GL_TEXTURE* in the shader). You can use ApiTrace to verify the shadow map is created and bound correctly. If you believe it is bound you can replace it with an all white texture just to make sure you get 1. You can also hack the shader to display uvCoords in the window as color to check that it makes sense.
@EDFHLFLFF
@EDFHLFLFF 2 года назад
@@OGLDEV Finally found the issue, turns out when I was clearing my depth buffer with glClear(GL_DEPTH_BUFFER_BIT) I was doing it while the fbo was still unbound, and now my shadows are working
@OGLDEV
@OGLDEV 2 года назад
Excellent!
@glez3711
@glez3711 Год назад
I've tried implementing shadow mapping into my OpenGL program, but for whatever reason the objects captured in the shadow map dissapear and re-appear depending on the light's position (It's a directional light that moves left and right). Any help would be greatly appreciated.
@OGLDEV
@OGLDEV Год назад
Are you using an orthogonal projection matrix for the shadow pass? It may not be large enough and the object stays out of the frustum on some location of the light source.
@glez3711
@glez3711 Год назад
@@OGLDEV Nope, I'm using a perspective matrix for spot lights. I've tried switching up the perspective matrix that spot lights use with an orthogonal projection matrix, and the shadows work just fine (although they don't look as good given that now i'm using directional light shadows for a spot light).
@OGLDEV
@OGLDEV Год назад
Maybe the angle is simply not wide enough to capture the objects as the light moves left and right? If one matrix works and the other doesn't then it pretty much tells us the source of the problem.
@glez3711
@glez3711 Год назад
It's a possible explanation, however, if I push the light's position far back enough so that both objects are clearly within the shadow map's bounds at all times, they dissapear regardless and no shadows are casted. I am absolutely baffled by whatever witchcraft is going on in my program.
@OGLDEV
@OGLDEV Год назад
Try to track the shadow map using apitrace or any other debugging tool. It will help you understand the changes to the shadow map at the frame level. You should be able to pinpoint the exact frame where the object disappeared and debug from there.
Далее
Shadow Mapping Strikes Back // OpenGL Tutorial #36
10:56
SHADOWS! // Hazel Engine Dev Log
26:09
Просмотров 65 тыс.
😱ЖИВОЙ Чехол на Айфон🤪
00:38
Просмотров 246 тыс.
Introduction to shaders: Learn the basics!
34:50
Просмотров 328 тыс.
The OpenGL Software Ecosystem
13:51
Просмотров 6 тыс.
Interactive Graphics 16 - Shadow Mapping
1:06:47
Просмотров 11 тыс.
What is WebGPU?
14:09
Просмотров 63 тыс.
Ocean waves simulation with Fast Fourier transform
14:26
Making a Game With C++ and OpenGL
6:36
Просмотров 54 тыс.
Basic Lighting And Materials // OpenGL Tutorial #19
23:33
😱ЖИВОЙ Чехол на Айфон🤪
00:38
Просмотров 246 тыс.