All Projects → rougier → Freetype Gl

rougier / Freetype Gl

Licence: other
OpenGL text using one vertex buffer, one texture and FreeType

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Freetype Gl

Quickfont
A Modern OpenGL Font Rendering Library for OpenTK
Stars: ✭ 63 (-94.9%)
Mutual labels:  opengl, font
Leven
Complete source for my experimental voxel engine
Stars: ✭ 79 (-93.61%)
Mutual labels:  opengl
Firamonaco
Monaco Font with Firacode ligatures and patched for Powerline 📝
Stars: ✭ 71 (-94.26%)
Mutual labels:  font
Soldat
Soldat is a unique 2D (side-view) multiplayer action game
Stars: ✭ 1,199 (-2.99%)
Mutual labels:  opengl
Qt 5 And Opencv 4 Computer Vision Projects
Qt 5 and OpenCV 4 Computer Vision Projects, published by Packt
Stars: ✭ 72 (-94.17%)
Mutual labels:  opengl
Agis Net
[SIGGRAPH Asia 2019] Artistic Glyph Image Synthesis via One-Stage Few-Shot Learning
Stars: ✭ 77 (-93.77%)
Mutual labels:  font
Allegro5
The official Allegro 5 git repository. Pull requests welcome!
Stars: ✭ 1,165 (-5.74%)
Mutual labels:  opengl
Duality
a 2D Game Development Framework
Stars: ✭ 1,231 (-0.4%)
Mutual labels:  opengl
Spectaculum
A spectacular view widget for visual media content on Android
Stars: ✭ 78 (-93.69%)
Mutual labels:  opengl
3270font
A 3270 font in a modern format
Stars: ✭ 1,197 (-3.16%)
Mutual labels:  font
Expo Three Demo
🍎👩‍🏫 Collection of Demos for THREE.js in Expo!
Stars: ✭ 76 (-93.85%)
Mutual labels:  opengl
Craft
A simple Minecraft clone written in C using modern OpenGL (shaders).
Stars: ✭ 8,957 (+624.68%)
Mutual labels:  opengl
Wfsignatureview
WFSignatureView, signature view in Swift and based on OpenGL
Stars: ✭ 77 (-93.77%)
Mutual labels:  opengl
Dxgl
DXGL DirectX-to-OpenGL Wrapper source code
Stars: ✭ 70 (-94.34%)
Mutual labels:  opengl
Pyearth
🌐 A lightweight 3D visualization of the earth in 150 lines of Qt/OpenGL
Stars: ✭ 78 (-93.69%)
Mutual labels:  opengl
Starlight
spaceships in space
Stars: ✭ 71 (-94.26%)
Mutual labels:  opengl
Styled Components Rhythm
Vertical Rhythm and Font Baselines with Styled Components
Stars: ✭ 76 (-93.85%)
Mutual labels:  font
Kakwafont
Kakwafont, a 12px monospace bitmap font based on Terminus
Stars: ✭ 76 (-93.85%)
Mutual labels:  font
Human Gpu
🤖 Hello human, I'm sick to be your GPU!!
Stars: ✭ 76 (-93.85%)
Mutual labels:  opengl
Raylib Lua
A simple and easy-to-use Lua library to enjoy videogames programming
Stars: ✭ 80 (-93.53%)
Mutual labels:  opengl

Freetype GL - A C OpenGL Freetype engine

Build Status Travis Build Status Appveyor

A small library for displaying Unicode in OpenGL using a single texture and a single vertex buffer.

Screenshot

Installation instructions.

Code organization

Mandatory files

  • texture-font: The texture-font structure is in charge of creating bitmap glyphs and to upload them to the texture atlas.

  • texture-atlas: This structure is responsible for the packing of small regions into a bigger texture. It is based on the skyline bottom left algorithm which appear to be well suited for storing glyphs. More information at: http://clb.demon.fi/files/RectangleBinPack.pdf

  • vector: This structure loosely mimics the std::vector class from c++. It is used by texture-atlas (for storing nodes), texture-font (for storing glyphs) and font-manager (for storing fonts). More information at: http://www.cppreference.com/wiki/container/vector/start

Optional files

  • markup: Simple structure that describes text properties (font family, font size, colors, underline, etc.)

  • font-manager: Structure in charge of caching fonts.

  • vertex-buffer: Generic vertex buffer structure inspired by pyglet (python). (more information at http://www.pyglet.org)

  • edtaa3func: Distance field computation by Stefan Gustavson (more information at http://contourtextures.wikidot.com/)

  • makefont: Allow to generate header file with font information (texture + glyphs) such that it can be used without freetype.

Contributors

  • Ryan.H.Kawicki (Initial CMake project)
  • Julian Mayer (Several bugfixes and code for demo-opengl-4.cc)
  • Sylvain Duclos (Android port)
  • Wang Yongcong (Improvements on the windows build and code review)
  • Jonas Wielicki (Bug report & fix on the CMakefile)
  • whatmannerofburgeristhis (Bug report in makefont)
  • Andrei Petrovici (Fine analysis of the whole code and report of potential problems)
  • Cristi Caloghera (Report on bad vertex buffer usage)
  • Andrei Petrovici (Code review)
  • Kim Jacobsen (Bug report & fix)
  • bsoddd (Bug report & fix)
  • Greg Douglas (Bug report & fix)
  • Jim Teeuwen (Bug report & fix)
  • quarnster (Bug report & fix)
  • Per Inge Mathisen (Bug report & fix)
  • Wojciech Mamrak (Code review, bug report & fix)
  • Wael Eloraiby (Put code to the C89 norm and fix CMakefile)
  • Christian Forfang (Code review, fix & patch for 3.2 core profile)
  • Lukas Murmann (Code review & fix for 3.2 core profile)
  • Jérémie Roy (Code review, fix and new ideas)
  • dsewtz (Bug report & fix)
  • jcgamestoy (Bug report & fix)
  • Behdad Esfahbod (Bug fix on harfbuzz demo)
  • Marcel Metz (Bug report & fix, CMmake no demo option, makefont parameters)
  • PJ O'Halloran (svn to git migration)
  • William Light (Face creation from memory)
  • Jan Niklas Hasse (Bug report & fix + README.md)
  • Pierre-Emmanuel Lallemant (Bug report & fix + travis setup)
  • Robert Conde (Bug report & fix)
  • Mikołaj Siedlarek (Build system bug fix)
  • Preet Desai (Bug report & fix)
  • Andy Staton (CMake fix and added namespace safeguard (avoiding glm collisions))
  • Daniel Burke (Removed GLEW dependency and fix problems with font licences)
  • Bob Kocisko (Added horizontal text alignment and text bounds calculation)
  • Ciro Santilli (Improve markdown documentation)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].