Home
last modified time | relevance | path

Searched refs:deviceCreateInfo (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/frameworks/vulkan_layers/test/systemtest/
H A Dvulkan_loader_system_test.cpp292 VkDeviceCreateInfo deviceCreateInfo = {}; variable
293 deviceCreateInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
294 deviceCreateInfo.queueCreateInfoCount = static_cast<uint32_t>(queueCreateInfos.size());
295 deviceCreateInfo.pQueueCreateInfos = queueCreateInfos.data();
296 deviceCreateInfo.enabledExtensionCount = (uint32_t)deviceExtensions.size();
297 deviceCreateInfo.ppEnabledExtensionNames = deviceExtensions.data();
300 err = vkCreateDevice(physicalDevice_, &deviceCreateInfo, nullptr, &logicalDevice);
/ohos5.0/foundation/graphic/graphic_3d/3d_scene_adapter/src/
H A Dscene_adapter.cpp238 Render::DeviceCreateInfo deviceCreateInfo; in InitEngine() local
242 deviceCreateInfo.backendType = RENDER_NS::DeviceBackendType::OPENGLES; in InitEngine()
243 deviceCreateInfo.backendConfiguration = &glExtra; in InitEngine()
245 renderCreateInfo.deviceCreateInfo = deviceCreateInfo; in InitEngine()
/ohos5.0/foundation/graphic/graphic_2d/frameworks/vulkan_layers/test/unittest/
H A Dvulkan_loader_unit_test.cpp496 VkDeviceCreateInfo deviceCreateInfo = {}; variable
497 deviceCreateInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
507 deviceCreateInfo.queueCreateInfoCount = static_cast<uint32_t>(queueCreateInfos.size());
508 deviceCreateInfo.pQueueCreateInfos = queueCreateInfos.data();
513 deviceCreateInfo.enabledExtensionCount = (uint32_t)deviceExtensions.size();
514 deviceCreateInfo.ppEnabledExtensionNames = deviceExtensions.data();
516 VkResult err = vkCreateDevice(physicalDevice_, &deviceCreateInfo, nullptr, &logicalDevice);
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/
H A Dintf_render_context.h77 DeviceCreateInfo deviceCreateInfo; member
/ohos5.0/foundation/graphic/graphic_3d/3d_widget_adapter/core/src/lume/
H A Dlume_common.cpp236 Render::DeviceCreateInfo deviceCreateInfo; in CreateRenderContext() local
246 deviceCreateInfo.backendType = RENDER_NS::DeviceBackendType::VULKAN; in CreateRenderContext()
247 deviceCreateInfo.backendConfiguration = &vkExtra; in CreateRenderContext()
253 deviceCreateInfo.backendType = Render::DeviceBackendType::OPENGLES; in CreateRenderContext()
254 deviceCreateInfo.backendConfiguration = &glesExtra; in CreateRenderContext()
264 deviceCreateInfo, in CreateRenderContext()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Ddevice.h92 Device(RenderContext& renderContext, const DeviceCreateInfo& deviceCreateInfo);
H A Ddevice.cpp486 Device::Device(RenderContext& renderContext, const DeviceCreateInfo& deviceCreateInfo) : renderCont… in Device() argument
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/
H A Drender_context.cpp396 device_ = CreateDevice(createInfo_.deviceCreateInfo); in Init()