DD2018: Adam Sawicki - Porting your engine to Vulkan or DX12

Поділитися
Вставка
  • Опубліковано 6 жов 2024

КОМЕНТАРІ • 19

  • @-butyrolacton2682
    @-butyrolacton2682 4 роки тому +17

    advice on this high level is rare and pure gold.

  • @ProfessorWaltherKotz
    @ProfessorWaltherKotz 4 роки тому +12

    One of the best Vulkan talks I've seen so far.

  • @sc5shout
    @sc5shout 3 роки тому +4

    Dzięki mordo, dobry temat

  • @yasserarguelles6117
    @yasserarguelles6117 4 роки тому +4

    Thanks targeted videos. I just started porting to Vulkan yesterday!

  • @Bubatu7
    @Bubatu7 6 років тому +5

    This talk is full of valuable information, thank you!

  • @TheLavaBlock
    @TheLavaBlock 6 років тому +9

    Great talk and insights!

  • @deanroddey2881
    @deanroddey2881 3 роки тому +1

    Excellent presentation.

  • @iLAMV
    @iLAMV 6 років тому +3

    really interesting talk

  • @Kris0725PL
    @Kris0725PL 4 роки тому +2

    Podziwiam za wiedzę
    ...

  • @n8n8n8n
    @n8n8n8n 6 років тому +2

    I really hope it will be the Crysis 4 :D
    Best regards Adam!

  • @voxelamateur
    @voxelamateur Рік тому

    very useful talk to anyone writing a modern graphics engine. I feel bad for the guy - he's probably been bullied a lot for being too smart or shy.

  • @evannibbe9375
    @evannibbe9375 2 роки тому

    I feel like Vulkan developers really should have just provided an option like the std::shared_ptr that already exist in C++ in order to handle memory management as an option to avoid these problems.

  • @OperationDarkside
    @OperationDarkside 6 років тому +6

    I'm still a beginner with vulkan, but managing all the memory by yourself sounds like a lot of work. Do you really need some kind of alloc and dealloc with explicit memory indices for the GPU memory?

    • @TheLavaBlock
      @TheLavaBlock 6 років тому +10

      Check out: "Easy to integrate Vulkan memory allocation library" called "Vulkan Memory Allocator", see github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator (mentioned at 7:57)

    • @Leyvin
      @Leyvin 6 років тому +12

      While Memory Management is additional work and can be quite involved to get right... the benefits are more than worth the effort.
      Now as a "Beginner", what I'd recommend is something like: github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
      This should streamline and help to get something that just "Works" without focusing too much on the Memory Management aspect.
      When you want to later expand, you can then either replace / expand / edit … to be support your Engine, what you need, etc.
      NVIDIA likely also have ones as well... but the approaches are fairly Hardware Agnostic, so it's up to you.
      I'm sure as time goes on, we'll actually see more Memory Management API come from 3rd Parties that will allow for some measure of Template / Automation … but what's good about these being API Libraries (which in the case of AMD are Open Source), over OpenGL where it's entirely automated by the Drivers; is *YOU* as the Developer have options on how / when you want to engage in Low-Level Vs. High-Level.
      Like Compute Shaders (which were quite slowly adopted since their introduction in 2009), it isn't necessarily about "Out-of-the-Box" Performance... but rather the *potential* per scenario optimisation that becomes possible with experience, engine, approach, etc. that you have completely control over.
      You, in essence have the choice of how deep down that rabbit hole you're willing to go for Performance, Optimisation, etc.

    • @evannibbe9375
      @evannibbe9375 2 роки тому

      I feel like Vulkan developers really should have just provided an option like the std::shared_ptr that already exist in C++ in order to handle memory management as an option to avoid these problems.

  • @anutrix4629
    @anutrix4629 4 роки тому

    Here in 2020

  • @VVLGANESHK
    @VVLGANESHK 5 років тому

    Will it work for blender?