MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-ValidationLayers / SignalKHR

Method SignalKHR

tests/framework/binding.cpp:1015–1021  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1013}
1014
1015VkResult Semaphore::SignalKHR(uint64_t value) {
1016 VkSemaphoreSignalInfoKHR signal_info = vku::InitStructHelper();
1017 signal_info.semaphore = handle();
1018 signal_info.value = value;
1019 VkResult result = vk::SignalSemaphoreKHR(device(), &signal_info);
1020 return result;
1021}
1022
1023uint64_t Semaphore::GetCounterValue(bool use_khr) const {
1024 uint64_t counter = 0;

Callers 4

TEST_FFunction · 0.80
TEST_FFunction · 0.80
ThreadFuncMethod · 0.80
RunMethod · 0.80

Calls 1

SignalSemaphoreKHRFunction · 0.85

Tested by

no test coverage detected