Home
last modified time | relevance | path

Searched refs:tex_desc (Results 1 – 12 of 12) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/applemedia/
Dvideotexturecache-vulkan.mm253 MTLTextureDescriptor* tex_desc = [MTLTextureDescriptor new];
254 tex_desc.pixelFormat = mvkMTLPixelFormatFromVkFormat (vk_mem->create_info.format);
255 tex_desc.textureType = mvkMTLTextureTypeFromVkImageType (vk_mem->create_info.imageType, 0, false);
256 tex_desc.width = vk_mem->create_info.extent.width;
257 tex_desc.height = vk_mem->create_info.extent.height;
258 tex_desc.depth = vk_mem->create_info.extent.depth;
259 tex_desc.mipmapLevelCount = vk_mem->create_info.mipLevels;
260 tex_desc.sampleCount = mvkSampleCountFromVkSampleCountFlagBits(vk_mem->create_info.samples);
261 tex_desc.arrayLength = vk_mem->create_info.arrayLayers;
262tex_desc.usage = MTLTextureUsageShaderRead | MTLTextureUsagePixelFormatView;//mvkMTLTextureUsageFr…
[all …]
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_wgpu.cpp472 WGPUTextureDescriptor tex_desc = {}; in ImGui_ImplWGPU_CreateFontsTexture() local
473 tex_desc.label = "Dear ImGui Font Texture"; in ImGui_ImplWGPU_CreateFontsTexture()
474 tex_desc.dimension = WGPUTextureDimension_2D; in ImGui_ImplWGPU_CreateFontsTexture()
475 tex_desc.size.width = width; in ImGui_ImplWGPU_CreateFontsTexture()
476 tex_desc.size.height = height; in ImGui_ImplWGPU_CreateFontsTexture()
477 tex_desc.size.depthOrArrayLayers = 1; in ImGui_ImplWGPU_CreateFontsTexture()
478 tex_desc.sampleCount = 1; in ImGui_ImplWGPU_CreateFontsTexture()
479 tex_desc.format = WGPUTextureFormat_RGBA8Unorm; in ImGui_ImplWGPU_CreateFontsTexture()
480 tex_desc.mipLevelCount = 1; in ImGui_ImplWGPU_CreateFontsTexture()
481 tex_desc.usage = WGPUTextureUsage_CopyDst | WGPUTextureUsage_TextureBinding; in ImGui_ImplWGPU_CreateFontsTexture()
[all …]
/third_party/mesa3d/src/panfrost/vulkan/
Dpanvk_vX_image.c151 void *tex_desc = PAN_ARCH >= 6 ? in panvk_per_arch() local
155 GENX(panfrost_new_texture)(pdev, &view->pview, tex_desc, &surf_descs); in panvk_per_arch()
/third_party/ffmpeg/libavfilter/
Dvf_yadif_cuda.c76 CUDA_TEXTURE_DESC tex_desc = { in call_kernel() local
91 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_prev, &res_desc, &tex_desc, NULL)); in call_kernel()
96 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_cur, &res_desc, &tex_desc, NULL)); in call_kernel()
101 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_next, &res_desc, &tex_desc, NULL)); in call_kernel()
Dvf_thumbnail_cuda.c166 CUDA_TEXTURE_DESC tex_desc = { in thumbnail_kernel() local
183 ret = CHECK_CU(cu->cuTexObjectCreate(&tex, &res_desc, &tex_desc, NULL)); in thumbnail_kernel()
Dvf_scale_cuda.c409 CUDA_TEXTURE_DESC tex_desc = { in call_resize_kernel() local
432 ret = CHECK_CU(cu->cuTexObjectCreate(&tex, &res_desc, &tex_desc, NULL)); in call_resize_kernel()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_format.h44 bool tex_desc);
Detnaviv_format.c274 bool tex_desc) in texture_use_int_filter() argument
279 if (tex_desc) in texture_use_int_filter()
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_texture.c1557 const struct util_format_description *tex_desc in r600_create_surface() local
1562 assert(tex_desc->block.bits == templ_desc->block.bits); in r600_create_surface()
1566 if (tex_desc->block.width != templ_desc->block.width || in r600_create_surface()
1567 tex_desc->block.height != templ_desc->block.height) { in r600_create_surface()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_texture.c2032 const struct util_format_description *tex_desc = util_format_description(tex->format); in si_create_surface() local
2035 assert(tex_desc->block.bits == templ_desc->block.bits); in si_create_surface()
2039 if (tex_desc->block.width != templ_desc->block.width || in si_create_surface()
2040 tex_desc->block.height != templ_desc->block.height) { in si_create_surface()
/third_party/ffmpeg/libavutil/
Dhwcontext_vulkan.c2359 CUDA_EXTERNAL_MEMORY_MIPMAPPED_ARRAY_DESC tex_desc = { in vulkan_export_to_cuda() local
2390 tex_desc.arrayDesc.Width = p_w; in vulkan_export_to_cuda()
2391 tex_desc.arrayDesc.Height = p_h; in vulkan_export_to_cuda()
2409 &tex_desc)); in vulkan_export_to_cuda()
/third_party/mesa3d/docs/relnotes/
D20.3.0.rst3233 - etnaviv: tex_desc: fix TS compression enable