| 421 | } |
| 422 | |
| 423 | static void NRI_CALL CmdBeginAnnotation(CommandBuffer& commandBuffer, const char* name, uint32_t bgra) { |
| 424 | ((CommandBufferVal&)commandBuffer).BeginAnnotation(name, bgra); |
| 425 | } |
| 426 | |
| 427 | static void NRI_CALL CmdEndAnnotation(CommandBuffer& commandBuffer) { |
| 428 | ((CommandBufferVal&)commandBuffer).EndAnnotation(); |
nothing calls this directly
no test coverage detected