Searched refs:GfxstreamFlags (Results 1 – 4 of 4) sorted by relevance
361 pub struct GfxstreamFlags(u32); struct363 impl GfxstreamFlags { implementation365 pub fn new() -> GfxstreamFlags { in new()366 GfxstreamFlags(0) in new()369 fn set_flag(self, bitmask: u32, set: bool) -> GfxstreamFlags { in set_flag() argument371 GfxstreamFlags(self.0 | bitmask) in set_flag()373 GfxstreamFlags(self.0 & (!bitmask)) in set_flag()378 pub fn use_egl(self, v: bool) -> GfxstreamFlags { in use_egl() argument383 pub fn use_glx(self, v: bool) -> GfxstreamFlags { in use_glx() argument388 pub fn use_surfaceless(self, v: bool) -> GfxstreamFlags { in use_surfaceless() argument[all …]
651 gfxstream_flags: Option<GfxstreamFlags>,690 pub fn set_gfxstream_flags(mut self, gfxstream_flags: GfxstreamFlags) -> RutabagaBuilder { in set_gfxstream_flags()
202 gfxstream_flags: GfxstreamFlags, in init() argument
914 let gfxstream_flags = GfxstreamFlags::new() in new()