pub struct FxaaEffect {}Expand description
A simple anti-aliasing approach which smooths otherwise jagged edges (for example lines) but also smooths the rest of the image.
Trait Implementations§
Source§impl Clone for FxaaEffect
impl Clone for FxaaEffect
Source§fn clone(&self) -> FxaaEffect
fn clone(&self) -> FxaaEffect
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FxaaEffect
impl Debug for FxaaEffect
Source§impl Default for FxaaEffect
impl Default for FxaaEffect
Source§fn default() -> FxaaEffect
fn default() -> FxaaEffect
Returns the “default value” for a type. Read more
Source§impl Effect for FxaaEffect
impl Effect for FxaaEffect
Source§fn fragment_shader_source(
&self,
_lights: &[&dyn Light],
color_texture: Option<ColorTexture<'_>>,
_depth_texture: Option<DepthTexture<'_>>,
) -> String
fn fragment_shader_source( &self, _lights: &[&dyn Light], color_texture: Option<ColorTexture<'_>>, _depth_texture: Option<DepthTexture<'_>>, ) -> String
Returns the fragment shader source for this effect.
Source§fn id(
&self,
color_texture: Option<ColorTexture<'_>>,
_depth_texture: Option<DepthTexture<'_>>,
) -> EffectMaterialId
fn id( &self, color_texture: Option<ColorTexture<'_>>, _depth_texture: Option<DepthTexture<'_>>, ) -> EffectMaterialId
Returns a unique ID for each variation of the shader source returned from Effect::fragment_shader_source. Read more
Source§fn use_uniforms(
&self,
program: &Program,
_viewer: &dyn Viewer,
_lights: &[&dyn Light],
color_texture: Option<ColorTexture<'_>>,
_depth_texture: Option<DepthTexture<'_>>,
)
fn use_uniforms( &self, program: &Program, _viewer: &dyn Viewer, _lights: &[&dyn Light], color_texture: Option<ColorTexture<'_>>, _depth_texture: Option<DepthTexture<'_>>, )
Sends the uniform data needed for this effect to the fragment shader.
Source§fn render_states(&self) -> RenderStates
fn render_states(&self) -> RenderStates
Returns the render states needed to render with this effect.
Auto Trait Implementations§
impl Freeze for FxaaEffect
impl RefUnwindSafe for FxaaEffect
impl Send for FxaaEffect
impl Sync for FxaaEffect
impl Unpin for FxaaEffect
impl UnwindSafe for FxaaEffect
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more