示例#1
0
 public void defstate() {
   def2d.copy(cur2d);
 }
示例#2
0
 public <T extends GLState> T curstate(GLState.Slot<T> slot) {
   return (cur2d.get(slot));
 }
示例#3
0
 public <T extends GLState> void usestate(GLState.Slot<? super T> slot) {
   cur2d.put(slot, null);
 }
示例#4
0
 public GLState.Buffer basicstate() {
   return (def2d.copy());
 }