converters

Converters

converter toGlintVector[Cols: static[int]](source: Vector[Cols, SomeInteger]): Vector[
    Cols, GLint] {...}{.inline.}
Converts a matrix of ints to a matrix of GLints
converter toGlfloatVector[Cols: static[int]](source: Vector[Cols, SomeNumber]): Vector[
    Cols, GLfloat] {...}{.inline.}
Converts a matrix of ints to a matrix of GLfloats
converter toGlintMatrix[Rows, Cols: static[int]](
    source: Matrix[Rows, Cols, SomeInteger]): Matrix[Rows, Cols, GLint] {...}{.inline.}
Converts a matrix of ints to a matrix of GLints
converter toGlfloatMatrix[Rows, Cols: static[int]](
    source: Matrix[Rows, Cols, SomeNumber]): Matrix[Rows, Cols, GLfloat] {...}{.inline.}
Converts a matrix of ints to a matrix of GLfloats