enumstd.gpu.Origin[src]

Fields

upper_left = 7

Increase toward the right and downward

lower_left = 8

Increase toward the right and upward

Source Code

Source code
pub const Origin = enum(u32) {
    /// Increase toward the right and downward
    upper_left = 7,
    /// Increase toward the right and upward
    lower_left = 8,
}