glide3/src/cmp.rs

24 lines
803 B
Rust

// Never passes.
pub fn gr_cmp_never() {}
// Passes if the incoming alpha value is less than the constant alpha reference value.
pub fn gr_cmp_less() {}
// Passes if the incoming alpha value is equal to the constant alpha reference value.
pub fn gr_cmp_equal() {}
// Passes if the incoming alpha value is less than or equal to the constant alpha reference value.
pub fn gr_cmp_lequal() {}
// Passes if the incoming alpha value is greater than the constant alpha reference value.
pub fn gr_cmp_greater() {}
// Passes if the incoming alpha value is not equal to the constant alpha reference value.
pub fn gr_cmp_notequal() {}
// Passes if the incoming alpha value is greater than or equal to the constant alpha reference value.
pub fn gr_cmp_gequal() {}
// Always passes.
pub fn gr_cmp_always() {}