| 1104 | } |
| 1105 | |
| 1106 | void daxa_cmd_write_timestamp(daxa_CommandRecorder self, daxa_WriteTimestampInfo const * info) |
| 1107 | { |
| 1108 | daxa_cmd_flush_barriers(self); |
| 1109 | vkCmdWriteTimestamp2( |
| 1110 | self->command_arena->vk_command_buffer, |
| 1111 | info->pipeline_stage, |
| 1112 | (**info->query_pool).vk_timeline_query_pool, |
| 1113 | info->query_index); |
| 1114 | } |
| 1115 | |
| 1116 | void daxa_cmd_reset_timestamps(daxa_CommandRecorder self, daxa_ResetTimestampsInfo const * info) |
| 1117 | { |
nothing calls this directly
no test coverage detected