Searched refs:physDev (Results 1 – 4 of 4) sorted by relevance
/external/skia/src/gpu/vk/ |
D | GrVkCaps.cpp | 15 VkPhysicalDevice physDev) : INHERITED(contextOptions) { in GrVkCaps() argument 47 this->init(contextOptions, vkInterface, physDev); in GrVkCaps() 51 VkPhysicalDevice physDev) { in init() argument 53 this->initGLSLCaps(vkInterface, physDev); in init() 54 this->initConfigTexturableTable(vkInterface, physDev); in init() 55 this->initConfigRenderableTable(vkInterface, physDev); in init() 56 this->initStencilFormats(vkInterface, physDev); in init() 59 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties(physDev, &properties)); in init() 108 void GrVkCaps::initGLSLCaps(const GrVkInterface* interface, VkPhysicalDevice physDev) { in initGLSLCaps() argument 126 VkPhysicalDevice physDev, in format_supported_for_feature() argument [all …]
|
D | GrVkCaps.h | 85 void initGLSLCaps(const GrVkInterface* interface, VkPhysicalDevice physDev); 86 void initConfigRenderableTable(const GrVkInterface* interface, VkPhysicalDevice physDev); 87 void initConfigTexturableTable(const GrVkInterface* interface, VkPhysicalDevice physDev); 88 void initStencilFormats(const GrVkInterface* interface, VkPhysicalDevice physDev);
|
D | GrVkGpu.cpp | 52 VkPhysicalDevice physDev; in vk_gpu_create() local 91 err = vkEnumeratePhysicalDevices(inst, &gpuCount, &physDev); in vk_gpu_create() 99 vkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr); in vk_gpu_create() 106 vkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps); in vk_gpu_create() 140 err = vkCreateDevice(physDev, &deviceInfo, nullptr, &device); in vk_gpu_create() 163 return new GrVkGpu(context, options, physDev, device, queue, cmdPool, inst); in vk_gpu_create() 169 VkPhysicalDevice physDev, VkDevice device, VkQueue queue, VkCommandPool cmdPool, in GrVkGpu() argument 180 fVkCaps.reset(new GrVkCaps(options, fInterface, physDev)); in GrVkGpu() 186 VK_CALL(GetPhysicalDeviceMemoryProperties(physDev, &fPhysDevMemProps)); in GrVkGpu()
|
D | GrVkGpu.h | 38 VkPhysicalDevice physDev, VkDevice device, VkQueue queue, VkCommandPool cmdPool,
|