| 26 | : image(presented.image), generator(presented.range_gen), acquire_tag(acq_tag), present_tag(presented.tag) {} |
| 27 | |
| 28 | SignalInfo::SignalInfo(const std::shared_ptr<const vvl::Semaphore>& semaphore_state, const BatchContextPtr& batch, |
| 29 | const SyncExecScope& exec_scope, uint64_t timeline_value) |
| 30 | : semaphore_state(semaphore_state), |
| 31 | batch(batch), |
| 32 | first_scope({batch->GetQueueId(), exec_scope}), |
| 33 | timeline_value(timeline_value) {} |
| 34 | |
| 35 | SignalInfo::SignalInfo(const std::shared_ptr<const vvl::Semaphore>& semaphore_state, uint64_t timeline_value) |
| 36 | : semaphore_state(semaphore_state), first_scope(kQueueIdInvalid, SyncExecScope{}), timeline_value(timeline_value) {} |
nothing calls this directly
no test coverage detected