public static void DeleteVertexArray(this IOpenGl gl, uint array) { gl.DeleteVertexArrays(1, array); }
public static void DeleteVertexArrays(this IOpenGl gl, ReadOnlySpan <uint> arrays) { gl.DeleteVertexArrays(arrays.Length, arrays[0]); }