Struct webrender::Shaders

source ·
pub struct Shaders {
Show 32 fields pub cs_blur_a8: LazilyCompiledShader, pub cs_blur_rgba8: LazilyCompiledShader, pub cs_border_segment: LazilyCompiledShader, pub cs_border_solid: LazilyCompiledShader, pub cs_scale: Vec<Option<LazilyCompiledShader>>, pub cs_line_decoration: LazilyCompiledShader, pub cs_fast_linear_gradient: LazilyCompiledShader, pub cs_linear_gradient: LazilyCompiledShader, pub cs_radial_gradient: LazilyCompiledShader, pub cs_conic_gradient: LazilyCompiledShader, pub cs_svg_filter: LazilyCompiledShader, brush_solid: BrushShader, brush_image: Vec<Option<BrushShader>>, brush_fast_image: Vec<Option<BrushShader>>, brush_blend: BrushShader, brush_mix_blend: BrushShader, brush_yuv_image: Vec<Option<BrushShader>>, brush_linear_gradient: BrushShader, brush_opacity: BrushShader, brush_opacity_aa: BrushShader, pub cs_clip_rectangle_slow: LazilyCompiledShader, pub cs_clip_rectangle_fast: LazilyCompiledShader, pub cs_clip_box_shadow: LazilyCompiledShader, pub ps_text_run: TextShader, pub ps_text_run_dual_source: Option<TextShader>, ps_split_composite: LazilyCompiledShader, pub ps_quad_textured: LazilyCompiledShader, pub ps_mask: LazilyCompiledShader, pub ps_mask_fast: LazilyCompiledShader, pub ps_clear: LazilyCompiledShader, pub ps_copy: LazilyCompiledShader, pub composite: CompositorShaders,
}

Fields§

§cs_blur_a8: LazilyCompiledShader§cs_blur_rgba8: LazilyCompiledShader§cs_border_segment: LazilyCompiledShader§cs_border_solid: LazilyCompiledShader§cs_scale: Vec<Option<LazilyCompiledShader>>§cs_line_decoration: LazilyCompiledShader§cs_fast_linear_gradient: LazilyCompiledShader§cs_linear_gradient: LazilyCompiledShader§cs_radial_gradient: LazilyCompiledShader§cs_conic_gradient: LazilyCompiledShader§cs_svg_filter: LazilyCompiledShader§brush_solid: BrushShader§brush_image: Vec<Option<BrushShader>>§brush_fast_image: Vec<Option<BrushShader>>§brush_blend: BrushShader§brush_mix_blend: BrushShader§brush_yuv_image: Vec<Option<BrushShader>>§brush_linear_gradient: BrushShader§brush_opacity: BrushShader§brush_opacity_aa: BrushShader§cs_clip_rectangle_slow: LazilyCompiledShader

These are “cache clip shaders”. These shaders are used to draw clip instances into the cached clip mask. The results of these shaders are also used by the primitive shaders.

§cs_clip_rectangle_fast: LazilyCompiledShader§cs_clip_box_shadow: LazilyCompiledShader§ps_text_run: TextShader§ps_text_run_dual_source: Option<TextShader>§ps_split_composite: LazilyCompiledShader§ps_quad_textured: LazilyCompiledShader§ps_mask: LazilyCompiledShader§ps_mask_fast: LazilyCompiledShader§ps_clear: LazilyCompiledShader§ps_copy: LazilyCompiledShader§composite: CompositorShaders

Implementations§

source§

impl Shaders

source

pub fn new( device: &mut Device, gl_type: GlType, options: &WebRenderOptions ) -> Result<Self, ShaderError>

source

fn get_compositing_shader_index(buffer_kind: ImageBufferKind) -> usize

source

pub fn get_composite_shader( &mut self, format: CompositeSurfaceFormat, buffer_kind: ImageBufferKind, features: CompositeFeatures ) -> &mut LazilyCompiledShader

source

pub fn get_scale_shader( &mut self, buffer_kind: ImageBufferKind ) -> &mut LazilyCompiledShader

source

pub fn get( &mut self, key: &BatchKey, features: BatchFeatures, debug_flags: DebugFlags, device: &Device ) -> &mut LazilyCompiledShader

source

pub fn deinit(self, device: &mut Device)

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.