Home
last modified time | relevance | path

Searched refs:vkResetEvent (Results 1 – 16 of 16) sorted by relevance

/hardware/google/gfxstream/host/vulkan/cereal/common/
Dgoldfish_vk_dispatch.h117 PFN_vkResetEvent vkResetEvent; member
Dgoldfish_vk_dispatch.cpp377 out->vkResetEvent = (PFN_vkResetEvent)dlSymFunc(lib, "vkResetEvent"); in init_vulkan_dispatch_from_system_loader()
1161 out->vkResetEvent = (PFN_vkResetEvent)vk->vkGetInstanceProcAddr(instance, "vkResetEvent"); in init_vulkan_dispatch_from_instance()
2104 out->vkResetEvent = (PFN_vkResetEvent)vk->vkGetDeviceProcAddr(device, "vkResetEvent"); in init_vulkan_dispatch_from_device()
3069 if (!vk->vkResetEvent) { in vulkan_dispatch_check_device_VK_VERSION_1_0()
/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkansc.hpp1264 VkResult vkResetEvent( VkDevice device, VkEvent event ) const VULKAN_HPP_NOEXCEPT in vkResetEvent() function in VULKAN_HPP_NAMESPACE::DispatchLoaderStatic
1266 return ::vkResetEvent( device, event ); in vkResetEvent()
4660 PFN_vkResetEvent vkResetEvent = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic
5150 vkResetEvent = PFN_vkResetEvent( vkGetInstanceProcAddr( instance, "vkResetEvent" ) ); in init()
5572 vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); in init()
Dvulkan.hpp1289 VkResult vkResetEvent( VkDevice device, VkEvent event ) const VULKAN_HPP_NOEXCEPT in vkResetEvent() function in VULKAN_HPP_NAMESPACE::DispatchLoaderStatic
1291 return ::vkResetEvent( device, event ); in vkResetEvent()
9183 PFN_vkResetEvent vkResetEvent = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic
10349 vkResetEvent = PFN_vkResetEvent( vkGetInstanceProcAddr( instance, "vkResetEvent" ) ); in init()
11431 vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); in init()
Dvulkansc_raii.hpp313 vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); in DeviceDispatcher()
673 PFN_vkResetEvent vkResetEvent = 0; member in VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher
6450 VULKAN_HPP_ASSERT( getDispatcher()->vkResetEvent && "Function <vkResetEvent> requires <VK_VERSION_1… in reset()
6454 …VkResult result = getDispatcher()->vkResetEvent( static_cast<VkDevice>( m_device ), static_cast<Vk… in reset()
Dvulkan_raii.hpp631 vkResetEvent = PFN_vkResetEvent( vkGetDeviceProcAddr( device, "vkResetEvent" ) ); in DeviceDispatcher()
1509 PFN_vkResetEvent vkResetEvent = 0; member in VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher
11235 VULKAN_HPP_ASSERT( getDispatcher()->vkResetEvent && "Function <vkResetEvent> requires <VK_VERSION_1… in reset()
11239 …VkResult result = getDispatcher()->vkResetEvent( static_cast<VkDevice>( m_device ), static_cast<Vk… in reset()
Dvulkansc_funcs.hpp1357 return static_cast<Result>( d.vkResetEvent( m_device, static_cast<VkEvent>( event ) ) ); in resetEvent()
1367 VkResult result = d.vkResetEvent( m_device, static_cast<VkEvent>( event ) ); in resetEvent()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/
Dsynchronization.adoc5522 [open,refpage='vkResetEvent',desc='Reset an event to non-signaled state',type='protos']
5526 include::{generated}/api/protos/vkResetEvent.adoc[]
5531 When flink:vkResetEvent is executed on the host, it defines an _event
5534 If pname:event is already in the unsignaled state when flink:vkResetEvent is
5535 executed, then flink:vkResetEvent has no effect, and no event unsignal
5540 * [[VUID-vkResetEvent-event-03821]]
5541 There must: be an execution dependency between fname:vkResetEvent and
5545 * [[VUID-vkResetEvent-event-03822]]
5546 There must: be an execution dependency between fname:vkResetEvent and
5551 * [[VUID-vkResetEvent-event-03823]]
[all …]
/hardware/google/gfxstream/guest/vulkan_enc/
DVkEncoder.h164 VkResult vkResetEvent(VkDevice device, VkEvent event, uint32_t doLock);
Dfunc_table.cpp590 vkEnc->vkResetEvent(gfxstream_device->internal_object, event, true /* do lock */); in gfxstream_vk_ResetEvent()
DVkEncoder.cpp5514 VkResult VkEncoder::vkResetEvent(VkDevice device, VkEvent event, uint32_t doLock) { in vkResetEvent() function in gfxstream::vk::VkEncoder
/hardware/google/gfxstream/host/vulkan/
DVkDecoderSnapshot.h230 void vkResetEvent(const uint8_t* snapshotTraceBegin, size_t snapshotTraceBytes,
DVkDecoderSnapshot.cpp408 void vkResetEvent(const uint8_t* snapshotTraceBegin, size_t snapshotTraceBytes, in vkResetEvent() function in VkDecoderSnapshot::Impl
4205 void VkDecoderSnapshot::vkResetEvent(const uint8_t* snapshotTraceBegin, size_t snapshotTraceBytes, in vkResetEvent() function in VkDecoderSnapshot
4208 mImpl->vkResetEvent(snapshotTraceBegin, snapshotTraceBytes, pool, input_result, device, event); in vkResetEvent()
DVkDecoder.cpp3254 vkResetEvent_VkResult_return = vk->vkResetEvent(unboxed_device, event); in decode()
3265 m_state->snapshot()->vkResetEvent(snapshotTraceBegin, snapshotTraceBytes, in decode()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/
DChangeLog.adoc4138 * Fix typo `vkCmdResetEvent` -> `vkResetEvent` in flink:vkResetEvent valid
12557 * Add missing validity statements to flink:vkResetEvent and
/hardware/google/gfxstream/guest/mesa/include/vulkan/
Dvulkan_core.h4327 VKAPI_ATTR VkResult VKAPI_CALL vkResetEvent(