Update Readme
This commit is contained in:
parent
0947bc1a50
commit
d749171091
|
@ -4,9 +4,9 @@ gb single-file public domain libraries for C & C++
|
|||
|
||||
library | latest version | category | languages | description
|
||||
----------------|----------------|----------|-----------|-------------
|
||||
**gb.h** | 0.03 | misc | C, C++ | A C helper library for C & C++
|
||||
**gb.h** | 0.04 | misc | C, C++ | A C helper library for C & C++
|
||||
**gb_math.h** | 0.05 | math | C, C++ | A C/C++ vector math library geared towards game development
|
||||
**gb_gl.h** | 0.01 | graphics | C, C++ | A C/C++ OpenGL Helper Library
|
||||
**gb_gl.h** | 0.02 | graphics | C, C++ | A C/C++ OpenGL Helper Library
|
||||
**gb_string.h** | 0.94 | strings | C, C++ | A better string library for C & C++ (this is built into gb.h too with custom allocator support!)
|
||||
**gb_ini.h** | 0.92 | misc | C, C++ | A simple ini file loader library for C & C++
|
||||
|
||||
|
|
3
gb.h
3
gb.h
|
@ -1,4 +1,4 @@
|
|||
/* gb.h - v0.03 - Ginger Bill's C Helper Library - public domain
|
||||
/* gb.h - v0.04 - Ginger Bill's C Helper Library - public domain
|
||||
- no warranty implied; use at your own risk
|
||||
|
||||
This is a single header file with a bunch of useful stuff
|
||||
|
@ -26,6 +26,7 @@ Conventions used:
|
|||
|
||||
|
||||
Version History:
|
||||
0.04 - Better UTF support and search/sort procs
|
||||
0.03 - Completely change procedure naming convention
|
||||
0.02a - Bug fixes
|
||||
0.02 - Change naming convention and gbArray(Type)
|
||||
|
|
4
gb_gl.h
4
gb_gl.h
|
@ -1,4 +1,4 @@
|
|||
/* gb.h - v0.01 - OpenGL Helper Library - public domain
|
||||
/* gb.h - v0.02 - OpenGL Helper Library - public domain
|
||||
- no warranty implied; use at your own risk
|
||||
|
||||
This is a single header file with a bunch of useful stuff
|
||||
|
@ -34,6 +34,7 @@ Conventions used:
|
|||
|
||||
|
||||
Version History:
|
||||
0.02 - Font Caching and Rendering
|
||||
0.01 - Initial Version
|
||||
|
||||
LICENSE
|
||||
|
@ -552,6 +553,7 @@ GBGL_DEF f32 gbgl_get_string_width (gbglFont *font
|
|||
|
||||
#ifndef GBGL_FONT_CHAR_LIST
|
||||
#define GBGL_FONT_CHAR_LIST \
|
||||
"チーズ"\
|
||||
"Āā㥹ĆćĈĉĊċČčĎďĐđĒēĔĕĖėĘęĚěĜĝĞğĠġĢģĤĥĨĩĪīĬĭĮįİıIJijĴĵĶķĸĹĺĻļĽľŁłŃńŅņņŇňʼnŊŋ"\
|
||||
"ŌōōŎŏŐőŒœŕŖŗŘřŚśŜŝŞşŠšŢţŤťŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽža!ö"\
|
||||
"\"#$%%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"\
|
||||
|
|
Loading…
Reference in New Issue