returns the debug name of the specified buffer or "unknown"
| 32 | |
| 33 | //! returns the debug name of the specified buffer or "unknown" |
| 34 | static inline const char* cmd_buffer_name(const vulkan_command_buffer& cmd_buffer) { |
| 35 | return (cmd_buffer.name != nullptr ? cmd_buffer.name : "unknown"); |
| 36 | } |
| 37 | |
| 38 | static inline VkPipelineStageFlagBits2 sync_stage_to_vulkan_pipeline_stage(const compute_fence::SYNC_STAGE stage) { |
| 39 | switch (stage) { |
no outgoing calls
no test coverage detected