HomeSort by relevance Sort by last modified time
    Searched full:waitsemaphorecount (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /frameworks/native/vulkan/include/vulkan/
vk_android_native_buffer.h 91 typedef VkResult (VKAPI_PTR *PFN_vkQueueSignalReleaseImageANDROID)(VkQueue queue, uint32_t waitSemaphoreCount, const VkSemaphore* pWaitSemaphores, VkImage image, int* pNativeFenceFd);
120 uint32_t waitSemaphoreCount,
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/core_validation/
vk_safe_struct.cpp 364 waitSemaphoreCount(pInStruct->waitSemaphoreCount),
372 if (waitSemaphoreCount && pInStruct->pWaitSemaphores) {
373 pWaitSemaphores = new VkSemaphore[waitSemaphoreCount];
374 for (uint32_t i=0; i<waitSemaphoreCount; ++i) {
399 waitSemaphoreCount = src.waitSemaphoreCount;
406 if (waitSemaphoreCount && src.pWaitSemaphores) {
407 pWaitSemaphores = new VkSemaphore[waitSemaphoreCount];
408 for (uint32_t i=0; i<waitSemaphoreCount; ++i)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/unique_objects/
vk_safe_struct.cpp 364 waitSemaphoreCount(pInStruct->waitSemaphoreCount),
372 if (waitSemaphoreCount && pInStruct->pWaitSemaphores) {
373 pWaitSemaphores = new VkSemaphore[waitSemaphoreCount];
374 for (uint32_t i=0; i<waitSemaphoreCount; ++i) {
399 waitSemaphoreCount = src.waitSemaphoreCount;
406 if (waitSemaphoreCount && src.pWaitSemaphores) {
407 pWaitSemaphores = new VkSemaphore[waitSemaphoreCount];
408 for (uint32_t i=0; i<waitSemaphoreCount; ++i)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationBasicEventTests.cpp 92 0u, // deUint32 waitSemaphoreCount;
138 0u, // deUint32 waitSemaphoreCount;
186 0u, // deUint32 waitSemaphoreCount;
232 0u, // deUint32 waitSemaphoreCount;
243 0u, // deUint32 waitSemaphoreCount;
295 0u, // deUint32 waitSemaphoreCount;
vktSynchronizationBasicSemaphoreTests.cpp 68 0u, // deUint32 waitSemaphoreCount;
79 1u, // deUint32 waitSemaphoreCount;
206 submitInfo[FIRST].waitSemaphoreCount = 0u;
216 submitInfo[SECOND].waitSemaphoreCount = 1u;
vktSynchronizationBasicFenceTests.cpp 62 0u, // deUint32 waitSemaphoreCount;
128 0u, // deUint32 waitSemaphoreCount;
vktSynchronizationOperationMultiQueueTests.cpp 343 0u, // deUint32 waitSemaphoreCount;
354 1u, // deUint32 waitSemaphoreCount;
vktSynchronizationOperationSingleQueueTests.cpp 202 0u, // deUint32 waitSemaphoreCount;
213 1u, // deUint32 waitSemaphoreCount;
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiCommandBuffersTests.cpp 375 0u, // deUint32 waitSemaphoreCount;
623 0u, // waitSemaphoreCount
    [all...]
vktApiFillBufferTests.cpp 172 0u, // deUint32 waitSemaphoreCount;
337 0u, // deUint32 waitSemaphoreCount;
  /external/skia/tools/gpu/mtl/
MtlTestContext.mm 73 submitInfo.waitSemaphoreCount = 0;
  /external/skia/tools/gpu/vk/
VkTestContext.cpp 71 submitInfo.waitSemaphoreCount = 0;
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTestsUtil.cpp 508 const deUint32 waitSemaphoreCount,
518 waitSemaphoreCount, // deUint32 waitSemaphoreCount;
534 const deUint32 waitSemaphoreCount,
552 waitSemaphoreCount, // deUint32 waitSemaphoreCount;
vktSparseResourcesQueueBindSparseTests.cpp 87 numWaitSemaphores, // uint32_t waitSemaphoreCount;
114 numWaitSemaphores, // uint32_t waitSemaphoreCount;
vktSparseResourcesTestsUtil.hpp 252 const deUint32 waitSemaphoreCount = 0,
262 const deUint32 waitSemaphoreCount = 0,
  /external/skia/tools/viewer/sk_app/
VulkanWindowContext.cpp 519 submitInfo.waitSemaphoreCount = 1;
590 submitInfo.waitSemaphoreCount = 0;
606 1, // waitSemaphoreCount
  /frameworks/native/vulkan/doc/implementors_guide/
implementors_guide.adoc 172 uint32_t waitSemaphoreCount,
179 This will be called during +vkQueuePresentWSI+ on the provided queue. Effects are similar to +vkQueueSignalSemaphore+, except with a native fence instead of a semaphore. The native fence must: not signal until the +waitSemaphoreCount+ semaphores in +pWaitSemaphores+ have signaled. Unlike +vkQueueSignalSemaphore+, however, this call creates and returns the synchronization object that will be signalled rather than having it provided as input. If the queue is already idle when this function is called, it is allowed but not required to set +*pNativeFenceFd+ to -1. The file descriptor returned in +*pNativeFenceFd+ is owned and will be closed by the caller. Many drivers will be able to ignore the +image+ parameter, but some may need to prepare CPU-side data structures associated with a gralloc buffer for use by external image consumers. Preparing buffer contents for use by external consumers should have been done asynchronously as part of transitioning the image to +VK_IMAGE_LAYOUT_PRESENT_SRC_KHR+.
200 * Added waitSemaphoreCount and pWaitSemaphores parameters to vkQueueSignalReleaseImageANDROID.
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsMakeUtil.cpp 220 0u, // uint32_t waitSemaphoreCount;
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawIndexedTest.cpp 175 0, // deUint32 waitSemaphoreCount;
297 0, // deUint32 waitSemaphoreCount;
vktDrawSimpleTest.cpp 154 0, // deUint32 waitSemaphoreCount;
260 0, // deUint32 waitSemaphoreCount;
vktDrawImageObjectUtil.cpp 356 0, // deUint32 waitSemaphoreCount;
457 0, // deUint32 waitSemaphoreCount;
630 0, // deUint32 waitSemaphoreCount;
741 0, // deUint32 waitSemaphoreCount;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateVPTests.cpp 101 0, // deUint32 waitSemaphoreCount;
333 0, // deUint32 waitSemaphoreCount;
  /external/vulkan-validation-layers/demos/smoke/
Shell.cpp 527 present_info.waitSemaphoreCount = 1;
551 submit_info.waitSemaphoreCount = 1;
  /frameworks/native/vulkan/nulldrv/
null_driver_gen.h 171 VKAPI_ATTR VkResult QueueSignalReleaseImageANDROID(VkQueue queue, uint32_t waitSemaphoreCount, const VkSemaphore* pWaitSemaphores, VkImage image, int* pNativeFenceFd);
184 VKAPI_ATTR VkResult QueueSignalReleaseImageANDROID(VkQueue queue, uint32_t waitSemaphoreCount, const VkSemaphore* pWaitSemaphores, VkImage image, int* pNativeFenceFd);
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeTestsUtil.cpp 291 0u, // deUint32 waitSemaphoreCount;

Completed in 277 milliseconds

1 2 3 4 5 6