Searched refs:physDevice (Results 1 - 25 of 36) sorted by relevance

12

/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationLimitsTests.cpp76 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
77 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
82 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
H A DvktTessellationGeometryPointSizeTests.cpp67 void checkPointSizeRequirements (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const int maxPointSize) argument
69 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
287 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
289 requireFeatures (vki, physDevice, FEATURE_TESSELLATION_SHADER | FEATURE_GEOMETRY_SHADER | FEATURE_SHADER_TESSELLATION_AND_GEOMETRY_POINT_SIZE);
290 checkPointSizeRequirements(vki, physDevice, expectedPointSize);
/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageLoadStoreUtil.cpp102 VkDeviceSize getOptimalUniformBufferChunkSize (const InstanceInterface& vki, const VkPhysicalDevice physDevice, VkDeviceSize minimumRequiredChunkSizeBytes) argument
104 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
H A DvktImageLoadStoreUtil.hpp68 vk::VkDeviceSize getOptimalUniformBufferChunkSize (const vk::InstanceInterface& vki, const vk::VkPhysicalDevice physDevice, vk::VkDeviceSize minimumRequiredChunkSizeBytes);
H A DvktImageMultisampleLoadStoreTests.cpp180 void checkRequirements (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const CaseDef& caseDef) argument
183 vki.getPhysicalDeviceFeatures(physDevice, &features);
190 physDevice, caseDef.format, VK_IMAGE_TYPE_2D, VK_IMAGE_TILING_OPTIMAL, VK_IMAGE_USAGE_STORAGE_BIT, (VkImageCreateFlags)0, &imageFormatProperties);
244 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
251 checkRequirements(vki, physDevice, caseDef);
266 const VkDeviceSize bufferChunkSize = getOptimalUniformBufferChunkSize(vki, physDevice, sizeof(deInt32));
/external/deqp/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp175 const VkPhysicalDevice physDevice,
211 const VkPhysicalDevice physDevice,
276 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
278 preTestChecks(context, vki, physDevice, bufferFlags);
280 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
281 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits;
346 const VkPhysicalDevice physDevice,
349 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
456 const VkPhysicalDevice physDevice,
484 const VkPhysicalDevice physDevice,
344 preTestChecks(Context& , const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkBufferCreateFlags flags) argument
482 preTestChecks(Context& context, const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkBufferCreateFlags flags) argument
566 preTestChecks(Context& context, const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkBufferCreateFlags flags) argument
785 preTestChecks(Context& , const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkImageCreateFlags createFlags) argument
869 isImageSupported(const deUint32 apiVersion, const InstanceInterface& vki, const VkPhysicalDevice physDevice, const std::vector<std::string>& deviceExtensions, const VkImageCreateInfo& info) argument
1306 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
1436 preTestChecks(Context& context, const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkImageCreateFlags createFlags) argument
1500 preTestChecks(Context& context, const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkImageCreateFlags createFlags) argument
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkMemUtil.cpp213 const VkPhysicalDevice& physDevice,
219 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
242 const VkPhysicalDevice& physDevice,
256 return allocateDedicated(vki, vkd, physDevice, device, memoryRequirements, requirement, &dedicatedAllocationInfo);
261 const VkPhysicalDevice& physDevice,
275 return allocateDedicated(vki, vkd, physDevice, device, memoryRequirements, requirement, &dedicatedAllocationInfo);
211 allocateDedicated(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkMemoryRequirements& memReqs, const MemoryRequirement requirement, const void* pNext) argument
240 allocateDedicated(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkBuffer buffer, MemoryRequirement requirement) argument
259 allocateDedicated(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkImage image, MemoryRequirement requirement) argument
H A DvkMemUtil.hpp138 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkBuffer buffer, MemoryRequirement requirement);
139 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkImage image, MemoryRequirement requirement);
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMakeUtil.cpp296 MovePtr<Allocation> bindImageDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice physDevice, const VkDevice device, const VkImage image, const MemoryRequirement requirement) argument
298 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, image, requirement));
303 MovePtr<Allocation> bindBufferDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice physDevice, const VkDevice device, const VkBuffer buffer, const MemoryRequirement requirement) argument
305 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, buffer, requirement));
H A DvktPipelineRenderToImageTests.cpp172 const VkPhysicalDevice& physDevice,
188 return bindBufferDedicated(vki, vkd, physDevice, device, buffer, requirement);
200 const VkPhysicalDevice& physDevice,
216 return bindImageDedicated(vki, vkd, physDevice, device, image, requirement);
756 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
758 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
776 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
777 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
812 bool isDepthStencilFormatSupported (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkFormat format) argument
814 const VkFormatProperties properties = getPhysicalDeviceFormatProperties(vki, physDevice, forma
170 bindBuffer(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkBuffer& buffer, const MemoryRequirement requirement, Allocator& allocator, AllocationKind allocationKind) argument
198 bindImage(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkImage& image, const MemoryRequirement requirement, Allocator& allocator, AllocationKind allocationKind) argument
895 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
1417 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
[all...]
H A DvktPipelineMakeUtil.hpp91 de::MovePtr<vk::Allocation> bindImageDedicated (const vk::InstanceInterface& vki, const vk::DeviceInterface& vkd, const vk::VkPhysicalDevice physDevice, const vk::VkDevice device, const vk::VkImage image, const vk::MemoryRequirement requirement);
92 de::MovePtr<vk::Allocation> bindBufferDedicated (const vk::InstanceInterface& vki, const vk::DeviceInterface& vkd, const vk::VkPhysicalDevice physDevice, const vk::VkDevice device, const vk::VkBuffer buffer, const vk::MemoryRequirement requirement);
H A DvktPipelineSpecConstantUtil.cpp375 void requireFeatures (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const FeatureFlags flags) argument
377 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
H A DvktPipelineSpecConstantUtil.hpp75 void requireFeatures (const vk::InstanceInterface& vki, const vk::VkPhysicalDevice physDevice, const FeatureFlags flags);
H A DvktPipelineImageSamplingInstance.cpp51 const VkPhysicalDevice& physDevice,
69 return allocateDedicated(vki, vkd, physDevice, device, buffer, requirement);
81 const VkPhysicalDevice& physDevice,
99 return allocateDedicated(vki, vkd, physDevice, device, image, requirement);
217 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
318 m_imageAllocs[imgNdx] = SharedAllocPtr(new UniqueAlloc(allocateImage(vki, vk, physDevice, vkDevice, **m_images[imgNdx], MemoryRequirement::Any, memAlloc, m_allocationKind)));
423 m_colorImageAllocs[imgNdx] = SharedAllocPtr(new UniqueAlloc(allocateImage(vki, vk, physDevice, vkDevice, **m_colorImages[imgNdx], MemoryRequirement::Any, memAlloc, m_allocationKind)));
757 m_vertexBufferAlloc = allocateBuffer(vki, vk, physDevice, vkDevice, *m_vertexBuffer, MemoryRequirement::HostVisible, memAlloc, m_allocationKind);
49 allocateBuffer(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkBuffer& buffer, const MemoryRequirement requirement, Allocator& allocator, AllocationKind allocationKind) argument
79 allocateImage(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkImage& image, const MemoryRequirement requirement, Allocator& allocator, AllocationKind allocationKind) argument
H A DvktPipelineMultisampleImageTests.cpp505 const VkPhysicalDevice physDevice,
511 vki.getPhysicalDeviceFeatures(physDevice, &features);
518 physDevice, format, VK_IMAGE_TYPE_2D, VK_IMAGE_TILING_OPTIMAL, usage, (VkImageCreateFlags)0, &imageFormatProperties);
930 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
937 checkImageFormatRequirements(vki, physDevice, caseDef.numSamples, caseDef.colorFormat, colorImageUsage);
1445 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
1448 checkImageFormatRequirements(vki, physDevice, caseDef.numSamples, caseDef.colorFormat, VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT | VK_IMAGE_USAGE_STORAGE_BIT);
504 checkImageFormatRequirements(const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSampleCountFlagBits sampleCount, const VkFormat format, const VkImageUsageFlags usage) argument
H A DvktPipelineMultisampleTests.cpp90 bool isSupportedDepthStencilFormat (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkFormat format);
752 bool isSupportedDepthStencilFormat (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkFormat format) argument
755 vki.getPhysicalDeviceFormatProperties(physDevice, format, &formatProps);
765 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
769 if (isSupportedDepthStencilFormat(vki, physDevice, VK_FORMAT_D24_UNORM_S8_UINT))
772 if (isSupportedDepthStencilFormat(vki, physDevice, VK_FORMAT_D32_SFLOAT_S8_UINT))
/external/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryTestsUtil.cpp715 VkBool32 checkPointSize (const InstanceInterface& vki, const VkPhysicalDevice physDevice) argument
717 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures (vki, physDevice);
721 void checkGeometryShaderSupport (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const int numGeometryShaderInvocations) argument
723 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures (vki, physDevice);
724 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits;
H A DvktGeometryTestsUtil.hpp192 void checkGeometryShaderSupport (const vk::InstanceInterface& vki, const vk::VkPhysicalDevice physDevice, const int numGeometryShaderInvocations = 0);
193 vk::VkBool32 checkPointSize (const vk::InstanceInterface& vki, const vk::VkPhysicalDevice physDevice);
H A DvktGeometryInstancedRenderingTests.cpp629 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
632 checkGeometryShaderSupport(vki, physDevice, params.numInvocations);
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesQueueBindSparseTests.cpp158 const VkPhysicalDevice physDevice = m_context.getPhysicalDevice(); local
162 if (!getPhysicalDeviceFeatures(vki, physDevice).sparseBinding)
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
H A DvktFragmentOperationsScissorMultiViewportTests.cpp371 void requireFeatureMultiViewport (const InstanceInterface& vki, const VkPhysicalDevice physDevice) argument
373 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
374 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits;
/external/deqp/external/vulkancts/modules/vulkan/clipping/
H A DvktClippingTests.cpp77 void requireFeatures (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const FeatureFlags flags) argument
79 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
966 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
967 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits;
980 requireFeatures(vki, physDevice, requirements);
1103 const VkPhysicalDevice physDevice = context.getPhysicalDevice(); local
1105 requireFeatures(vki, physDevice, FEATURE_SHADER_CLIP_DISTANCE);
/external/deqp/external/vulkancts/modules/vulkan/wsi/
H A DvktWsiSurfaceTests.cpp125 virtual void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, T* data) = 0;
129 const VkPhysicalDevice physDevice,
143 getResult(vki, physDevice, surface, &outputData[0]); // update m_count and m_result
156 void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, VkSurfaceFormatKHR* data) argument
158 m_result = vki.getPhysicalDeviceSurfaceFormatsKHR(physDevice, surface, &m_count, data);
164 void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, VkPresentModeKHR* data) argument
166 m_result = vki.getPhysicalDeviceSurfacePresentModesKHR(physDevice, surface, &m_count, data);
127 operator ()(tcu::ResultCollector& results, const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, const std::size_t expectedCompleteSize) argument
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationUtil.cpp702 void requireFeatures (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const FeatureFlags flags) argument
704 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiImageClearingTests.cpp75 const VkPhysicalDevice& physDevice,
93 return allocateDedicated(vki, vkd, physDevice, device, buffer, requirement);
105 const VkPhysicalDevice& physDevice,
123 return allocateDedicated(vki, vkd, physDevice, device, image, requirement);
73 allocateBuffer(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkBuffer& buffer, const MemoryRequirement requirement, Allocator& allocator, AllocationKind allocationKind) argument
103 allocateImage(const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkImage& image, const MemoryRequirement requirement, Allocator& allocator, AllocationKind allocationKind) argument

Completed in 843 milliseconds

12