OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:physDev
(Results
1 - 4
of
4
) sorted by null
/external/skia/src/gpu/vk/
GrVkCaps.cpp
15
VkPhysicalDevice
physDev
) : INHERITED(contextOptions) {
47
this->init(contextOptions, vkInterface,
physDev
);
51
VkPhysicalDevice
physDev
) {
53
this->initGLSLCaps(vkInterface,
physDev
);
54
this->initConfigTexturableTable(vkInterface,
physDev
);
55
this->initConfigRenderableTable(vkInterface,
physDev
);
56
this->initStencilFormats(vkInterface,
physDev
);
59
GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties(
physDev
, &properties));
108
void GrVkCaps::initGLSLCaps(const GrVkInterface* interface, VkPhysicalDevice
physDev
) {
126
VkPhysicalDevice
physDev
,
[
all
...]
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
);
GrVkGpu.cpp
52
VkPhysicalDevice
physDev
;
91
err = vkEnumeratePhysicalDevices(inst, &gpuCount, &
physDev
);
99
vkGetPhysicalDeviceQueueFamilyProperties(
physDev
, &queueCount, nullptr);
106
vkGetPhysicalDeviceQueueFamilyProperties(
physDev
, &queueCount, queueProps);
140
err = vkCreateDevice(
physDev
, &deviceInfo, nullptr, &device);
163
return new GrVkGpu(context, options,
physDev
, device, queue, cmdPool, inst);
169
VkPhysicalDevice
physDev
, VkDevice device, VkQueue queue, VkCommandPool cmdPool,
180
fVkCaps.reset(new GrVkCaps(options, fInterface,
physDev
));
186
VK_CALL(GetPhysicalDeviceMemoryProperties(
physDev
, &fPhysDevMemProps));
[
all
...]
GrVkGpu.h
38
VkPhysicalDevice
physDev
, VkDevice device, VkQueue queue, VkCommandPool cmdPool,
Completed in 232 milliseconds