Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/frontends/rusticl/mesa/compiler/clc/
Dspirv.rs25 pub struct SPIRVBin { struct
30 // Safety: SPIRVBin is not mutable and is therefore Send and Sync, needed due to `clc_binary::data` argument
31 unsafe impl Send for SPIRVBin {} implementation
32 unsafe impl Sync for SPIRVBin {} implementation
90 impl SPIRVBin { impl
184 pub fn link(spirvs: &[&SPIRVBin], library: bool) -> (Option<Self>, String) { in link()
445 impl Clone for SPIRVBin { implementation
451 impl Drop for SPIRVBin { implementation
/external/mesa3d/src/gallium/frontends/rusticl/core/
Dprogram.rs315 ) -> CLResult<(SPIRVBin, cl_program_binary_type)> { in spirv_from_bin_for_dev()