https://github.com/vassvik/odin-gl_font
https://github.com/vassvik/odin-gl_font
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vassvik/odin-gl_font
- Owner: vassvik
- License: mit
- Created: 2017-07-28T01:16:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-10T18:41:45.000Z (about 4 years ago)
- Last Synced: 2025-01-31T16:58:09.508Z (3 months ago)
- Language: Odin
- Size: 871 KB
- Stars: 13
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-odin - GL Font - gl_font/blob/master/LICENSE) | OpenGL, Graphics, Font (Libraries / Gamedev)
- awesome-odin - GL Font - gl_font/blob/master/LICENSE) | OpenGL, Graphics, Font (Libraries / Gamedev)
README
# odin-font
Work-in-progress font rendering library in Odin. The one and only dependency is OpenGL 4.3.
The file `font.odin` is the old file, and is deprecated. Consider using `font_opengl.odin` (see test_font_opengl.odin for an example), or use `font_base.odin` directly and setup your own renderer.
The `font_base.odin` file is relies on `stb_truetype` from [https://github.com/vassvik/odin-stb](https://github.com/vassvik/odin-stb/), while `font_opengl.odin` relies on [https://github.com/vassvik/odin-gl/](https://github.com/vassvik/odin-gl/), and `test_font_opengl.odin` also relies on [https://github.com/vassvik/odin-glfw/](https://github.com/vassvik/odin-glfw/).
#### NOTE: It is recommended to put this into the shared collection:
```
cd Odin/shared
git clone https://github.com/vassvik/odin-gl_font.git
```