Example #1
0
func (s *StencilOp) DepthLT() *StencilOp {
	gl.DepthFunc(gl.LESS)
	return s
}
Example #2
0
func (s *StencilOp) DepthAlways() *StencilOp {
	gl.DepthFunc(gl.ALWAYS)
	return s
}
Example #3
0
func (s *StencilOp) DepthLE() *StencilOp {
	gl.DepthFunc(gl.LEQUAL)
	return s
}