Home
last modified time | relevance | path

Searched defs:SPIRVBin (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/mesa/compiler/clc/
H A Dspirv.rs23 pub struct SPIRVBin { struct
28 // Safety: SPIRVBin is not mutable and is therefore Send and Sync, needed due to `clc_binary::data` argument
29 unsafe impl Send for SPIRVBin {} implementation
30 unsafe impl Sync for SPIRVBin {} implementation
88 impl SPIRVBin { impl
182 pub fn link(spirvs: &[&SPIRVBin], library: bool) -> (Option<Self>, String) { in link()
432 impl Clone for SPIRVBin { implementation
438 impl Drop for SPIRVBin { implementation
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/core/
H A Dprogram.rs315 ) -> CLResult<(SPIRVBin, cl_program_binary_type)> { in spirv_from_bin_for_dev()