Installing Vulkan SDK on Windows

I downloaded Vulkan SDK and installed Vulkan Hardware Capability Viewer at C:\VulkanSDK\1.3.236.0\Bin\vulkanCapsViewer.exe:

and Vulkan Congurator at C:\VulkanSDK\1.3.236.0\Bin\vkconfig.exe:

Along with headers at C:\VulkanSDK\1.3.236.0\Include and libraries at C:\VulkanSDK\1.3.236.0\Lib.

7 Responses to Installing Vulkan SDK on Windows

  1. dmitriano says:

    Also I installed perfetto-31.0
    And read Vulkan docs: https://vulkan-tutorial.com/Development_environment

  2. dmitriano says:

    GLES layers:
    https://developer.android.com/ndk/guides/rootless-debug-gles

    Vulkan validation layers on Android:
    https://developer.android.com/ndk/guides/graphics/validation-layer
    Validation layers rely on a general purpose layering mechanism that intercepts API entry points.

    Vulkan-ValidationLayer binaries for 1.3.236.0 SDK release:
    https://github.com/KhronosGroup/Vulkan-ValidationLayers/releases

  3. dmitriano says:

    8. Render Pass
    https://registry.khronos.org/vulkan/specs/1.3-extensions/html/chap8.html
    Draw commands must be recorded within a render pass instance. Each render pass instance defines a set of image resources, referred to as attachments, used during rendering.
    To begin a render pass instance, call:
    void vkCmdBeginRendering(VkCommandBuffer, const VkRenderingInfo*)

  4. dmitriano says:

    21. Drawing Commands
    https://registry.khronos.org/vulkan/specs/1.3-extensions/html/chap21.html
    Drawing commands (commands with Draw in the name) provoke work in a graphics pipeline. Drawing commands are recorded into a command buffer and when executed by a queue, will produce work which executes according to the bound graphics pipeline. A graphics pipeline must be bound to a command buffer before any drawing commands are recorded in that command buffer.

  5. dmitriano says:

    Kohi #024: Vulkan Graphics Pipeline (Vulkan Game Engine Series)
    https://www.youtube.com/watch?v=KanKG-vd9GA

    Vulkan Graphics Pipeline Components
    https://www.youtube.com/watch?v=ycLJ2UrKLdw

Leave a Reply to dmitriano Cancel reply

Your email address will not be published. Required fields are marked *