| 854 | } |
| 855 | |
| 856 | auto TimelineSemaphore::value() const -> u64 |
| 857 | { |
| 858 | u64 ret = {}; |
| 859 | check_result( |
| 860 | daxa_timeline_semaphore_get_value(rc_cast<daxa_TimelineSemaphore>(this->object), &ret), |
| 861 | "failed to get timeline value"); |
| 862 | return ret; |
| 863 | } |
| 864 | |
| 865 | void TimelineSemaphore::set_value(u64 value) |
| 866 | { |
no test coverage detected