AlienEngine.Core.Graphics.OpenGL.GL.DeleteTextures C# (CSharp) Méthode

DeleteTextures() private méthode

private DeleteTextures ( int count ) : void
count int
Résultat void
        public static extern void DeleteTextures(int count, params uint[] textures);

Usage Example

 public static void DeleteTexture(uint texture)
 {
     GL.DeleteTextures(1, new uint[] { texture });
 }