Ejemplo n.º 1
0
 public static void Fog(FogParameter pname, Int32 param)
 {
     Debug.Assert(Delegates.pglFogi != null, "pglFogi not implemented");
     Delegates.pglFogi((Int32)pname, param);
     LogFunction("glFogi({0}, {1})", pname, param);
     DebugCheckErrors(null);
 }
Ejemplo n.º 2
0
 public static void Fog(FogParameter pname, Int32[] @params)
 {
     unsafe
     {
         fixed(Int32 *p_params = @params)
         {
             Debug.Assert(Delegates.pglFogiv != null, "pglFogiv not implemented");
             Delegates.pglFogiv((Int32)pname, p_params);
             LogFunction("glFogiv({0}, {1})", pname, LogValue(@params));
         }
     }
     DebugCheckErrors(null);
 }
Ejemplo n.º 3
0
 public void Fogfv(FogParameter pname, float[] parameters)
 {
     gl.glFogfv((int)pname, parameters);
     CheckException();
 }
Ejemplo n.º 4
0
 public void Fogf(FogParameter pname, float param)
 {
     gl.glFogf((int)pname, (int)param);
     CheckException();
 }
Ejemplo n.º 5
0
 public static void Fogiv(FogParameter pname, int[] parms)
 {
     gl.glFogiv((int)pname, parms);
 }
Ejemplo n.º 6
0
 public static void Fogi(FogParameter pname, int param)
 {
     gl.glFogi((int)pname, param);
 }
Ejemplo n.º 7
0
		public static void Fog(FogParameter pname, float[] @params)
		{
			unsafe {
				fixed (float* p_params = @params)
				{
					Debug.Assert(Delegates.pglFogfv != null, "pglFogfv not implemented");
					Delegates.pglFogfv((Int32)pname, p_params);
					LogFunction("glFogfv({0}, {1})", pname, LogValue(@params));
				}
			}
			DebugCheckErrors(null);
		}
Ejemplo n.º 8
0
		public static void Fog(FogParameter pname, Int32 param)
		{
			Debug.Assert(Delegates.pglFogi != null, "pglFogi not implemented");
			Delegates.pglFogi((Int32)pname, param);
			CallLog("glFogi({0}, {1})", pname, param);
			DebugCheckErrors();
		}
Ejemplo n.º 9
0
		internal static extern void glFogi(FogParameter pname, Int32 param);
 public static extern void Fogi( FogParameter pname, int param );
 public static extern void Fogfv( FogParameter pname, float[] @params );
 public static extern void Fogf( FogParameter pname, float param );
Ejemplo n.º 13
0
 internal abstract void glFog(FogParameter pname, int *param);
Ejemplo n.º 14
0
 internal abstract void glFog(FogParameter pname, float param);
Ejemplo n.º 15
0
		internal static extern void glFogf(FogParameter pname, Single param);
 public static extern void Fogiv( FogParameter pname, int[] @params );
Ejemplo n.º 17
0
		internal static extern void glFogfv(FogParameter pname, Single* @params);
Ejemplo n.º 18
0
 public static void Fogf(FogParameter pname, float param)
 {
     gl.glFogf((int)pname, (int)param);
 }
Ejemplo n.º 19
0
		internal static extern void glFogiv(FogParameter pname, Int32* @params);
Ejemplo n.º 20
0
 public static void Fogfv(FogParameter pname, float[] parameters)
 {
     gl.glFogfv((int)pname, parameters);
 }
Ejemplo n.º 21
0
		public static void Fog(FogParameter pname, Int32[] @params)
		{
			unsafe {
				fixed (Int32* p_params = @params)
				{
					Debug.Assert(Delegates.pglFogiv != null, "pglFogiv not implemented");
					Delegates.pglFogiv((Int32)pname, p_params);
					CallLog("glFogiv({0}, {1})", pname, @params);
				}
			}
			DebugCheckErrors();
		}
Ejemplo n.º 22
0
		public static void Fog(FogParameter pname, float param)
		{
			Debug.Assert(Delegates.pglFogf != null, "pglFogf not implemented");
			Delegates.pglFogf((Int32)pname, param);
			LogFunction("glFogf({0}, {1})", pname, param);
			DebugCheckErrors(null);
		}