Home
last modified time | relevance | path

Searched refs:maxQueuedFrames (Results 1 - 10 of 10) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/
H A DvktWsiPresentIdWaitTests.cpp356 FrameStreamObjects (const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkCommandPool cmdPool, size_t maxQueuedFrames) in FrameStreamObjects() argument
357 : renderingCompleteFences (createFences(vkd, device, maxQueuedFrames)) in FrameStreamObjects()
358 , renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)) in FrameStreamObjects()
359 , imageAvailableSemaphores (createSemaphores(vkd, device, maxQueuedFrames)) in FrameStreamObjects()
360 , commandBuffers (allocateCommandBuffers(vkd, device, cmdPool, vk::VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)) in FrameStreamObjects()
361 , m_maxQueuedFrames (maxQueuedFrames) in FrameStreamObjects()
518 const size_t maxQueuedFrames = swapchainSize*2; in run() local
519 FrameStreamObjects frameStreamObjects (vkd, device, commandPool, maxQueuedFrames); in run()
954 const size_t maxQueuedFrames = swapchainImages1.size()*2; in iterate() local
955 FrameStreamObjects frameStreamObjects1 (vkd, device, commandPool.get(), maxQueuedFrames); in iterate()
[all...]
H A DvktWsiSwapchainTests.cpp1337 const size_t maxQueuedFrames = swapchainImages.size()*2; in basicRenderTest() local
1341 const vector<FenceSp> imageReadyFences (createFences(vkd, device, maxQueuedFrames)); in basicRenderTest()
1343 // We need maxQueuedFrames+1 for imageReadySemaphores pool as we need to pass in basicRenderTest()
1345 const vector<SemaphoreSp> imageReadySemaphores (createSemaphores(vkd, device, maxQueuedFrames+1)); in basicRenderTest()
1347 // For rest we simply need maxQueuedFrames as we will wait for image in basicRenderTest()
1348 // from frameNdx-maxQueuedFrames to become available to us, guaranteeing that in basicRenderTest()
1350 const vector<SemaphoreSp> renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)); in basicRenderTest()
1351 const vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)); in basicRenderTest()
1434 FrameStreamObjects (const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkCommandPool cmdPool, size_t maxQueuedFrames) in FrameStreamObjects() argument
1435 : renderingCompleteFences(createFences(vkd, device, maxQueuedFrames)) in FrameStreamObjects()
1583 const size_t maxQueuedFrames = swapchainImages.front().size()*2; // Limit in-flight frames. multiSwapchainRenderTest() local
1775 const size_t maxQueuedFrames = swapchainImages.size()*2; deviceGroupRenderTest() local
2158 const size_t maxQueuedFrames = rawImagesSfr.size()*2; deviceGroupRenderTest2() local
2338 const size_t maxQueuedFrames = swapchainImages.size()*2; resizeSwapchainTest() local
[all...]
H A DvktWsiFullScreenExclusiveTests.cpp463 const size_t maxQueuedFrames = swapchainImages.size()*2; in fullScreenExclusiveTest() local
467 const std::vector<FenceSp> imageReadyFences (createFences(vkd, device, maxQueuedFrames)); in fullScreenExclusiveTest()
469 // We need maxQueuedFrames+1 for imageReadySemaphores pool as we need to pass in fullScreenExclusiveTest()
471 const std::vector<SemaphoreSp> imageReadySemaphores (createSemaphores(vkd, device, maxQueuedFrames+1)); in fullScreenExclusiveTest()
473 // For rest we simply need maxQueuedFrames as we will wait for image in fullScreenExclusiveTest()
474 // from frameNdx-maxQueuedFrames to become available to us, guaranteeing that in fullScreenExclusiveTest()
476 const std::vector<SemaphoreSp> renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)); in fullScreenExclusiveTest()
477 const std::vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)); in fullScreenExclusiveTest()
521 if (frameNdx >= maxQueuedFrames) in fullScreenExclusiveTest()
H A DvktWsiColorSpaceTests.cpp655 const size_t maxQueuedFrames = swapchainImages.size()*2; in surfaceFormatRenderTest() local
659 const vector<FenceSp> imageReadyFences (createFences(vkd, device, maxQueuedFrames)); in surfaceFormatRenderTest()
661 // We need maxQueuedFrames+1 for imageReadySemaphores pool as we need to pass in surfaceFormatRenderTest()
663 const vector<SemaphoreSp> imageReadySemaphores (createSemaphores(vkd, device, maxQueuedFrames+1)); in surfaceFormatRenderTest()
665 // For rest we simply need maxQueuedFrames as we will wait for image in surfaceFormatRenderTest()
666 // from frameNdx-maxQueuedFrames to become available to us, guaranteeing that in surfaceFormatRenderTest()
668 const vector<SemaphoreSp> renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)); in surfaceFormatRenderTest()
669 const vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)); in surfaceFormatRenderTest()
681 if (frameNdx >= maxQueuedFrames) in surfaceFormatRenderTest()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/wsi/
H A DvktWsiPresentIdWaitTests.cpp356 FrameStreamObjects (const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkCommandPool cmdPool, size_t maxQueuedFrames) in FrameStreamObjects() argument
357 : renderingCompleteFences (createFences(vkd, device, maxQueuedFrames)) in FrameStreamObjects()
358 , renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)) in FrameStreamObjects()
359 , imageAvailableSemaphores (createSemaphores(vkd, device, maxQueuedFrames)) in FrameStreamObjects()
360 , commandBuffers (allocateCommandBuffers(vkd, device, cmdPool, vk::VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)) in FrameStreamObjects()
361 , m_maxQueuedFrames (maxQueuedFrames) in FrameStreamObjects()
518 const size_t maxQueuedFrames = swapchainSize*2; in run() local
519 FrameStreamObjects frameStreamObjects (vkd, device, commandPool, maxQueuedFrames); in run()
954 const size_t maxQueuedFrames = swapchainImages1.size()*2; in iterate() local
955 FrameStreamObjects frameStreamObjects1 (vkd, device, commandPool.get(), maxQueuedFrames); in iterate()
[all...]
H A DvktWsiSwapchainTests.cpp1321 const size_t maxQueuedFrames = swapchainImages.size()*2; in basicRenderTest() local
1325 const vector<FenceSp> imageReadyFences (createFences(vkd, device, maxQueuedFrames)); in basicRenderTest()
1327 // We need maxQueuedFrames+1 for imageReadySemaphores pool as we need to pass in basicRenderTest()
1329 const vector<SemaphoreSp> imageReadySemaphores (createSemaphores(vkd, device, maxQueuedFrames+1)); in basicRenderTest()
1331 // For rest we simply need maxQueuedFrames as we will wait for image in basicRenderTest()
1332 // from frameNdx-maxQueuedFrames to become available to us, guaranteeing that in basicRenderTest()
1334 const vector<SemaphoreSp> renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)); in basicRenderTest()
1335 const vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)); in basicRenderTest()
1418 FrameStreamObjects (const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkCommandPool cmdPool, size_t maxQueuedFrames) in FrameStreamObjects() argument
1419 : renderingCompleteFences(createFences(vkd, device, maxQueuedFrames)) in FrameStreamObjects()
1567 const size_t maxQueuedFrames = swapchainImages.front().size()*2; // Limit in-flight frames. multiSwapchainRenderTest() local
1759 const size_t maxQueuedFrames = swapchainImages.size()*2; deviceGroupRenderTest() local
2142 const size_t maxQueuedFrames = rawImagesSfr.size()*2; deviceGroupRenderTest2() local
2322 const size_t maxQueuedFrames = swapchainImages.size()*2; resizeSwapchainTest() local
[all...]
H A DvktWsiFullScreenExclusiveTests.cpp463 const size_t maxQueuedFrames = swapchainImages.size()*2; in fullScreenExclusiveTest() local
467 const std::vector<FenceSp> imageReadyFences (createFences(vkd, device, maxQueuedFrames)); in fullScreenExclusiveTest()
469 // We need maxQueuedFrames+1 for imageReadySemaphores pool as we need to pass in fullScreenExclusiveTest()
471 const std::vector<SemaphoreSp> imageReadySemaphores (createSemaphores(vkd, device, maxQueuedFrames+1)); in fullScreenExclusiveTest()
473 // For rest we simply need maxQueuedFrames as we will wait for image in fullScreenExclusiveTest()
474 // from frameNdx-maxQueuedFrames to become available to us, guaranteeing that in fullScreenExclusiveTest()
476 const std::vector<SemaphoreSp> renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)); in fullScreenExclusiveTest()
477 const std::vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)); in fullScreenExclusiveTest()
521 if (frameNdx >= maxQueuedFrames) in fullScreenExclusiveTest()
H A DvktWsiColorSpaceTests.cpp655 const size_t maxQueuedFrames = swapchainImages.size()*2; in surfaceFormatRenderTest() local
659 const vector<FenceSp> imageReadyFences (createFences(vkd, device, maxQueuedFrames)); in surfaceFormatRenderTest()
661 // We need maxQueuedFrames+1 for imageReadySemaphores pool as we need to pass in surfaceFormatRenderTest()
663 const vector<SemaphoreSp> imageReadySemaphores (createSemaphores(vkd, device, maxQueuedFrames+1)); in surfaceFormatRenderTest()
665 // For rest we simply need maxQueuedFrames as we will wait for image in surfaceFormatRenderTest()
666 // from frameNdx-maxQueuedFrames to become available to us, guaranteeing that in surfaceFormatRenderTest()
668 const vector<SemaphoreSp> renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)); in surfaceFormatRenderTest()
669 const vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)); in surfaceFormatRenderTest()
681 if (frameNdx >= maxQueuedFrames) in surfaceFormatRenderTest()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemWsiSwapchainTests.cpp1333 const size_t maxQueuedFrames = swapchainImages.size()*2; in basicRenderTest() local
1337 const std::vector<FenceSp> imageReadyFences (createFences(vkd, device, maxQueuedFrames)); in basicRenderTest()
1339 // We need maxQueuedFrames+1 for imageReadySemaphores pool as we need to pass in basicRenderTest()
1341 const std::vector<SemaphoreSp> imageReadySemaphores (createSemaphores(vkd, device, maxQueuedFrames+1)); in basicRenderTest()
1343 // For rest we simply need maxQueuedFrames as we will wait for image in basicRenderTest()
1344 // from frameNdx-maxQueuedFrames to become available to us, guaranteeing that in basicRenderTest()
1346 const std::vector<SemaphoreSp> renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)); in basicRenderTest()
1351 maxQueuedFrames)); in basicRenderTest()
1389 if (frameNdx >= maxQueuedFrames) in basicRenderTest()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/protected_memory/
H A DvktProtectedMemWsiSwapchainTests.cpp1154 const size_t maxQueuedFrames = swapchainImages.size()*2; in basicRenderTest() local
1158 const std::vector<FenceSp> imageReadyFences (createFences(vkd, device, maxQueuedFrames)); in basicRenderTest()
1160 // We need maxQueuedFrames+1 for imageReadySemaphores pool as we need to pass in basicRenderTest()
1162 const std::vector<SemaphoreSp> imageReadySemaphores (createSemaphores(vkd, device, maxQueuedFrames+1)); in basicRenderTest()
1164 // For rest we simply need maxQueuedFrames as we will wait for image in basicRenderTest()
1165 // from frameNdx-maxQueuedFrames to become available to us, guaranteeing that in basicRenderTest()
1167 const std::vector<SemaphoreSp> renderingCompleteSemaphores (createSemaphores(vkd, device, maxQueuedFrames)); in basicRenderTest()
1172 maxQueuedFrames)); in basicRenderTest()
1210 if (frameNdx >= maxQueuedFrames) in basicRenderTest()

Completed in 18 milliseconds