public static void FogCoordPointerListIBM(FogPointerTypeIBM type, Int32 stride, IntPtr[] pointer, Int32 ptrstride)
 {
     unsafe
     {
         fixed(IntPtr *p_pointer = pointer)
         {
             Debug.Assert(Delegates.pglFogCoordPointerListIBM != null, "pglFogCoordPointerListIBM not implemented");
             Delegates.pglFogCoordPointerListIBM((Int32)type, stride, p_pointer, ptrstride);
             LogFunction("glFogCoordPointerListIBM({0}, {1}, {2}, {3})", type, stride, LogValue(pointer), ptrstride);
         }
     }
     DebugCheckErrors(null);
 }
Example #2
0
 public abstract unsafe void FogCoordPointerList <T0>([Flow(FlowDirection.In)] FogPointerTypeIBM type, [Flow(FlowDirection.In)] int stride, [Count(Computed = "type, stride"), Flow(FlowDirection.In)] ref T0 *pointer, [Flow(FlowDirection.In)] int ptrstride) where T0 : unmanaged;
		public static void FogCoordPointerListIBM(FogPointerTypeIBM type, Int32 stride, IntPtr[] pointer, Int32 ptrstride)
		{
			unsafe {
				fixed (IntPtr* p_pointer = pointer)
				{
					Debug.Assert(Delegates.pglFogCoordPointerListIBM != null, "pglFogCoordPointerListIBM not implemented");
					Delegates.pglFogCoordPointerListIBM((Int32)type, stride, p_pointer, ptrstride);
					CallLog("glFogCoordPointerListIBM({0}, {1}, {2}, {3})", type, stride, pointer, ptrstride);
				}
			}
			DebugCheckErrors();
		}
Example #4
0
 public abstract unsafe void FogCoordPointerList([Flow(FlowDirection.In)] FogPointerTypeIBM type, [Flow(FlowDirection.In)] int stride, [Count(Computed = "type, stride"), Flow(FlowDirection.In)] void **pointer, [Flow(FlowDirection.In)] int ptrstride);