Home | History | Annotate | Download | only in attributes

Lines Matching defs:depthMask

42 	public boolean depthMask;

48 public DepthTestAttribute (boolean depthMask) {
49 this(GL20.GL_LEQUAL, depthMask);
56 public DepthTestAttribute (int depthFunc, boolean depthMask) {
57 this(depthFunc, 0, 1, depthMask);
64 public DepthTestAttribute (int depthFunc, float depthRangeNear, float depthRangeFar, boolean depthMask) {
65 this(Type, depthFunc, depthRangeNear, depthRangeFar, depthMask);
68 public DepthTestAttribute (final long type, int depthFunc, float depthRangeNear, float depthRangeFar, boolean depthMask) {
74 this.depthMask = depthMask;
78 this(rhs.type, rhs.depthFunc, rhs.depthRangeNear, rhs.depthRangeFar, rhs.depthMask);
92 result = 971 * result + (depthMask ? 1 : 0);
101 if (depthMask != other.depthMask) return depthMask ? -1 : 1;