Home
last modified time | relevance | path

Searched refs:pipe_target (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_nir.c105 unsigned pipe_target = PIPE_BUFFER; in glsl_sampler_to_pipe() local
108 pipe_target = is_array ? PIPE_TEXTURE_1D_ARRAY : PIPE_TEXTURE_1D; in glsl_sampler_to_pipe()
111 pipe_target = is_array ? PIPE_TEXTURE_2D_ARRAY : PIPE_TEXTURE_2D; in glsl_sampler_to_pipe()
115 pipe_target = PIPE_TEXTURE_2D_ARRAY; in glsl_sampler_to_pipe()
118 pipe_target = PIPE_TEXTURE_3D; in glsl_sampler_to_pipe()
121 pipe_target = is_array ? PIPE_TEXTURE_2D_ARRAY : PIPE_TEXTURE_2D; in glsl_sampler_to_pipe()
124 pipe_target = is_array ? PIPE_TEXTURE_CUBE_ARRAY : PIPE_TEXTURE_CUBE; in glsl_sampler_to_pipe()
127 pipe_target = PIPE_TEXTURE_RECT; in glsl_sampler_to_pipe()
130 pipe_target = PIPE_BUFFER; in glsl_sampler_to_pipe()
135 return pipe_target; in glsl_sampler_to_pipe()
Dlp_bld_tgsi_soa.c2607 unsigned target, pipe_target; in emit_size_query() local
2644 pipe_target = tgsi_to_pipe_tex_target(target); in emit_size_query()
2648 params.target = pipe_target; in emit_size_query()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_texture.c158 enum pipe_format dst_format, enum pipe_texture_target pipe_target, in create_dst_texture() argument
168 dst_templ.target = pipe_target; in create_dst_texture()
1803 enum pipe_texture_target pipe_target; in try_pbo_download() local
1818 pipe_target = gl_target_to_pipe(gl_target); in try_pbo_download()
1878 templ.target = pipe_target; in try_pbo_download()
1935 void *fs = st_pbo_get_download_fs(st, pipe_target, src_format, dst_format, addr.depth != 1); in try_pbo_download()
2500 enum pipe_texture_target pipe_target; in st_GetTexSubImage() local
2515 pipe_target = gl_target_to_pipe(gl_target); in st_GetTexSubImage()
2550 dst_format = get_dst_format(ctx, pipe_target, src_format, util_format_is_compressed(src->format), in st_GetTexSubImage()
2570 dst = create_dst_texture(ctx, dst_format, pipe_target, width, height, depth, gl_target, bind); in st_GetTexSubImage()
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_image.c99 has_compat_target(unsigned pipe_target, unsigned tgsi_target) in has_compat_target() argument
101 switch (pipe_target) { in has_compat_target()