Hi how is possible setting linewith using vertexbuffer (VBO)?
Isit possible to set pattern?
GL.DrawRangeElements(BeginMode.Lines, 0, indicesCount - 1, indicesCount, DrawElementsType.UnsignedShort, IntPtr.Zero);
using GL.Color4(linecolor); GL.LineWidth(width); before GL.DrawRangeElements or GL.DrawArray
Comments
Re: Line Width using vertexbuffer
Isit possible to set pattern?
Re: Line Width using vertexbuffer
GL.DrawRangeElements(BeginMode.Lines, 0, indicesCount - 1, indicesCount,
DrawElementsType.UnsignedShort, IntPtr.Zero);
Re: Line Width using vertexbuffer
using
GL.Color4(linecolor);
GL.LineWidth(width);
before GL.DrawRangeElements or GL.DrawArray