Buffer Those Commands! // Vulkan For Beginners #8

Поделиться
HTML-код
  • Опубликовано: 28 сен 2024

Комментарии • 16

  • @OGLDEV
    @OGLDEV  4 месяца назад +2

    Clone the sources:
    git clone --recurse-submodules github.com/emeiri/ogldev.git
    If you want to get the same version that was used in the video you can checkout the tag 'VULKAN_08'.
    Build on Windows:
    Open the Visual Studio solution: ogldev\Windows\ogldev_vs_2022\ogldev_vs_2022.sln
    Build the project 'Vulkan\Tutorials\Tutorial08'

  • @PaulPaulPaulson
    @PaulPaulPaulson 4 месяца назад

    I knew most of WHAT vulkan is doing but this video really helps to understand WHY it's doing it that way. Thank you!

    • @OGLDEV
      @OGLDEV  4 месяца назад

      You're welcome!

  • @hrvatskistakor23
    @hrvatskistakor23 4 месяца назад +1

    Thank you for all your work. Your entire channel is consistent with good learning content.
    Vulkan is really hard for me to focus on when trying to read about it, don't even want to mention digging through examples, even though i find them easier to navigate recently.
    Having it explained in the video format really helps a lot. The more detail the better...💪💪💪

    • @OGLDEV
      @OGLDEV  4 месяца назад

      Happy to hear that!

  • @EMB3D
    @EMB3D 4 месяца назад +4

    great explanation, i like that you come from OGL and base the VK explanation on top of that ... i can't imagine how one learns starting from VK

    • @OGLDEV
      @OGLDEV  4 месяца назад +1

      Thanks :-) Maybe I need to call this series 'Vulkan For OpenGL developers'...

  • @vvgr409
    @vvgr409 4 месяца назад +2

    I like the fact that you compare Vulkan to OpenGL when you explain Vulkan. Learning Vulkan without any graphics experience is pretty hard and it's much easier to understand it when you know how Vulkan things can be translated to OpenGL.

    • @OGLDEV
      @OGLDEV  4 месяца назад

      Thanks!

  • @chrispizz1327
    @chrispizz1327 4 месяца назад +1

    Thank you , now I understand what you explained to me few weeks ago 👍

    • @OGLDEV
      @OGLDEV  4 месяца назад

      Glad to help!

  • @pynimp
    @pynimp 4 месяца назад

    what is this, i nee in this world, where is the start poin to learn?

    • @OGLDEV
      @OGLDEV  4 месяца назад

      ruclips.net/video/EsEP9iJKBhU/видео.html

  • @lavz24
    @lavz24 Месяц назад

    Why the command buffers are created in the app side, outside of the Core?

    • @OGLDEV
      @OGLDEV  Месяц назад

      The core provides command buffer creation as a service but only the app knows how many buffers it needs and what to put in them. The core is supposed to be generic so that it can be reused for as many apps as possible. Each app has different needs so it needs to manage its own buffers.

    • @lavz24
      @lavz24 Месяц назад

      @@OGLDEV Thanks for the answer! I did notice that in the tutorial #9