Searched refs:newQueueFamilyIndex (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/src/gpu/vk/ |
D | GrVkImage.cpp | 373 uint32_t newQueueFamilyIndex) { in setImageLayoutAndQueueIndex() argument 392 if (newQueueFamilyIndex == VK_QUEUE_FAMILY_IGNORED) { in setImageLayoutAndQueueIndex() 397 SkASSERT(newQueueFamilyIndex == VK_QUEUE_FAMILY_EXTERNAL || in setImageLayoutAndQueueIndex() 398 newQueueFamilyIndex == VK_QUEUE_FAMILY_FOREIGN_EXT); in setImageLayoutAndQueueIndex() 403 if (newQueueFamilyIndex == VK_QUEUE_FAMILY_IGNORED || in setImageLayoutAndQueueIndex() 409 } else if (newQueueFamilyIndex == VK_QUEUE_FAMILY_EXTERNAL || in setImageLayoutAndQueueIndex() 410 newQueueFamilyIndex == VK_QUEUE_FAMILY_FOREIGN_EXT) { in setImageLayoutAndQueueIndex() 418 if (newQueueFamilyIndex == VK_QUEUE_FAMILY_IGNORED) { in setImageLayoutAndQueueIndex() 419 newQueueFamilyIndex = gpu->queueIndex(); in setImageLayoutAndQueueIndex() 428 if (newLayout == currentLayout && currentQueueIndex == newQueueFamilyIndex && in setImageLayoutAndQueueIndex() [all …]
|
D | GrVkImage.h | 135 uint32_t newQueueFamilyIndex);
|
D | GrVkGpu.cpp | 1797 uint32_t newQueueFamilyIndex = newInfo.getQueueFamilyIndex(); in set_layout_and_queue_from_mutable_state() local 1802 if (isSpecialQueue(currentQueueFamilyIndex) && isSpecialQueue(newQueueFamilyIndex)) { in set_layout_and_queue_from_mutable_state() 1809 newQueueFamilyIndex); in set_layout_and_queue_from_mutable_state()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_helpers.h | 842 bool isQueueChangeNeccesary(uint32_t newQueueFamilyIndex) const in isQueueChangeNeccesary() argument 844 return mCurrentQueueFamilyIndex != newQueueFamilyIndex; in isQueueChangeNeccesary() 849 uint32_t newQueueFamilyIndex, 855 uint32_t newQueueFamilyIndex,
|
D | vk_helpers.cpp | 1779 uint32_t newQueueFamilyIndex, in changeLayoutAndQueue() argument 1782 ASSERT(isQueueChangeNeccesary(newQueueFamilyIndex)); in changeLayoutAndQueue() 1783 forceChangeLayoutAndQueue(aspectMask, newLayout, newQueueFamilyIndex, commandBuffer); in changeLayoutAndQueue() 1788 uint32_t newQueueFamilyIndex, in forceChangeLayoutAndQueue() argument 1797 if (mCurrentLayout == newLayout && mCurrentQueueFamilyIndex == newQueueFamilyIndex && in forceChangeLayoutAndQueue() 1820 imageMemoryBarrier.dstQueueFamilyIndex = newQueueFamilyIndex; in forceChangeLayoutAndQueue() 1833 mCurrentQueueFamilyIndex = newQueueFamilyIndex; in forceChangeLayoutAndQueue()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_helpers.h | 909 void changeQueue(uint32_t newQueueFamilyIndex, CommandBuffer *commandBuffer); 1910 bool isQueueChangeNeccesary(uint32_t newQueueFamilyIndex) const in isQueueChangeNeccesary() argument 1912 return mCurrentQueueFamilyIndex != newQueueFamilyIndex; in isQueueChangeNeccesary() 1918 uint32_t newQueueFamilyIndex, 2136 uint32_t newQueueFamilyIndex, 2144 uint32_t newQueueFamilyIndex,
|
D | vk_helpers.cpp | 3869 void BufferHelper::changeQueue(uint32_t newQueueFamilyIndex, CommandBuffer *commandBuffer) in changeQueue() argument 3876 bufferMemoryBarrier.dstQueueFamilyIndex = newQueueFamilyIndex; in changeQueue() 3884 mCurrentQueueFamilyIndex = newQueueFamilyIndex; in changeQueue() 5046 uint32_t newQueueFamilyIndex, in changeLayoutAndQueue() argument 5049 ASSERT(isQueueChangeNeccesary(newQueueFamilyIndex)); in changeLayoutAndQueue() 5050 barrierImpl(context, aspectMask, newLayout, newQueueFamilyIndex, commandBuffer); in changeLayoutAndQueue() 5120 uint32_t newQueueFamilyIndex, in initImageMemoryBarrierStruct() argument 5132 imageMemoryBarrier->dstQueueFamilyIndex = newQueueFamilyIndex; in initImageMemoryBarrierStruct() 5148 uint32_t newQueueFamilyIndex, in barrierImpl() argument 5172 initImageMemoryBarrierStruct(aspectMask, newLayout, newQueueFamilyIndex, &imageMemoryBarrier); in barrierImpl() [all …]
|