HomeSort by relevance Sort by last modified time
    Searched refs:physDevice (Results 1 - 25 of 35) sorted by null

1 2

  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageLoadStoreUtil.cpp 102 VkDeviceSize getOptimalUniformBufferChunkSize (const InstanceInterface& vki, const VkPhysicalDevice physDevice, VkDeviceSize minimumRequiredChunkSizeBytes)
104 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
vktImageLoadStoreUtil.hpp 68 vk::VkDeviceSize getOptimalUniformBufferChunkSize (const vk::InstanceInterface& vki, const vk::VkPhysicalDevice physDevice, vk::VkDeviceSize minimumRequiredChunkSizeBytes);
vktImageMultisampleLoadStoreTests.cpp 180 void checkRequirements (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const CaseDef& caseDef)
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();
251 checkRequirements(vki, physDevice, caseDef);
266 const VkDeviceSize bufferChunkSize = getOptimalUniformBufferChunkSize(vki, physDevice, sizeof(deInt32));
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationLimitsTests.cpp 76 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
77 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
82 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
vktTessellationGeometryPointSizeTests.cpp 67 void checkPointSizeRequirements (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const int maxPointSize)
69 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
287 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
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/memory/
vktMemoryRequirementsTests.cpp 175 const VkPhysicalDevice physDevice,
211 const VkPhysicalDevice physDevice,
276 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
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,
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkMemUtil.cpp 206 const VkPhysicalDevice& physDevice,
212 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
235 const VkPhysicalDevice& physDevice,
249 return allocateDedicated(vki, vkd, physDevice, device, memoryRequirements, requirement, &dedicatedAllocationInfo);
254 const VkPhysicalDevice& physDevice,
268 return allocateDedicated(vki, vkd, physDevice, device, memoryRequirements, requirement, &dedicatedAllocationInfo);
vkMemUtil.hpp 136 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkBuffer buffer, MemoryRequirement requirement);
137 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/
vktPipelineMakeUtil.cpp 296 MovePtr<Allocation> bindImageDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice physDevice, const VkDevice device, const VkImage image, const MemoryRequirement requirement)
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)
305 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, buffer, requirement));
vktPipelineRenderToImageTests.cpp 172 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);
697 VkDeviceSize getMaxDeviceHeapSize (const InstanceInterface& vki, const VkPhysicalDevice physDevice)
699 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
740 bool isDepthStencilFormatSupported (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkFormat format)
742 const VkFormatProperties properties = getPhysicalDeviceFormatProperties(vki, physDevice, format);
868 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
    [all...]
vktPipelineMakeUtil.hpp 91 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);
vktPipelineSpecConstantUtil.cpp 375 void requireFeatures (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const FeatureFlags flags)
377 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
vktPipelineSpecConstantUtil.hpp 75 void requireFeatures (const vk::InstanceInterface& vki, const vk::VkPhysicalDevice physDevice, const FeatureFlags flags);
vktPipelineImageSamplingInstance.cpp 51 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();
320 m_imageAllocs[imgNdx] = SharedAllocPtr(new UniqueAlloc(allocateImage(vki, vk, physDevice, vkDevice, **m_images[imgNdx], MemoryRequirement::Any, memAlloc, m_allocationKind)));
425 m_colorImageAllocs[imgNdx] = SharedAllocPtr(new UniqueAlloc(allocateImage(vki, vk, physDevice, vkDevice, **m_colorImages[imgNdx], MemoryRequirement::Any, memAlloc, m_allocationKind)));
    [all...]
vktPipelineMultisampleImageTests.cpp 505 const VkPhysicalDevice physDevice,
511 vki.getPhysicalDeviceFeatures(physDevice, &features);
518 physDevice, format, VK_IMAGE_TYPE_2D, VK_IMAGE_TILING_OPTIMAL, usage, (VkImageCreateFlags)0, &imageFormatProperties);
    [all...]
vktPipelineMultisampleTests.cpp 81 bool isSupportedDepthStencilFormat (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkFormat format);
658 bool isSupportedDepthStencilFormat (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkFormat format)
661 vki.getPhysicalDeviceFormatProperties(physDevice, format, &formatProps);
671 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
675 if (isSupportedDepthStencilFormat(vki, physDevice, VK_FORMAT_D24_UNORM_S8_UINT))
678 if (isSupportedDepthStencilFormat(vki, physDevice, VK_FORMAT_D32_SFLOAT_S8_UINT))
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryTestsUtil.cpp 715 VkBool32 checkPointSize (const InstanceInterface& vki, const VkPhysicalDevice physDevice)
717 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures (vki, physDevice);
721 void checkGeometryShaderSupport (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const int numGeometryShaderInvocations)
723 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures (vki, physDevice);
724 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits;
vktGeometryTestsUtil.hpp 192 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);
vktGeometryInstancedRenderingTests.cpp 629 const VkPhysicalDevice physDevice = context.getPhysicalDevice();
632 checkGeometryShaderSupport(vki, physDevice, params.numInvocations);
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSurfaceTests.cpp 117 virtual void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, T* data) = 0;
121 const VkPhysicalDevice physDevice,
135 getResult(vki, physDevice, surface, &outputData[0]); // update m_count and m_result
148 void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, VkSurfaceFormatKHR* data)
150 m_result = vki.getPhysicalDeviceSurfaceFormatsKHR(physDevice, surface, &m_count, data);
156 void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, VkPresentModeKHR* data)
158 m_result = vki.getPhysicalDeviceSurfacePresentModesKHR(physDevice, surface, &m_count, data);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesQueueBindSparseTests.cpp 158 const VkPhysicalDevice physDevice = m_context.getPhysicalDevice();
162 if (!getPhysicalDeviceFeatures(vki, physDevice).sparseBinding)
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsScissorMultiViewportTests.cpp 371 void requireFeatureMultiViewport (const InstanceInterface& vki, const VkPhysicalDevice physDevice)
373 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
374 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/clipping/
vktClippingTests.cpp 77 void requireFeatures (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const FeatureFlags flags)
79 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationUtil.cpp 702 void requireFeatures (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const FeatureFlags flags)
704 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiImageClearingTests.cpp 74 const VkPhysicalDevice& physDevice,
92 return allocateDedicated(vki, vkd, physDevice, device, buffer, requirement);
104 const VkPhysicalDevice& physDevice,
122 return allocateDedicated(vki, vkd, physDevice, device, image, requirement);
    [all...]

Completed in 617 milliseconds

1 2