tree: c5353df007462bc59a3ffa6375721983afc8b244 [path history] [tgz]
  1. android/
  2. shaders/
  3. win32/
  4. xcb/
  5. BufferVk.cpp
  6. BufferVk.h
  7. CommandGraph.cpp
  8. CommandGraph.h
  9. CompilerVk.cpp
  10. CompilerVk.h
  11. ContextVk.cpp
  12. ContextVk.h
  13. DeviceVk.cpp
  14. DeviceVk.h
  15. DisplayVk.cpp
  16. DisplayVk.h
  17. FenceNVVk.cpp
  18. FenceNVVk.h
  19. FramebufferVk.cpp
  20. FramebufferVk.h
  21. gen_vk_format_table.py
  22. gen_vk_internal_shaders.py
  23. gen_vk_mandatory_format_support_table.py
  24. GlslangWrapper.cpp
  25. GlslangWrapper.h
  26. ImageVk.cpp
  27. ImageVk.h
  28. ProgramPipelineVk.cpp
  29. ProgramPipelineVk.h
  30. ProgramVk.cpp
  31. ProgramVk.h
  32. QueryVk.cpp
  33. QueryVk.h
  34. README.md
  35. RenderbufferVk.cpp
  36. RenderbufferVk.h
  37. RendererVk.cpp
  38. RendererVk.h
  39. RenderTargetVk.cpp
  40. RenderTargetVk.h
  41. SamplerVk.cpp
  42. SamplerVk.h
  43. ShaderVk.cpp
  44. ShaderVk.h
  45. SurfaceVk.cpp
  46. SurfaceVk.h
  47. SyncVk.cpp
  48. SyncVk.h
  49. TextureVk.cpp
  50. TextureVk.h
  51. TransformFeedbackVk.cpp
  52. TransformFeedbackVk.h
  53. UtilsVk.cpp
  54. UtilsVk.h
  55. VertexArrayVk.cpp
  56. VertexArrayVk.h
  57. vk_cache_utils.cpp
  58. vk_cache_utils.h
  59. vk_caps_utils.cpp
  60. vk_caps_utils.h
  61. vk_format_map.json
  62. vk_format_table_autogen.cpp
  63. vk_format_utils.cpp
  64. vk_format_utils.h
  65. vk_helpers.cpp
  66. vk_helpers.h
  67. vk_internal_shaders_autogen.cpp
  68. vk_internal_shaders_autogen.gni
  69. vk_internal_shaders_autogen.h
  70. vk_mandatory_format_support_data.json
  71. vk_mandatory_format_support_table_autogen.cpp
  72. vk_utils.cpp
  73. vk_utils.h
  74. vk_wrapper.h
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 is a singleton. RendererVk owns shared global resources like the VkDevice, VkQueue, the Vulkan format tables and internal Vulkan shaders. The back-end creates a new ContextVk instance to manage each allocated OpenGL Context. ContextVk processes state changes and handles action commands like glDrawArrays and glDrawElements.

Fast OpenGL State Transitions

Typical OpenGL programs issue a few small state change commands between draw call commands. We want the typical app's use case to be as fast as possible so this leads to unique performance challenges.

Vulkan in quite different from OpenGL because it requires a separate compiled VkPipeline for each state vector. Compiling VkPipelines is multiple orders of magnitude slower than enabling or disabling an OpenGL render state. To speed this up we use three levels of caching when transitioning states in the Vulkan back-end.

The first level is the driver's VkPipelineCache. The driver cache reduces pipeline recompilation time significantly. But even cached pipeline recompilations are orders of manitude slower than OpenGL state changes.

The second level cache is an ANGLE-owned hash map from OpenGL state vectors to compiled pipelines. See GraphicsPipelineCache in vk_cache_utils.h. ANGLE's GraphicsPipelineDesc class is a tightly packed 256-byte description of the current OpenGL rendering state. We also use a xxHash for the fastest possible hash computation. The hash map speeds up state changes considerably. But it is still significantly slower than OpenGL implementations.

To get best performance we use a transition table from each OpenGL state vector to neighbouring state vectors. The transition table points from GraphicsPipelineCache entries directly to neighbouring VkPipeline objects. When the application changes state the state change bits are recorded into a compact bit mask that covers the GraphicsPipelineDesc state vector. Then on the next draw call we scan the transition bit mask and compare the GraphicsPipelineDesc of the current state vector and the state vector of the cached transition. With the hash map we compute a hash over the entire state vector and then do a 256-byte memcmp to guard against hash collisions. With the transition table we will only compare as many bytes as were changed in the transition bit mask. By skipping the expensive hashing and memcmp we can get as good or faster performance than native OpenGL drivers.

Note that the current design of the transition table stores transitions in an unsorted list. If applications map from one state to many this will slow down the transition time. This could be improved in the future using a faster look up. For instance we could keep a sorted transition table or use a small hash map for transitions.