public static void DeleteTextures(this IOpenGl gl, ReadOnlySpan <uint> textures) { gl.DeleteTextures(textures.Length, textures[0]); }
public static void DeleteTexture(this IOpenGl gl, uint texture) { gl.DeleteTextures(1, texture); }