Home
last modified time | relevance | path

Searched refs:deviceMask (Results 1 – 25 of 60) sorted by relevance

123

/external/deqp/external/vulkancts/modules/vulkan/device_group/
DvktDeviceGroupRendering.cpp158 … SubmitBufferAndWaitForIdle (const DeviceDriver& vk, VkCommandBuffer cmdBuf, deUint32 deviceMask);
333 …ce::SubmitBufferAndWaitForIdle(const DeviceDriver& vk, VkCommandBuffer cmdBuf, deUint32 deviceMask) in SubmitBufferAndWaitForIdle() argument
335 submitCommandsAndWait(vk, *m_deviceGroup, m_deviceGroupQueue, cmdBuf, true, deviceMask); in SubmitBufferAndWaitForIdle()
1128 const deUint32 deviceMask = (1 << firstDeviceID) | (1 << secondDeviceID); in iterate() local
1129 SubmitBufferAndWaitForIdle(vk, cmdBuffer.get(), deviceMask); in iterate()
1432 const deUint32 deviceMask = (1 << firstDeviceID) | (1 << secondDeviceID); in iterate() local
1433 SubmitBufferAndWaitForIdle(vk, cmdBuffer.get(), deviceMask); in iterate()
1513 const deUint32 deviceMask = 1 << firstDeviceID; in iterate() local
1514 SubmitBufferAndWaitForIdle(vk, cmdBuffer.get(), deviceMask); in iterate()
1553 const deUint32 deviceMask = 1 << secondDeviceID; in iterate() local
[all …]
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryAllocationTests.cpp138 m_allocFlagsInfo.deviceMask = 0; in BaseAllocateTestInstance()
404 for (deUint32 deviceMask = 1; deviceMask <= totalDeviceMaskCombinations; deviceMask++) in iterate() local
408 deviceMask = (1 << m_numPhysDevices) - 1; in iterate()
409 m_allocFlagsInfo.deviceMask = deviceMask; in iterate()
732 m_allocFlagsInfo.deviceMask = m_currentDeviceMask; in iterate()
/external/deqp/external/vulkancts/framework/vulkan/
DvkCmdUtil.cpp206 const deUint32 deviceMask, in submitCommandsAndWait() argument
229 &deviceMask, // const deUint32* pCommandBufferDeviceMasks; in submitCommandsAndWait()
DvkCmdUtil.hpp118 const deUint32 deviceMask = 1u,
/external/swiftshader/src/Vulkan/
DVkPromotedExtensions.cpp83 VKAPI_ATTR void VKAPI_CALL vkCmdSetDeviceMaskKHR(VkCommandBuffer commandBuffer, uint32_t deviceMask) in vkCmdSetDeviceMaskKHR() argument
85 vkCmdSetDeviceMask(commandBuffer, deviceMask); in vkCmdSetDeviceMaskKHR()
DVkCommandBuffer.hpp69 void setDeviceMask(uint32_t deviceMask);
/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSwapchainTests.cpp1273 deUint32 deviceMask, in AcquireNextImageWrapper() argument
1281 DE_UNREF(deviceMask); // needed for compatibility with acquireNextImage2KHR in AcquireNextImageWrapper()
1313 deUint32 deviceMask, in AcquireNextImage2Wrapper() argument
1325 m_info.deviceMask = deviceMask; in AcquireNextImage2Wrapper()
1871 deUint32 deviceMask = (1 << firstDeviceID); in deviceGroupRenderTest() local
1875 deviceMask |= (1 << secondDeviceID); in deviceGroupRenderTest()
1885 &deviceMask, // pCommandBufferDeviceMasks in deviceGroupRenderTest()
1904 deviceMask = (1 << firstDeviceID); in deviceGroupRenderTest()
1910 &deviceMask, in deviceGroupRenderTest()
2254 deUint32 deviceMask = (1 << firstDeviceID) | (1 << secondDeviceID); in deviceGroupRenderTest2() local
[all …]
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawConcurrentTests.cpp265 const deUint32 deviceMask = 1u; in iterate() local
275 &deviceMask, // const deUint32* pCommandBufferDeviceMasks; in iterate()
/external/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_wsi.c198 .deviceMask = 0, in lvp_AcquireNextImageKHR()
/external/mesa3d/src/freedreno/vulkan/
Dtu_wsi.c219 .deviceMask = 0, in tu_AcquireNextImageKHR()
/external/mesa3d/src/broadcom/vulkan/
Dv3dv_wsi.c234 .deviceMask = 0, in v3dv_AcquireNextImageKHR()
/external/mesa3d/src/amd/vulkan/
Dradv_wsi.c240 .deviceMask = 0, in radv_AcquireNextImageKHR()
/external/mesa3d/src/intel/vulkan/
Danv_wsi.c270 .deviceMask = 0, in anv_AcquireNextImageKHR()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesTestsUtil.cpp391 const deUint32 deviceMask = 1 << physicalDeviceID; in submitCommandsAndWait() local
400 &deviceMask, // const uint32_t* pCommandBufferDeviceMasks in submitCommandsAndWait()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp2009 bool CoreChecks::ValidateDeviceMaskToPhysicalDeviceCount(uint32_t deviceMask, VkDebugReportObjectTy… in ValidateDeviceMaskToPhysicalDeviceCount() argument
2013 if (count <= deviceMask) { in ValidateDeviceMaskToPhysicalDeviceCount()
2015 … "deviceMask(0x%" PRIx32 ") is invaild. Physical device count is %" PRIu32 ".", deviceMask, in ValidateDeviceMaskToPhysicalDeviceCount()
2021 bool CoreChecks::ValidateDeviceMaskToZero(uint32_t deviceMask, VkDebugReportObjectTypeEXT VUID_hand… in ValidateDeviceMaskToZero() argument
2024 if (deviceMask == 0) { in ValidateDeviceMaskToZero()
2026 "deviceMask(0x%" PRIx32 ") must be non-zero.", deviceMask); in ValidateDeviceMaskToZero()
2031 bool CoreChecks::ValidateDeviceMaskToCommandBuffer(const CMD_BUFFER_STATE *pCB, uint32_t deviceMask, in ValidateDeviceMaskToCommandBuffer() argument
2035 if ((deviceMask & pCB->initial_device_mask) != deviceMask) { in ValidateDeviceMaskToCommandBuffer()
2037 … "deviceMask(0x%" PRIx32 ") is not a subset of %s initial device mask(0x%" PRIx32 ").", deviceMask, in ValidateDeviceMaskToCommandBuffer()
2043 bool CoreChecks::ValidateDeviceMaskToRenderPass(const CMD_BUFFER_STATE *pCB, uint32_t deviceMask, in ValidateDeviceMaskToRenderPass() argument
[all …]
Dcore_validation.h1098 …bool ValidateDeviceMaskToPhysicalDeviceCount(uint32_t deviceMask, VkDebugReportObjectTypeEXT VUID_…
1100 …bool ValidateDeviceMaskToZero(uint32_t deviceMask, VkDebugReportObjectTypeEXT VUID_handle_type, ui…
1102 bool ValidateDeviceMaskToCommandBuffer(const CMD_BUFFER_STATE* pCB, uint32_t deviceMask,
1105 bool ValidateDeviceMaskToRenderPass(const CMD_BUFFER_STATE* pCB, uint32_t deviceMask,
1973 bool PreCallValidateCmdSetDeviceMask(VkCommandBuffer commandBuffer, uint32_t deviceMask);
/external/vulkan-validation-layers/tests/
Dvklayertests_others.cpp1213 alloc_flags_info.deviceMask = 0xFFFFFFFF; in TEST_F()
1225 alloc_flags_info.deviceMask = 0; in TEST_F()
1233 dev_grp_cmd_buf_info.deviceMask = 0xFFFFFFFF; in TEST_F()
1244 dev_grp_cmd_buf_info.deviceMask = 0; in TEST_F()
1252 dev_grp_cmd_buf_info.deviceMask = 0x00000001; in TEST_F()
1258 dev_grp_rp_info.deviceMask = 0xFFFFFFFF; in TEST_F()
1266 dev_grp_rp_info.deviceMask = 0; in TEST_F()
1271 dev_grp_rp_info.deviceMask = 0x00000001; in TEST_F()
1315 acquire_next_image_info.deviceMask = 0xFFFFFFFF; in TEST_F()
1325 acquire_next_image_info.deviceMask = 0; in TEST_F()
/external/vulkan-validation-layers/layers/generated/
Dvk_safe_struct.cpp6268 deviceMask(in_struct->deviceMask) in safe_VkMemoryAllocateFlagsInfo()
6281 deviceMask = src.deviceMask; in safe_VkMemoryAllocateFlagsInfo()
6294 deviceMask = src.deviceMask; in operator =()
6310 deviceMask = in_struct->deviceMask; in initialize()
6318 deviceMask = src->deviceMask; in initialize()
6324 deviceMask(in_struct->deviceMask), in safe_VkDeviceGroupRenderPassBeginInfo()
6343 deviceMask = src.deviceMask; in safe_VkDeviceGroupRenderPassBeginInfo()
6363 deviceMask = src.deviceMask; in operator =()
6386 deviceMask = in_struct->deviceMask; in initialize()
6399 deviceMask = src->deviceMask; in initialize()
[all …]
Dparameter_validation.h680 uint32_t deviceMask);
976 uint32_t deviceMask);
Dthread_safety.h2044 uint32_t deviceMask);
2048 uint32_t deviceMask);
2534 uint32_t deviceMask);
2538 uint32_t deviceMask);
Dlayer_chassis_dispatch.h710 uint32_t deviceMask);
1006 uint32_t deviceMask);
Dchassis.h878 uint32_t deviceMask);
1242 uint32_t deviceMask);
2944 …reCallValidateCmdSetDeviceMask(VkCommandBuffer commandBuffer, uint32_t deviceMask) { return false… in PreCallValidateCmdSetDeviceMask() argument
2945 … virtual void PreCallRecordCmdSetDeviceMask(VkCommandBuffer commandBuffer, uint32_t deviceMask) {}; in PreCallRecordCmdSetDeviceMask() argument
2946 …virtual void PostCallRecordCmdSetDeviceMask(VkCommandBuffer commandBuffer, uint32_t deviceMask) {}; in PostCallRecordCmdSetDeviceMask() argument
3151 …allValidateCmdSetDeviceMaskKHR(VkCommandBuffer commandBuffer, uint32_t deviceMask) { return false… in PreCallValidateCmdSetDeviceMaskKHR() argument
3152 …rtual void PreCallRecordCmdSetDeviceMaskKHR(VkCommandBuffer commandBuffer, uint32_t deviceMask) {}; in PreCallRecordCmdSetDeviceMaskKHR() argument
3153 …tual void PostCallRecordCmdSetDeviceMaskKHR(VkCommandBuffer commandBuffer, uint32_t deviceMask) {}; in PostCallRecordCmdSetDeviceMaskKHR() argument
Dobject_tracker.h934 uint32_t deviceMask);
1339 uint32_t deviceMask);
/external/skqp/include/third_party/vulkan/vulkan/
Dvulkan_core.h3938 uint32_t deviceMask; member
3944 uint32_t deviceMask; member
3952 uint32_t deviceMask; member
4375 typedef void (VKAPI_PTR *PFN_vkCmdSetDeviceMask)(VkCommandBuffer commandBuffer, uint32_t deviceMask
4423 uint32_t deviceMask);
4744 uint32_t deviceMask; member
5094 …ef void (VKAPI_PTR *PFN_vkCmdSetDeviceMaskKHR)(VkCommandBuffer commandBuffer, uint32_t deviceMask);
5107 uint32_t deviceMask);
/external/skia/include/third_party/vulkan/vulkan/
Dvulkan_core.h3938 uint32_t deviceMask; member
3944 uint32_t deviceMask; member
3952 uint32_t deviceMask; member
4375 typedef void (VKAPI_PTR *PFN_vkCmdSetDeviceMask)(VkCommandBuffer commandBuffer, uint32_t deviceMask
4423 uint32_t deviceMask);
4744 uint32_t deviceMask; member
5094 …ef void (VKAPI_PTR *PFN_vkCmdSetDeviceMaskKHR)(VkCommandBuffer commandBuffer, uint32_t deviceMask);
5107 uint32_t deviceMask);

123