Enum gstreamer_gl::GLFormat
source · [−]#[non_exhaustive]
pub enum GLFormat {
Show 19 variants
Luminance,
Alpha,
LuminanceAlpha,
Red,
R8,
Rg,
Rg8,
Rgb,
Rgb8,
Rgb565,
Rgb16,
Rgba,
Rgba8,
Rgba16,
DepthComponent16,
Depth24Stencil8,
Rgb10A2,
R16,
Rg16,
// some variants omitted
}
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Luminance
Single component replicated across R, G, and B textures components
Alpha
Single component stored in the A texture component
LuminanceAlpha
Red
Single component stored in the R texture component
R8
Single 8-bit component stored in the R texture component
Rg
Two components stored in the R and G texture components
Rg8
Two 8-bit components stored in the R and G texture components
Rgb
Three components stored in the R, G, and B texture components
Rgb8
Three 8-bit components stored in the R, G, and B texture components
Rgb565
Three components of bit depth 5, 6 and 5 stored in the R, G, and B texture components respectively.
Rgb16
Three 16-bit components stored in the R, G, and B texture components
Rgba
Four components stored in the R, G, B, and A texture components respectively.
Rgba8
Four 8-bit components stored in the R, G, B, and A texture components respectively.
Rgba16
Four 16-bit components stored in the R, G, B, and A texture components respectively.
DepthComponent16
A single 16-bit component for depth information.
Depth24Stencil8
A 24-bit component for depth information and a 8-bit component for stencil informat.
Rgb10A2
R16
Single 16-bit component stored in the R texture component
Rg16
Two 16-bit components stored in the R and G texture components
Implementations
Trait Implementations
type Checker = GenericValueTypeChecker<Self>
type Checker = GenericValueTypeChecker<Self>
Value type checker.
Get the contained value from a Value
. Read more
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Returns the type identifier of Self
.
Auto Trait Implementations
impl RefUnwindSafe for GLFormat
impl UnwindSafe for GLFormat
Blanket Implementations
Mutably borrows from an owned value. Read more
Ensures that the type has been registered with the type system.
Returns a SendValue
clone of self
.