예제 #1
0
 public void PixelStore(PixelStore pname, int param)
 {
     gl.glPixelStorei((int)pname, param);
     CheckException();
 }
예제 #2
0
파일: GL.cs 프로젝트: Wiladams/NewTOAPIA
 public static void PixelStore(PixelStore pname, int param)
 {
     gl.glPixelStorei((int)pname, param);
 }
예제 #3
0
파일: GL.cs 프로젝트: Wiladams/NewTOAPIA
 public static void PixelStore(PixelStore pname, float param)
 {
     gl.glPixelStoref((int)pname, param);
 }
예제 #4
0
 public PixelStoreBoolCommand(PixelStore storeparam, bool aValue)
     : base(storeparam)
 {
     fBoolValue = aValue;
 }
예제 #5
0
 public PixelStoreIntCommand(PixelStore storeparam, int aValue)
     :base(storeparam)
 {
     fIntValue = aValue;
 }
예제 #6
0
 public PixelStoreCommand(PixelStore storeparam)
 {
     fStoreParam = storeparam;
 }