Searched refs:tex_desc (Results 1 - 10 of 10) sorted by relevance
/third_party/skia/third_party/externals/imgui/backends/ |
H A D | imgui_impl_wgpu.cpp | 472 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 in ImGui_ImplWGPU_CreateFontsTexture() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_yadif_cuda.c | 80 CUDA_TEXTURE_DESC tex_desc = { in call_kernel() local 95 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_prev, &res_desc, &tex_desc, NULL)); in call_kernel() 100 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_cur, &res_desc, &tex_desc, NULL)); in call_kernel() 105 ret = CHECK_CU(cu->cuTexObjectCreate(&tex_next, &res_desc, &tex_desc, NULL)); in call_kernel()
|
H A D | vf_chromakey_cuda.c | 338 CUDA_TEXTURE_DESC tex_desc = { in cudachromakey_process_internal() local 362 ret = CHECK_CU(cu->cuTexObjectCreate(&tex[i], &res_desc, &tex_desc, NULL)); in cudachromakey_process_internal()
|
H A D | vf_thumbnail_cuda.c | 168 CUDA_TEXTURE_DESC tex_desc = { in thumbnail_kernel() local 185 ret = CHECK_CU(cu->cuTexObjectCreate(&tex, &res_desc, &tex_desc, NULL)); in thumbnail_kernel()
|
H A D | vf_scale_cuda.c | 443 CUDA_TEXTURE_DESC tex_desc = { in scalecuda_resize() local 468 ret = CHECK_CU(cu->cuTexObjectCreate(&tex[i], &res_desc, &tex_desc, NULL)); in scalecuda_resize()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_format.h | 44 bool tex_desc);
|
H A D | etnaviv_format.c | 274 bool tex_desc) in texture_use_int_filter() 279 if (tex_desc) in texture_use_int_filter() 272 texture_use_int_filter(const struct pipe_sampler_view *sv, const struct pipe_sampler_state *ss, bool tex_desc) texture_use_int_filter() argument
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_texture.c | 1553 const struct util_format_description *tex_desc in r600_create_surface() local 1558 assert(tex_desc->block.bits == templ_desc->block.bits); in r600_create_surface() 1562 if (tex_desc->block.width != templ_desc->block.width || in r600_create_surface() 1563 tex_desc->block.height != templ_desc->block.height) { in r600_create_surface()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_texture.c | 2095 const struct util_format_description *tex_desc = util_format_description(tex->format); in si_create_surface() local 2098 assert(tex_desc->block.bits == templ_desc->block.bits); in si_create_surface() 2102 if (tex_desc->block.width != templ_desc->block.width || in si_create_surface() 2103 tex_desc->block.height != templ_desc->block.height) { in si_create_surface()
|
/third_party/ffmpeg/libavutil/ |
H A D | hwcontext_vulkan.c | 3013 CUDA_EXTERNAL_MEMORY_MIPMAPPED_ARRAY_DESC tex_desc = { in vulkan_export_to_cuda() local 3098 tex_desc.arrayDesc.Width = p_w; in vulkan_export_to_cuda() 3099 tex_desc.arrayDesc.Height = p_h; in vulkan_export_to_cuda() 3103 &tex_desc)); in vulkan_export_to_cuda()
|
Completed in 17 milliseconds