Home
last modified time | relevance | path

Searched refs:pool_info (Results 1 – 9 of 9) sorted by relevance

/third_party/flutter/skia/third_party/externals/imgui/examples/example_sdl_vulkan/
Dmain.cpp165 VkDescriptorPoolCreateInfo pool_info = {}; in SetupVulkan() local
166 pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO; in SetupVulkan()
167 pool_info.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT; in SetupVulkan()
168 pool_info.maxSets = 1000 * IM_ARRAYSIZE(pool_sizes); in SetupVulkan()
169 pool_info.poolSizeCount = (uint32_t)IM_ARRAYSIZE(pool_sizes); in SetupVulkan()
170 pool_info.pPoolSizes = pool_sizes; in SetupVulkan()
171 err = vkCreateDescriptorPool(g_Device, &pool_info, g_Allocator, &g_DescriptorPool); in SetupVulkan()
/third_party/flutter/skia/third_party/externals/imgui/examples/example_glfw_vulkan/
Dmain.cpp175 VkDescriptorPoolCreateInfo pool_info = {}; in SetupVulkan() local
176 pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO; in SetupVulkan()
177 pool_info.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT; in SetupVulkan()
178 pool_info.maxSets = 1000 * IM_ARRAYSIZE(pool_sizes); in SetupVulkan()
179 pool_info.poolSizeCount = (uint32_t)IM_ARRAYSIZE(pool_sizes); in SetupVulkan()
180 pool_info.pPoolSizes = pool_sizes; in SetupVulkan()
181 err = vkCreateDescriptorPool(g_Device, &pool_info, g_Allocator, &g_DescriptorPool); in SetupVulkan()
/third_party/skia/third_party/externals/imgui/examples/example_glfw_vulkan/
Dmain.cpp197 VkDescriptorPoolCreateInfo pool_info = {}; in SetupVulkan() local
198 pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO; in SetupVulkan()
199 pool_info.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT; in SetupVulkan()
200 pool_info.maxSets = 1000 * IM_ARRAYSIZE(pool_sizes); in SetupVulkan()
201 pool_info.poolSizeCount = (uint32_t)IM_ARRAYSIZE(pool_sizes); in SetupVulkan()
202 pool_info.pPoolSizes = pool_sizes; in SetupVulkan()
203 err = vkCreateDescriptorPool(g_Device, &pool_info, g_Allocator, &g_DescriptorPool); in SetupVulkan()
/third_party/skia/third_party/externals/imgui/examples/example_sdl_vulkan/
Dmain.cpp189 VkDescriptorPoolCreateInfo pool_info = {}; in SetupVulkan() local
190 pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO; in SetupVulkan()
191 pool_info.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT; in SetupVulkan()
192 pool_info.maxSets = 1000 * IM_ARRAYSIZE(pool_sizes); in SetupVulkan()
193 pool_info.poolSizeCount = (uint32_t)IM_ARRAYSIZE(pool_sizes); in SetupVulkan()
194 pool_info.pPoolSizes = pool_sizes; in SetupVulkan()
195 err = vkCreateDescriptorPool(g_Device, &pool_info, g_Allocator, &g_DescriptorPool); in SetupVulkan()
/third_party/gstreamer/gst_libav/ext/libav/
Dgstavviddec.h80 GstVideoInfo pool_info; member
Dgstavviddec.c810 GST_VIDEO_INFO_FORMAT (&ffmpegdec->pool_info) == format && in gst_ffmpegviddec_ensure_internal_pool()
866 ffmpegdec->pool_info = info; in gst_ffmpegviddec_ensure_internal_pool()
953 if (!gst_video_frame_map (&dframe->vframe, &ffmpegdec->pool_info, in gst_ffmpegviddec_get_buffer2()
959 if (c < GST_VIDEO_INFO_N_PLANES (&ffmpegdec->pool_info)) { in gst_ffmpegviddec_get_buffer2()
2356 ffmpegdec->pool_info = state->info; in gst_ffmpegviddec_decide_allocation()
/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdkvpp.c415 GstVideoInfo *pool_info = NULL; in gst_msdkvpp_create_buffer_pool() local
423 pool_info = &thiz->sinkpad_buffer_pool_info; in gst_msdkvpp_create_buffer_pool()
427 pool_info = &thiz->srcpad_buffer_pool_info; in gst_msdkvpp_create_buffer_pool()
476 *pool_info = info; in gst_msdkvpp_create_buffer_pool()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/
Dgstvkfullscreenquad.c532 VkDescriptorPoolCreateInfo pool_info; in create_descriptor_pool() local
554 pool_info = (VkDescriptorPoolCreateInfo) { in create_descriptor_pool()
565 vkCreateDescriptorPool (self->queue->device->device, &pool_info, NULL, in create_descriptor_pool()
/third_party/mesa3d/src/vulkan/overlay-layer/
Doverlay.cpp2339 VkQueryPoolCreateInfo pool_info = { in overlay_AllocateCommandBuffers() local
2347 VK_CHECK(device_data->vtable.CreateQueryPool(device_data->device, &pool_info, in overlay_AllocateCommandBuffers()
2351 VkQueryPoolCreateInfo pool_info = { in overlay_AllocateCommandBuffers() local
2359 VK_CHECK(device_data->vtable.CreateQueryPool(device_data->device, &pool_info, in overlay_AllocateCommandBuffers()