Home
last modified time | relevance | path

Searched refs:vki (Results 1 – 25 of 104) sorted by relevance

12345

/external/deqp/external/vulkancts/framework/vulkan/
DvkWsiUtil.cpp132 VkResult createSurface (const InstanceInterface& vki, in createSurface() argument
158 return vki.createXlibSurfaceKHR(instance, &createInfo, pAllocator, pSurface); in createSurface()
174 return vki.createXcbSurfaceKHR(instance, &createInfo, pAllocator, pSurface); in createSurface()
190 return vki.createWaylandSurfaceKHR(instance, &createInfo, pAllocator, pSurface); in createSurface()
206 return vki.createMirSurfaceKHR(instance, &createInfo, pAllocator, pSurface); in createSurface()
220 return vki.createAndroidSurfaceKHR(instance, &createInfo, pAllocator, pSurface); in createSurface()
236 return vki.createWin32SurfaceKHR(instance, &createInfo, pAllocator, pSurface); in createSurface()
250 return vki.createMacOSSurfaceMVK(instance, &createInfo, pAllocator, pSurface); in createSurface()
259 Move<VkSurfaceKHR> createSurface (const InstanceInterface& vki, in createSurface() argument
267 VK_CHECK(createSurface(vki, instance, wsiType, nativeDisplay, nativeWindow, pAllocator, &object)); in createSurface()
[all …]
DvkWsiUtil.hpp65 VkResult createSurface (const InstanceInterface& vki,
73 Move<VkSurfaceKHR> createSurface (const InstanceInterface& vki,
80 VkBool32 getPhysicalDeviceSurfaceSupport (const InstanceInterface& vki,
85 VkSurfaceCapabilitiesKHR getPhysicalDeviceSurfaceCapabilities (const InstanceInterface& vki,
89 std::vector<VkSurfaceFormatKHR> getPhysicalDeviceSurfaceFormats (const InstanceInterface& vki,
93 std::vector<VkPresentModeKHR> getPhysicalDeviceSurfacePresentModes (const InstanceInterface& vki,
DvkDebugReportUtil.cpp131 Move<VkDebugReportCallbackEXT> createCallback (const InstanceInterface& vki, in createCallback() argument
150 return createDebugReportCallbackEXT(vki, instance, &createInfo); in createCallback()
155 DebugReportRecorder::DebugReportRecorder (const InstanceInterface& vki, VkInstance instance) in DebugReportRecorder() argument
157 , m_callback (createCallback(vki, instance, &m_messages)) in DebugReportRecorder()
DvkMemUtil.cpp236 static MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, in allocateDedicated() argument
244 …const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, p… in allocateDedicated()
265 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, in allocateDedicated() argument
281 …return allocateDedicated(vki, vkd, physDevice, device, memoryRequirements, requirement, &dedicated… in allocateDedicated()
284 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, in allocateDedicated() argument
300 …return allocateDedicated(vki, vkd, physDevice, device, memoryRequirements, requirement, &dedicated… in allocateDedicated()
DvkQueryUtil.cpp310 vector<VkLayerProperties> enumerateDeviceLayerProperties (const InstanceInterface& vki, VkPhysicalD… in enumerateDeviceLayerProperties() argument
315 VK_CHECK(vki.enumerateDeviceLayerProperties(physicalDevice, &numLayers, DE_NULL)); in enumerateDeviceLayerProperties()
320 VK_CHECK(vki.enumerateDeviceLayerProperties(physicalDevice, &numLayers, &properties[0])); in enumerateDeviceLayerProperties()
327 vector<VkExtensionProperties> enumerateDeviceExtensionProperties (const InstanceInterface& vki, VkP… in enumerateDeviceExtensionProperties() argument
332 …VK_CHECK(vki.enumerateDeviceExtensionProperties(physicalDevice, layerName, &numExtensions, DE_NULL… in enumerateDeviceExtensionProperties()
337 …VK_CHECK(vki.enumerateDeviceExtensionProperties(physicalDevice, layerName, &numExtensions, &proper… in enumerateDeviceExtensionProperties()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiBufferComputeInstance.cpp44 const DeviceInterface& vki = context.getDeviceInterface(); in createDataBuffer() local
62 Move<VkBuffer> buffer(createBuffer(vki, device, &createInfo)); in createDataBuffer()
64 const VkMemoryRequirements requirements = getBufferMemoryRequirements(vki, device, *buffer); in createDataBuffer()
67 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset())); in createDataBuffer()
78 flushAlloc(vki, device, *allocation); in createDataBuffer()
91 const DeviceInterface& vki = context.getDeviceInterface(); in createColorDataBuffer() local
109 Move<VkBuffer> buffer(createBuffer(vki, device, &createInfo)); in createColorDataBuffer()
111 const VkMemoryRequirements requirements = getBufferMemoryRequirements(vki, device, *buffer); in createColorDataBuffer()
114 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset())); in createColorDataBuffer()
126 flushAlloc(vki, device, *allocation); in createColorDataBuffer()
[all …]
DvktApiExternalMemoryTests.cpp174 deUint32 chooseQueueFamilyIndex (const vk::InstanceInterface& vki, in chooseQueueFamilyIndex() argument
178 …<vk::VkQueueFamilyProperties> properties (vk::getPhysicalDeviceQueueFamilyProperties(vki, device)); in chooseQueueFamilyIndex()
236 const vk::InstanceInterface& vki, in createDevice() argument
337 return vk::createDevice(vkp, instance, vki, physicalDevice, &deviceCreateInfo); in createDevice()
359 void checkSemaphoreSupport (const vk::InstanceInterface& vki, in checkSemaphoreSupport() argument
378 vki.getPhysicalDeviceExternalSemaphoreProperties(device, &info, &properties); in checkSemaphoreSupport()
387 void checkFenceSupport (const vk::InstanceInterface& vki, in checkFenceSupport() argument
406 vki.getPhysicalDeviceExternalFenceProperties(device, &info, &properties); in checkFenceSupport()
415 void checkBufferSupport (const vk::InstanceInterface& vki, in checkBufferSupport() argument
439 vki.getPhysicalDeviceExternalBufferProperties(device, &info, &properties); in checkBufferSupport()
[all …]
DvktApiComputeInstanceResultBuffer.cpp34 ComputeInstanceResultBuffer::ComputeInstanceResultBuffer (const DeviceInterface &vki, in ComputeInstanceResultBuffer() argument
38 : m_vki(vki), in ComputeInstanceResultBuffer()
58 Move<VkBuffer> ComputeInstanceResultBuffer::createResultBuffer(const DeviceInterface &vki, in createResultBuffer() argument
76 Move<VkBuffer> buffer(createBuffer(vki, device, &createInfo)); in createResultBuffer()
78 const VkMemoryRequirements requirements = getBufferMemoryRequirements(vki, device, *buffer); in createResultBuffer()
81 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset())); in createResultBuffer()
89 flushAlloc(vki, device, *allocation); in createResultBuffer()
DvktApiDeviceInitializationTests.cpp670 const InstanceDriver vki (vkp, instance.get()); in createDeviceFeatures2Test() local
671 …const VkPhysicalDevice physicalDevice = chooseDevice(vki, instance.get(), context.getTestConte… in createDeviceFeatures2Test()
708 vki.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createDeviceFeatures2Test()
711 …const Unique<VkDevice> device (createDevice(vkp, *instance, vki, physicalDevice, &deviceCreateInf… in createDeviceFeatures2Test()
1268 const InstanceInterface& vki (instanceDriver); in createInstanceDeviceIntentionalAllocFail() local
1270 result = vki.enumeratePhysicalDevices(instance, &physicalDeviceCount, DE_NULL); in createInstanceDeviceIntentionalAllocFail()
1274 vki.destroyInstance(instance, &allocationCallbacks); in createInstanceDeviceIntentionalAllocFail()
1287 result = vki.enumeratePhysicalDevices(instance, &physicalDeviceCount, physicalDevices.data()); in createInstanceDeviceIntentionalAllocFail()
1291 vki.destroyInstance(instance, &allocationCallbacks); in createInstanceDeviceIntentionalAllocFail()
1302vki.getPhysicalDeviceQueueFamilyProperties(physicalDevices[chosenDevice], &queueFamilyCount, DE_NU… in createInstanceDeviceIntentionalAllocFail()
[all …]
DvktApiGetMemoryCommitment.cpp99 const InstanceInterface& vki = m_context.getInstanceInterface(); in iterate() local
100 …const VkPhysicalDeviceMemoryProperties pMemoryProperties = getPhysicalDeviceMemoryProperties(vki,… in iterate()
367 const InstanceInterface& vki = m_context.getInstanceInterface(); in iterate() local
369 …const VkPhysicalDeviceMemoryProperties pMemoryProperties = getPhysicalDeviceMemoryProperties(vki,… in iterate()
465 const InstanceInterface& vki = m_context.getInstanceInterface(); in isDeviceMemoryCommitmentOk() local
467 …const VkPhysicalDeviceMemoryProperties pMemoryProperties = getPhysicalDeviceMemoryProperties(vki,p… in isDeviceMemoryCommitmentOk()
DvktApiComputeInstanceResultBuffer.hpp46 ComputeInstanceResultBuffer (const vk::DeviceInterface &vki,
60 static vk::Move<vk::VkBuffer> createResultBuffer(const vk::DeviceInterface &vki,
DvktApiPipelineTests.cpp85 const InstanceInterface& vki = context.getInstanceInterface(); in renderpassLifetimeTest() local
89 const VkFormat format = getRenderTargetFormat(vki, physicalDevice); in renderpassLifetimeTest()
90 …const VkFormatProperties formatProperties (getPhysicalDeviceFormatProperties(vki, physical… in renderpassLifetimeTest()
499 const InstanceInterface& vki = context.getInstanceInterface(); in framebufferCompatibleRenderPassTest() local
526 const VkFormat format = getRenderTargetFormat(vki, physicalDevice); in framebufferCompatibleRenderPassTest()
527 …const VkFormatProperties formatProperties (getPhysicalDeviceFormatProperties(vki, physicalDevice… in framebufferCompatibleRenderPassTest()
853 const InstanceInterface& vki = context.getInstanceInterface(); in pipelineLayoutLifetimeGraphicsTest() local
881 const VkFormat format = getRenderTargetFormat(vki, physicalDevice); in pipelineLayoutLifetimeGraphicsTest()
882 …const VkFormatProperties formatProperties (getPhysicalDeviceFormatProperties(vki, physicalDev… in pipelineLayoutLifetimeGraphicsTest()
1380 const InstanceInterface& vki = context.getInstanceInterface(); in checkSupport() local
[all …]
DvktApiFeatureInfo.cpp621 const InstanceDriver vki (vkp, *instance); in enumeratePhysicalDeviceGroups() local
622 …const vector<VkPhysicalDeviceGroupProperties> devicegroups = enumeratePhysicalDeviceGroups(vki, *… in enumeratePhysicalDeviceGroups()
883 const InstanceInterface& vki = context.getInstanceInterface(); in testNoKhxExtensions() local
892 vki.enumerateDeviceExtensionProperties(physicalDevice, DE_NULL, &deviceExtensionsCount, DE_NULL); in testNoKhxExtensions()
899vki.enumerateDeviceExtensionProperties(physicalDevice, DE_NULL, &deviceExtensionsCount, &extension… in testNoKhxExtensions()
1431 const InstanceDriver vki (vkp, *instance); in deviceGroupPeerMemoryFeatures() local
1442 …VkPhysicalDeviceGroupProperties> deviceGroupProps = enumeratePhysicalDeviceGroups(vki, *instance); in deviceGroupPeerMemoryFeatures()
1449 …ueueFamilyProperties> queueProps = getPhysicalDeviceQueueFamilyProperties(vki, deviceGroupProps[d… in deviceGroupPeerMemoryFeatures()
1492 …Move<VkDevice> deviceGroup = createDevice(vkp, *instance, vki, deviceGroupProps[devGroupIdx].phys… in deviceGroupPeerMemoryFeatures()
2855 const InstanceDriver vki (vkp, *instance); in deviceFeatures2() local
[all …]
/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSurfaceTests.cpp125 …virtual void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const …
128 const InstanceInterface& vki, in operator ()() argument
143 getResult(vki, physDevice, surface, &outputData[0]); // update m_count and m_result in operator ()()
156 …void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKH… in getResult()
158 m_result = vki.getPhysicalDeviceSurfaceFormatsKHR(physDevice, surface, &m_count, data); in getResult()
164 …void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKH… in getResult()
166 m_result = vki.getPhysicalDeviceSurfacePresentModesKHR(physDevice, surface, &m_count, data); in getResult()
204 const InstanceDriver vki; member
215 , vki (context.getPlatformInterface(), *instance) in InstanceHelper()
227 , vki (context.getPlatformInterface(), *instance) in InstanceHelper()
[all …]
DvktWsiColorSpaceTests.cpp130 const InstanceInterface& vki, in createDeviceWithWsi() argument
172 return createDevice(vkp, instance, vki, physicalDevice, &deviceParams, pAllocator); in createDeviceWithWsi()
175 deUint32 getNumQueueFamilyIndices (const InstanceInterface& vki, VkPhysicalDevice physicalDevice) in getNumQueueFamilyIndices() argument
179 vki.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numFamilies, DE_NULL); in getNumQueueFamilyIndices()
184 vector<deUint32> getSupportedQueueFamilyIndices (const InstanceInterface& vki, VkPhysicalDevice phy… in getSupportedQueueFamilyIndices() argument
186 const deUint32 numTotalFamilyIndices = getNumQueueFamilyIndices(vki, physicalDevice); in getSupportedQueueFamilyIndices()
191 if (getPhysicalDeviceSurfaceSupport(vki, physicalDevice, queueFamilyNdx, surface) != VK_FALSE) in getSupportedQueueFamilyIndices()
198 deUint32 chooseQueueFamilyIndex (const InstanceInterface& vki, VkPhysicalDevice physicalDevice, VkS… in chooseQueueFamilyIndex() argument
200 …const vector<deUint32> supportedFamilyIndices = getSupportedQueueFamilyIndices(vki, physicalDevice… in chooseQueueFamilyIndex()
212 const InstanceDriver vki; member
[all …]
DvktWsiSwapchainTests.cpp129 const InstanceInterface& vki, in createDeviceWithWsi() argument
169 return createDevice(vkp, instance, vki, physicalDevice, &deviceParams, pAllocator); in createDeviceWithWsi()
172 deUint32 getNumQueueFamilyIndices (const InstanceInterface& vki, VkPhysicalDevice physicalDevice) in getNumQueueFamilyIndices() argument
176 vki.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numFamilies, DE_NULL); in getNumQueueFamilyIndices()
181 vector<deUint32> getSupportedQueueFamilyIndices (const InstanceInterface& vki, VkPhysicalDevice phy… in getSupportedQueueFamilyIndices() argument
183 const deUint32 numTotalFamilyIndices = getNumQueueFamilyIndices(vki, physicalDevice); in getSupportedQueueFamilyIndices()
188 if (getPhysicalDeviceSurfaceSupport(vki, physicalDevice, queueFamilyNdx, surface) != VK_FALSE) in getSupportedQueueFamilyIndices()
195 deUint32 chooseQueueFamilyIndex (const InstanceInterface& vki, VkPhysicalDevice physicalDevice, VkS… in chooseQueueFamilyIndex() argument
197 …const vector<deUint32> supportedFamilyIndices = getSupportedQueueFamilyIndices(vki, physicalDevice… in chooseQueueFamilyIndex()
209 const InstanceDriver vki; member
[all …]
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
DvktBindingDescriptorUpdateTests.cpp44 const vk::DeviceInterface& vki = context.getDeviceInterface(); in EmptyDescriptorUpdateCase() local
55 …vk::Unique<vk::VkDescriptorSetLayout> layout (builder.build(vki, device, (vk::VkDescriptorSetLa… in EmptyDescriptorUpdateCase()
58 …iptorPoolBuilder().addType(vk::VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 2).build(vki, device, vk::VK_DES… in EmptyDescriptorUpdateCase()
70 …vk::Unique<vk::VkDescriptorSet> descriptorSet (allocateDescriptorSet(vki, device, &setAllocateI… in EmptyDescriptorUpdateCase()
85 vk::Unique<vk::VkBuffer> buffer (createBuffer(vki, device, &bufferCreateInfo)); in EmptyDescriptorUpdateCase()
86 …const vk::VkMemoryRequirements requirements = vk::getBufferMemoryRequirements(vki, device, *buf… in EmptyDescriptorUpdateCase()
89 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset())); in EmptyDescriptorUpdateCase()
113 vki.updateDescriptorSets(device, 1, &descriptorWrite, 0, DE_NULL); in EmptyDescriptorUpdateCase()
DvktBindingShaderAccessTests.cpp366 de::MovePtr<vk::Allocation> allocateAndBindObjectMemory (const vk::DeviceInterface& vki, vk::VkDevi… in allocateAndBindObjectMemory() argument
368 const vk::VkMemoryRequirements requirements = vk::getBufferMemoryRequirements(vki, device, buffer); in allocateAndBindObjectMemory()
371 VK_CHECK(vki.bindBufferMemory(device, buffer, allocation->getMemory(), allocation->getOffset())); in allocateAndBindObjectMemory()
375 de::MovePtr<vk::Allocation> allocateAndBindObjectMemory (const vk::DeviceInterface& vki, vk::VkDevi… in allocateAndBindObjectMemory() argument
377 const vk::VkMemoryRequirements requirements = vk::getImageMemoryRequirements(vki, device, image); in allocateAndBindObjectMemory()
380 VK_CHECK(vki.bindImageMemory(device, image, allocation->getMemory(), allocation->getOffset())); in allocateAndBindObjectMemory()
470 static vk::Move<vk::VkImage> createColorAttachment (const vk::DeviceInterface& vki,
477 static vk::Move<vk::VkImageView> createColorAttachmentView (const vk::DeviceInterface& vki,
482 static vk::Move<vk::VkFramebuffer> createFramebuffer (const vk::DeviceInterface& vki,
488 static vk::Move<vk::VkCommandPool> createCommandPool (const vk::DeviceInterface& vki,
[all …]
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryRequirementsTests.cpp174 const InstanceInterface& vki,
210 const InstanceInterface& vki,
274 const InstanceInterface& vki = context.getInstanceInterface(); in execTest() local
278 preTestChecks(context, vki, physDevice, bufferFlags); in execTest()
280 …const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, p… in execTest()
281 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits; in execTest()
345 const InstanceInterface& vki, in preTestChecks() argument
349 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice); in preTestChecks()
455 const InstanceInterface& vki,
483 const InstanceInterface& vki, in preTestChecks() argument
[all …]
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageMutableTests.cpp1662 const InstanceInterface& vki = context.getInstanceInterface(); in testMutable() local
1673 vki.getPhysicalDeviceFormatProperties(physDevice, caseDef.imageFormat, &imageFormatProps); in testMutable()
1674 vki.getPhysicalDeviceFormatProperties(physDevice, caseDef.viewFormat, &viewFormatProps); in testMutable()
1716 !getPhysicalDeviceFeatures(vki, physDevice).shaderStorageImageExtendedFormats) in testMutable()
1881 const InstanceInterface& vki, in createDeviceWithWsi() argument
1923 return createDevice(vkp, instance, vki, physicalDevice, &deviceParams, pAllocator); in createDeviceWithWsi()
1926 deUint32 getNumQueueFamilyIndices(const InstanceInterface& vki, VkPhysicalDevice physicalDevice) in getNumQueueFamilyIndices() argument
1930 vki.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numFamilies, DE_NULL); in getNumQueueFamilyIndices()
1935 vector<deUint32> getSupportedQueueFamilyIndices(const InstanceInterface& vki, VkPhysicalDevice phys… in getSupportedQueueFamilyIndices() argument
1937 const deUint32 numTotalFamilyIndices = getNumQueueFamilyIndices(vki, physicalDevice); in getSupportedQueueFamilyIndices()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationLimitsTests.cpp75 const InstanceInterface& vki = context.getInstanceInterface(); in deviceLimitsTestCase() local
77 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice); in deviceLimitsTestCase()
82 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice); in deviceLimitsTestCase()
DvktTessellationGeometryPointSizeTests.cpp70 void checkPointSizeRequirements (const InstanceInterface& vki, const VkPhysicalDevice physDevice, c… in checkPointSizeRequirements() argument
72 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice); in checkPointSizeRequirements()
289 const InstanceInterface& vki = context.getInstanceInterface(); in test() local
292 …requireFeatures (vki, physDevice, FEATURE_TESSELLATION_SHADER | FEATURE_GEOMETRY_SHADER … in test()
293 checkPointSizeRequirements(vki, physDevice, expectedPointSize); in test()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMakeUtil.cpp217 MovePtr<Allocation> bindImageDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, c… in bindImageDedicated() argument
219 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, image, requirement)); in bindImageDedicated()
224 MovePtr<Allocation> bindBufferDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, … in bindBufferDedicated() argument
226 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, buffer, requirement)); in bindBufferDedicated()
DvktPipelineRenderToImageTests.cpp171 de::MovePtr<Allocation> bindBuffer (const InstanceInterface& vki, in bindBuffer() argument
189 return bindBufferDedicated(vki, vkd, physDevice, device, buffer, requirement); in bindBuffer()
199 de::MovePtr<Allocation> bindImage (const InstanceInterface& vki, in bindImage() argument
217 return bindImageDedicated(vki, vkd, physDevice, device, image, requirement); in bindImage()
747 const InstanceInterface& vki = context.getInstanceInterface(); in getMemoryTypeNdx() local
751 …const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, p… in getMemoryTypeNdx()
768 const InstanceInterface& vki = context.getInstanceInterface(); in getMaxDeviceHeapSize() local
770 …const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, p… in getMaxDeviceHeapSize()
805 bool isDepthStencilFormatSupported (const InstanceInterface& vki, const VkPhysicalDevice physDevice… in isDepthStencilFormatSupported() argument
807 const VkFormatProperties properties = getPhysicalDeviceFormatProperties(vki, physDevice, format); in isDepthStencilFormatSupported()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationCrossInstanceSharingTests.cpp117 const vk::InstanceInterface& vki = context.getInstanceInterface(); in NotSupportedChecker() local
159 …const vk::VkResult res = vki.getPhysicalDeviceImageFormatProperties2(physicalDevice, &imageFormatI… in NotSupportedChecker()
197 vki.getPhysicalDeviceExternalBufferProperties(physicalDevice, &info, &properties); in NotSupportedChecker()
229 vki.getPhysicalDeviceExternalSemaphoreProperties(physicalDevice, &info, &properties); in NotSupportedChecker()
336 DeviceId getDeviceId (const vk::InstanceInterface& vki, in getDeviceId() argument
350 vki.getPhysicalDeviceProperties2(physicalDevice, &properties); in getDeviceId()
378 vk::VkPhysicalDevice getPhysicalDevice (const vk::InstanceInterface& vki, in getPhysicalDevice() argument
382 return vk::chooseDevice(vki, instance, cmdLine); in getPhysicalDevice()
385 vk::VkPhysicalDevice getPhysicalDevice (const vk::InstanceInterface& vki, vk::VkInstance instance, … in getPhysicalDevice() argument
387 const std::vector<vk::VkPhysicalDevice> devices (vk::enumeratePhysicalDevices(vki, instance)); in getPhysicalDevice()
[all …]

12345