How to draw text using only OpenGL methods?

后端 未结 6 1382
暗喜
暗喜 2020-11-28 02:05

I don\'t have the option to use but OpenGL methods (that is glxxx() methods). I need to draw text using gl methods only. After reading the red book, I understan

6条回答
  •  旧时难觅i
    2020-11-28 02:40

    This article describes how to render text in OpenGL using various techniques.

    With only using opengl, there are several ways:

    • using glBitmap
    • using textures
    • using display lists

提交回复
热议问题