tree: ac10057abbc243cea71cb417161a9ff2a38abda0 [path history] [tgz]
  1. android/
  2. doc/
  3. fuchsia/
  4. ggp/
  5. linux/
  6. mac/
  7. null/
  8. shaders/
  9. win32/
  10. BufferVk.cpp
  11. BufferVk.h
  12. BUILD.gn
  13. cl_types.h
  14. CLCommandQueueVk.cpp
  15. CLCommandQueueVk.h
  16. CLContextVk.cpp
  17. CLContextVk.h
  18. CLDeviceVk.cpp
  19. CLDeviceVk.h
  20. CLEventVk.cpp
  21. CLEventVk.h
  22. CLKernelVk.cpp
  23. CLKernelVk.h
  24. CLMemoryVk.cpp
  25. CLMemoryVk.h
  26. CLPlatformVk.cpp
  27. CLPlatformVk.h
  28. CLProgramVk.cpp
  29. CLProgramVk.h
  30. CLSamplerVk.cpp
  31. CLSamplerVk.h
  32. CommandProcessor.cpp
  33. CommandProcessor.h
  34. CompilerVk.cpp
  35. CompilerVk.h
  36. ContextVk.cpp
  37. ContextVk.h
  38. DebugAnnotatorVk.cpp
  39. DebugAnnotatorVk.h
  40. DeviceVk.cpp
  41. DeviceVk.h
  42. DisplayVk.cpp
  43. DisplayVk.h
  44. DisplayVk_api.h
  45. FenceNVVk.cpp
  46. FenceNVVk.h
  47. FramebufferVk.cpp
  48. FramebufferVk.h
  49. gen_vk_format_table.py
  50. gen_vk_internal_shaders.py
  51. gen_vk_mandatory_format_support_table.py
  52. GlslangWrapperVk.cpp
  53. GlslangWrapperVk.h
  54. ImageVk.cpp
  55. ImageVk.h
  56. MemoryObjectVk.cpp
  57. MemoryObjectVk.h
  58. OverlayVk.cpp
  59. OverlayVk.h
  60. OWNERS
  61. PersistentCommandPool.cpp
  62. PersistentCommandPool.h
  63. ProgramExecutableVk.cpp
  64. ProgramExecutableVk.h
  65. ProgramPipelineVk.cpp
  66. ProgramPipelineVk.h
  67. ProgramVk.cpp
  68. ProgramVk.h
  69. QueryVk.cpp
  70. QueryVk.h
  71. README.md
  72. RenderbufferVk.cpp
  73. RenderbufferVk.h
  74. RendererVk.cpp
  75. RendererVk.h
  76. RenderTargetVk.cpp
  77. RenderTargetVk.h
  78. ResourceVk.cpp
  79. ResourceVk.h
  80. SamplerVk.cpp
  81. SamplerVk.h
  82. SecondaryCommandBuffer.cpp
  83. SecondaryCommandBuffer.h
  84. SemaphoreVk.cpp
  85. SemaphoreVk.h
  86. ShaderVk.cpp
  87. ShaderVk.h
  88. SurfaceVk.cpp
  89. SurfaceVk.h
  90. SyncVk.cpp
  91. SyncVk.h
  92. TextureVk.cpp
  93. TextureVk.h
  94. TransformFeedbackVk.cpp
  95. TransformFeedbackVk.h
  96. UtilsVk.cpp
  97. UtilsVk.h
  98. VertexArrayVk.cpp
  99. VertexArrayVk.h
  100. vk_cache_utils.cpp
  101. vk_cache_utils.h
  102. vk_caps_utils.cpp
  103. vk_caps_utils.h
  104. vk_command_buffer_utils.h
  105. vk_format_map.json
  106. vk_format_table_autogen.cpp
  107. vk_format_utils.cpp
  108. vk_format_utils.h
  109. vk_helpers.cpp
  110. vk_helpers.h
  111. vk_internal_shaders_autogen.cpp
  112. vk_internal_shaders_autogen.gni
  113. vk_internal_shaders_autogen.h
  114. vk_mandatory_format_support_data.json
  115. vk_mandatory_format_support_table_autogen.cpp
  116. vk_mem_alloc_wrapper.cpp
  117. vk_mem_alloc_wrapper.h
  118. vk_utils.cpp
  119. vk_utils.h
  120. vk_wrapper.h
  121. VkImageImageSiblingVk.cpp
  122. VkImageImageSiblingVk.h
  123. VulkanSecondaryCommandBuffer.cpp
  124. VulkanSecondaryCommandBuffer.h
Source/ThirdParty/ANGLE/src/libANGLE/renderer/vulkan/README.md

ANGLE: Vulkan Back-end

ANGLE's Vulkan back-end implementation lives in this folder.

Vulkan is an explicit graphics API. It has a lot in common with other explicit APIs such as Microsoft‘s D3D12 and Apple’s Metal. Compared to APIs like OpenGL or D3D11 explicit APIs can offer a number of significant benefits:

  • Lower API call CPU overhead.
  • A smaller API surface with more direct hardware control.
  • Better support for multi-core programming.
  • Vulkan in particular has open-source tooling and tests.

Back-end Design

The RendererVk class represents an EGLDisplay. RendererVk owns shared global resources like the VkDevice, VkQueue, the Vulkan format tables and internal Vulkan shaders. The ContextVk class implements the back-end of a front-end OpenGL Context. ContextVk processes state changes and handles action commands like glDrawArrays and glDrawElements.

Command recording

The back-end records commands into command buffers via the following ContextVk APIs:

  • beginNewRenderPass: Writes out (aka flushes) prior pending commands into a primary command buffer, then starts a new render pass. Returns a secondary command buffer inside a render pass instance.
  • getOutsideRenderPassCommandBuffer: May flush prior command buffers and close the render pass if necessary, in addition to issuing the appropriate barriers. Returns a secondary command buffer outside a render pass instance.
  • getStartedRenderPassCommands: Returns a reference to the currently open render pass' commands buffer.

The back-end (mostly) records Image and Buffer barriers through additional CommandBufferAccess APIs, the result of which is passed to getOutsideRenderPassCommandBuffer. Note that the barriers are not actually recorded until getOutsideRenderPassCommandBuffer is called:

  • onBufferTransferRead and onBufferComputeShaderRead accumulate VkBuffer read barriers.
  • onBufferTransferWrite and onBufferComputeShaderWrite accumulate VkBuffer write barriers.
  • onBuffferSelfCopy is a special case for VkBuffer self copies. It behaves the same as write.
  • onImageTransferRead and onImageComputerShadeRead accumulate VkImage read barriers.
  • onImageTransferWrite and onImageComputerShadeWrite accumulate VkImage write barriers.
  • onImageRenderPassRead and onImageRenderPassWrite accumulate VkImage barriers inside a started RenderPass.

After the back-end records commands to the primary buffer and we flush (e.g. on swap) or when we call ContextVk::finishToSerial, ANGLE submits the primary command buffer to a VkQueue.

See the code for more details.

Simple command recording example

In this example we'll be recording a buffer copy command:

    // Ensure that ANGLE sets proper read and write barriers for the Buffers.
    vk::CommandBufferAccess access;
    access.onBufferTransferWrite(dstBuffer);
    access.onBufferTransferRead(srcBuffer);

    // Get a pointer to a secondary command buffer for command recording.
    vk::CommandBuffer *commandBuffer;
    ANGLE_TRY(contextVk->getOutsideRenderPassCommandBuffer(access, &commandBuffer));

    // Record the copy command into the secondary buffer. We're done!
    commandBuffer->copyBuffer(srcBuffer->getBuffer(), dstBuffer->getBuffer(), copyCount, copies);

Additional Reading

More implementation details can be found in the doc directory: