92 lines
1.7 KiB
Zig
92 lines
1.7 KiB
Zig
//! A jam file of translated GLSL std450 header's enums and utils
|
|
|
|
pub const GLSLstd450Version: u32 = 100;
|
|
pub const GLSLstd450Revision: u32 = 3;
|
|
|
|
pub const GLSLOp = enum(u32) {
|
|
Bad = 0,
|
|
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,
|
|
};
|
|
|
|
pub const GLSLOpMaxValue: usize = 82;
|