HomeSort by relevance Sort by last modified time
    Searched refs:physDev (Results 1 - 6 of 6) sorted by null

  /external/skia/src/gpu/vk/
GrVkCaps.cpp 16 VkPhysicalDevice physDev, uint32_t featureFlags, uint32_t extensionFlags)
53 this->init(contextOptions, vkInterface, physDev, featureFlags, extensionFlags);
73 VkPhysicalDevice physDev, uint32_t featureFlags, uint32_t extensionFlags) {
76 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties(physDev, &properties));
79 GR_VK_CALL(vkInterface, GetPhysicalDeviceMemoryProperties(physDev, &memoryProperties));
83 this->initConfigTable(vkInterface, physDev);
84 this->initStencilFormat(vkInterface, physDev);
262 VkPhysicalDevice physDev,
266 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
270 void GrVkCaps::initStencilFormat(const GrVkInterface* interface, VkPhysicalDevice physDev) {
    [all...]
GrVkBackendContext.cpp 44 VkPhysicalDevice physDev;
130 err = vkEnumeratePhysicalDevices(inst, &gpuCount, &physDev);
139 vkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr);
146 vkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps);
162 if (canPresent(inst, physDev, i)) {
171 extensions.initDevice(kGrVkMinimumVersion, inst, physDev);
193 vkGetPhysicalDeviceFeatures(physDev, &deviceFeatures);
245 err = vkCreateDevice(physDev, &deviceInfo, nullptr, &device);
257 ctx->fPhysicalDevice = physDev;
GrVkExtensions.cpp 128 bool GrVkExtensions::initDevice(uint32_t specVersion, VkInstance inst, VkPhysicalDevice physDev) {
143 VkResult res = EnumerateDeviceLayerProperties(physDev, &layerCount, nullptr);
148 res = EnumerateDeviceLayerProperties(physDev, &layerCount, layers);
167 res = EnumerateDeviceExtensionProperties(physDev, nullptr, &extensionCount, nullptr);
172 res = EnumerateDeviceExtensionProperties(physDev, nullptr, &extensionCount, extensions);
191 res = EnumerateDeviceExtensionProperties(physDev,
198 res = EnumerateDeviceExtensionProperties(physDev,
GrVkCaps.h 127 void initStencilFormat(const GrVkInterface* iface, VkPhysicalDevice physDev);
  /external/skia/tools/viewer/sk_app/unix/
VulkanWindowContext_unix.cpp 49 auto canPresent = [&info](VkInstance instance, VkPhysicalDevice physDev,
63 VkBool32 check = getPhysicalDeviceXcbPresentationSupportKHR(physDev,
  /external/skia/tools/viewer/sk_app/win/
VulkanWindowContext_win.cpp 47 auto canPresent = [hwnd] (VkInstance instance, VkPhysicalDevice physDev,
58 VkBool32 check = getPhysicalDeviceWin32PresentationSupportKHR(physDev, queueFamilyIndex);

Completed in 160 milliseconds