Basic Shadow Mapping // OpenGL Tutorial #35

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ต.ค. 2024

ความคิดเห็น • 62

  • @tranxn7971
    @tranxn7971 2 ปีที่แล้ว +12

    Awesome, thanks a lot for all your work and great tutorials ! You deserve much more views.

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว +2

      Thanks a lot!

  • @pb5821
    @pb5821 2 ปีที่แล้ว +5

    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 ปีที่แล้ว +3

      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 2 ปีที่แล้ว +2

    Doing the lord's work

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว

      Wow! Thank you!

  • @maheshmahindrakar1884
    @maheshmahindrakar1884 2 ปีที่แล้ว +1

    Really awesome explaination 👍

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว

      Thanks a lot 😊

  • @cromartie3292
    @cromartie3292 2 ปีที่แล้ว +1

    Great, thanks for the video!

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว +1

      My pleasure!

  • @therealjtgill
    @therealjtgill 2 ปีที่แล้ว +1

    Awesome video!

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว

      Glad you enjoyed it

  • @undeadpresident
    @undeadpresident 3 หลายเดือนก่อน

    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  3 หลายเดือนก่อน

      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 3 หลายเดือนก่อน

      @@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  3 หลายเดือนก่อน +1

      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.

  • @killcode6717
    @killcode6717 2 ปีที่แล้ว +1

    Earned a subscribe

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว

      Welcome!

  •  2 ปีที่แล้ว +2

    I feel we are gonna see a cascade of these videos

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว

      Probably... ;-)

  • @mortezabahrami2407
    @mortezabahrami2407 ปีที่แล้ว +1

    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  ปีที่แล้ว +1

      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

  • @killereks
    @killereks 9 หลายเดือนก่อน

    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  9 หลายเดือนก่อน

      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 9 หลายเดือนก่อน

      @@OGLDEV but for lightspace matrix u need a position, is that somehow excluded?

    • @OGLDEV
      @OGLDEV  9 หลายเดือนก่อน

      For the light space matrix you use orthogonal projection so no need for position: th-cam.com/video/JiudfB4z1DM/w-d-xo.html

    • @killereks
      @killereks 9 หลายเดือนก่อน

      @@OGLDEV now im confused. Surely u need a position when rendering to the framebuffer? Otherwise the projection doesnt know what to include

    • @OGLDEV
      @OGLDEV  9 หลายเดือนก่อน

      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 ปีที่แล้ว +1

    Can you do a video about PBR next ?

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว +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: th-cam.com/video/RRE-F57fbXw/w-d-xo.html.

    • @OGLDEV
      @OGLDEV  ปีที่แล้ว +2

      And here's my video! - th-cam.com/video/XK_p2MxGBQs/w-d-xo.html

  • @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.

  • @Xizilqou
    @Xizilqou ปีที่แล้ว +3

    Shadow volumes looks better

    • @OGLDEV
      @OGLDEV  ปีที่แล้ว +1

      Each method can be improved in different ways and one method may look better than the other in different environments and settings.

  • @matanmigdal7108
    @matanmigdal7108 2 ปีที่แล้ว

    if you want to do shadow map for multi light source?

    • @OGLDEV
      @OGLDEV  2 ปีที่แล้ว +1

      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.