Example #1
0
 public void TexGen(TextureCoordName coord, TextureGenParameter pname, TextureGenMode param)
 {
     gl.glTexGeni((int)coord, (uint)pname, (int)param);
     CheckException();
 }
Example #2
0
 public static void TexGen(TextureCoordName coord, TextureGenParameter pname, TextureGenMode param)
 {
     gl.glTexGeni((int)coord, (uint)pname, (int)param);
 }