Home
last modified time | relevance | path

Searched defs:nir_tex_instr (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/mesa3d/src/compiler/nir/
H A Dnir.h2424 typedef struct nir_tex_instr { struct
2426 nir_instr instr;
2457 * This array has :c:member:`nir_tex_instr.num_srcs` elements argument
2459 nir_tex_src *src;
2462 unsigned num_srcs;
2465 unsigned coord_components;
2468 bool is_array;
2475 bool is_shadow;
2481 bool is_new_style_shadow;
2487 bool is_sparse;
[all …]
/aosp_15_r20/external/mesa3d/src/compiler/rust/
H A Dnir.rs237 impl nir_tex_instr { impl
413 pub fn as_tex<'a>(&'a self) -> Option<&'a nir_tex_instr> { in as_tex()
416 Some(unsafe { &*(p as *const nir_tex_instr) }) in as_tex() constant
/aosp_15_r20/external/mesa3d/src/nouveau/compiler/nak/
H A Dfrom_nir.rs1680 fn parse_tex(&mut self, b: &mut impl SSABuilder, tex: &nir_tex_instr) { in parse_tex()