Enum rin::gl::Property[][src]

pub enum Property {
Show variants Blend(bool), ClipDistance(Vec<u32, Global>), ClipControl(u32u32), ColorLogicOp(Option<u32>), CullFace(Option<u32>), FrontFace(u32), _DebugOutput(Option<DebugAsyncFn>), _DebugOutputSynchronous(Option<DebugSyncFn>), DepthClamp(bool), DepthTest(bool), Dither(bool), LineSmooth(bool), Multisample(bool), PolygonOffsetFill(Option<(f32, f32)>), PolygonOffsetLine(Option<(f32, f32)>), PolygonOffsetPoint(Option<(f32, f32)>), PolygonSmooth(bool), RasterizerDiscard(bool), SampleAlphaToCoverage(bool), SampleAlphaToOne(bool), SampleCoverage(Option<(f32, bool)>), StencilMask(u32), Scissor(Option<Rect>), StencilTest(bool), StencilFunc(u32i32u32), StencilOp(u32u32u32), ProgramPointSize(bool), ClearColor([f32; 4]), ClearDepth(f32), ClearStencil(i32), ColorMask([bool; 4]), TextureCubemapSeamless(bool), BlendEquation(u32), BlendFunc(u32u32), BlendFuncSeparate(u32u32u32u32), BlendColor([f32; 4]), DepthFunc(u32), DepthMask(bool), DepthRange(f32f32), LineWidth(f32), PointSize(f32), PolygonMode(u32), Viewport(Rect), _BufferBaseBinding { target: u32, index: u32, binding: BufferRangeBind, },
}

Variants

Blend(bool)
ClipDistance(Vec<u32, Global>)
ClipControl(u32u32)
ColorLogicOp(Option<u32>)
CullFace(Option<u32>)
FrontFace(u32)
_DebugOutput(Option<DebugAsyncFn>)
_DebugOutputSynchronous(Option<DebugSyncFn>)
DepthClamp(bool)
DepthTest(bool)
Dither(bool)
LineSmooth(bool)
Multisample(bool)
PolygonOffsetFill(Option<(f32, f32)>)
PolygonOffsetLine(Option<(f32, f32)>)
PolygonOffsetPoint(Option<(f32, f32)>)
PolygonSmooth(bool)
RasterizerDiscard(bool)
SampleAlphaToCoverage(bool)
SampleAlphaToOne(bool)
SampleCoverage(Option<(f32, bool)>)
StencilMask(u32)
Scissor(Option<Rect>)
StencilTest(bool)
StencilFunc(u32i32u32)
StencilOp(u32u32u32)
ProgramPointSize(bool)
ClearColor([f32; 4])
ClearDepth(f32)
ClearStencil(i32)
ColorMask([bool; 4])
TextureCubemapSeamless(bool)
BlendEquation(u32)
BlendFunc(u32u32)
BlendFuncSeparate(u32u32u32u32)
BlendColor([f32; 4])
DepthFunc(u32)
DepthMask(bool)
DepthRange(f32f32)
LineWidth(f32)
PointSize(f32)
PolygonMode(u32)
Viewport(Rect)
_BufferBaseBinding
Show fields

Fields of _BufferBaseBinding

target: u32index: u32binding: BufferRangeBind

Implementations

impl Property[src]

pub fn DebugOutputSynchronous<F>(f: F) -> Property where
    F: 'static + Fn(DebugInfo), 
[src]

pub fn DebugOutputAsynchronous<F>(f: F) -> Property where
    F: 'static + Fn(DebugInfo) + Send + Sync
[src]

pub fn DebugOutputStdoutSynchronous(minseverity: DebugSeverity) -> Property[src]

pub fn DebugOutputStdoutAsynchronous(minseverity: DebugSeverity) -> Property[src]

pub fn DebugOutputStderrSynchronous(minseverity: DebugSeverity) -> Property[src]

pub fn DebugOutputStderrAsynchronous(minseverity: DebugSeverity) -> Property[src]

pub fn DebugOutputDisabled() -> Property[src]

pub fn BufferBaseBinding<T, B>(target: u32, index: u32, buffer: B) -> Property where
    B: BufferRange<T>, 
[src]

Trait Implementations

impl Clone for Property[src]

impl Debug for Property[src]

impl Ord for Property[src]

impl PartialEq<Property> for Property[src]

impl PartialOrd<Property> for Property[src]

impl Eq for Property[src]

impl StructuralPartialEq for Property[src]

Auto Trait Implementations

impl !RefUnwindSafe for Property

impl !Send for Property

impl !Sync for Property

impl Unpin for Property

impl !UnwindSafe for Property

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<V> IntoPnt<V> for V[src]

impl<V> IntoVec<V> for V[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]