How to draw text using only OpenGL methods?
Theory Why it is hard Popular font formats like TrueType and OpenType are vector outline formats: they use Bezier curves to define the boundary of the letter. Image source. Transforming those formats into arrays of pixels (rasterization) is too specific and out of OpenGL’s scope, specially because OpenGl does not have non-straight primitives (e.g. see … Read more