| 877 | } |
| 878 | |
| 879 | void TimelineSemaphore::signal_value(u64 value) |
| 880 | { |
| 881 | auto result = daxa_timeline_semaphore_signal_value(r_cast<daxa_TimelineSemaphore>(this->object), value); |
| 882 | DAXA_DBG_ASSERT_TRUE_M(result == DAXA_RESULT_SUCCESS, "failed to signal timeline semaphore"); |
| 883 | } |
| 884 | |
| 885 | auto TimelineSemaphore::inc_refcnt(ImplHandle const * object) -> u64 |
| 886 | { |
nothing calls this directly
no test coverage detected