#[repr(u32)]pub enum GLOp {
Show 81 variants
Round = 1,
RoundEven = 2,
Trunc = 3,
FAbs = 4,
SAbs = 5,
FSign = 6,
SSign = 7,
Floor = 8,
Ceil = 9,
Fract = 10,
Radians = 11,
Degrees = 12,
Sin = 13,
Cos = 14,
Tan = 15,
Asin = 16,
Acos = 17,
Atan = 18,
Sinh = 19,
Cosh = 20,
Tanh = 21,
Asinh = 22,
Acosh = 23,
Atanh = 24,
Atan2 = 25,
Pow = 26,
Exp = 27,
Log = 28,
Exp2 = 29,
Log2 = 30,
Sqrt = 31,
InverseSqrt = 32,
Determinant = 33,
MatrixInverse = 34,
Modf = 35,
ModfStruct = 36,
FMin = 37,
UMin = 38,
SMin = 39,
FMax = 40,
UMax = 41,
SMax = 42,
FClamp = 43,
UClamp = 44,
SClamp = 45,
FMix = 46,
IMix = 47,
Step = 48,
SmoothStep = 49,
Fma = 50,
Frexp = 51,
FrexpStruct = 52,
Ldexp = 53,
PackSnorm4x8 = 54,
PackUnorm4x8 = 55,
PackSnorm2x16 = 56,
PackUnorm2x16 = 57,
PackHalf2x16 = 58,
PackDouble2x32 = 59,
UnpackSnorm2x16 = 60,
UnpackUnorm2x16 = 61,
UnpackHalf2x16 = 62,
UnpackSnorm4x8 = 63,
UnpackUnorm4x8 = 64,
UnpackDouble2x32 = 65,
Length = 66,
Distance = 67,
Cross = 68,
Normalize = 69,
FaceForward = 70,
Reflect = 71,
Refract = 72,
FindILsb = 73,
FindSMsb = 74,
FindUMsb = 75,
InterpolateAtCentroid = 76,
InterpolateAtSample = 77,
InterpolateAtOffset = 78,
NMin = 79,
NMax = 80,
NClamp = 81,
}Expand description
GLSL.std.450 extended instruction opcode
Variants§
Round = 1
RoundEven = 2
Trunc = 3
FAbs = 4
SAbs = 5
FSign = 6
SSign = 7
Floor = 8
Ceil = 9
Fract = 10
Radians = 11
Degrees = 12
Sin = 13
Cos = 14
Tan = 15
Asin = 16
Acos = 17
Atan = 18
Sinh = 19
Cosh = 20
Tanh = 21
Asinh = 22
Acosh = 23
Atanh = 24
Atan2 = 25
Pow = 26
Exp = 27
Log = 28
Exp2 = 29
Log2 = 30
Sqrt = 31
InverseSqrt = 32
Determinant = 33
MatrixInverse = 34
Modf = 35
ModfStruct = 36
FMin = 37
UMin = 38
SMin = 39
FMax = 40
UMax = 41
SMax = 42
FClamp = 43
UClamp = 44
SClamp = 45
FMix = 46
IMix = 47
Step = 48
SmoothStep = 49
Fma = 50
Frexp = 51
FrexpStruct = 52
Ldexp = 53
PackSnorm4x8 = 54
PackUnorm4x8 = 55
PackSnorm2x16 = 56
PackUnorm2x16 = 57
PackHalf2x16 = 58
PackDouble2x32 = 59
UnpackSnorm2x16 = 60
UnpackUnorm2x16 = 61
UnpackHalf2x16 = 62
UnpackSnorm4x8 = 63
UnpackUnorm4x8 = 64
UnpackDouble2x32 = 65
Length = 66
Distance = 67
Cross = 68
Normalize = 69
FaceForward = 70
Reflect = 71
Refract = 72
FindILsb = 73
FindSMsb = 74
FindUMsb = 75
InterpolateAtCentroid = 76
InterpolateAtSample = 77
InterpolateAtOffset = 78
NMin = 79
NMax = 80
NClamp = 81
Trait Implementations§
Source§impl FromPrimitive for GLOp
impl FromPrimitive for GLOp
Source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Converts an
i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Converts an
u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Converts an
isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Converts an
i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Converts an
i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Converts an
i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
Converts an
i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Converts a
usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Converts an
u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
Converts an
u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
Converts an
u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
Converts an
u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§impl Ord for GLOp
impl Ord for GLOp
Source§impl PartialOrd for GLOp
impl PartialOrd for GLOp
impl Copy for GLOp
impl Eq for GLOp
impl StructuralPartialEq for GLOp
Auto Trait Implementations§
impl Freeze for GLOp
impl RefUnwindSafe for GLOp
impl Send for GLOp
impl Sync for GLOp
impl Unpin for GLOp
impl UnwindSafe for GLOp
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