From discussion at https://github.com/opentk/opentk/issues/535 I noticed [this](https://github.com/mono/opentk/blob/master/Source/OpenTK/Graphics/ES20.Android/Helper.cs#L368): ```CSharp public static void DrawElements(BeginMode mode, int count, DrawElementsType type, int offset) { DrawElements(mode, count, type, offset); } ``` which would seem to cause a stack overflow The other two classes with this DrawElements overload ([here](https://github.com/mono/opentk/blob/master/Source/OpenTK/Graphics/OpenGL/GLHelper.cs#L1135) and [here](https://github.com/mono/opentk/blob/master/Source/OpenTK/Graphics/ES20/Helper.cs#L356)) both used new IntPtr(offset) instead.
From discussion at opentk/opentk#535 I noticed this:
which would seem to cause a stack overflow
The other two classes with this DrawElements overload (here and here) both used new IntPtr(offset) instead.