description
parent
2fe40f7624
commit
64fbf36226
|
@ -0,0 +1,23 @@
|
||||||
|
Wellspring - A very simple font rendering system
|
||||||
|
|
||||||
|
Copyright (c) 2022 Evan Hemsley
|
||||||
|
|
||||||
|
This software is provided 'as-is', without any express or implied warranty.
|
||||||
|
In no event will the authors be held liable for any damages arising from
|
||||||
|
the use of this software.
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute it
|
||||||
|
freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. The origin of this software must not be misrepresented; you must not
|
||||||
|
claim that you wrote the original software. If you use this software in a
|
||||||
|
product, an acknowledgment in the product documentation would be
|
||||||
|
appreciated but is not required.
|
||||||
|
|
||||||
|
2. Altered source versions must be plainly marked as such, and must not be
|
||||||
|
misrepresented as being the original software.
|
||||||
|
|
||||||
|
3. This notice may not be removed or altered from any source distribution.
|
||||||
|
|
||||||
|
Evan "cosmonaut" Hemsley <evan@moonside.games>
|
|
@ -0,0 +1,25 @@
|
||||||
|
This is Wellspring, an immediate mode font rendering system in C.
|
||||||
|
|
||||||
|
About Wellspring
|
||||||
|
----------------
|
||||||
|
Wellspring is inspired by the design of Dear ImGui.
|
||||||
|
It outputs pixel data that you can upload to a texture and vertex buffers that you can render anytime in your 3D application.
|
||||||
|
This means that you can integrate it easily using the graphics library of your choice.
|
||||||
|
Wellspring uses stb_truetype to rasterize and pack fonts quickly.
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
------------
|
||||||
|
Wellspring depends on the C runtime, but SDL2 can be optionally depended upon instead if your application prefers it.
|
||||||
|
|
||||||
|
Building Wellspring
|
||||||
|
-------------------
|
||||||
|
For *nix platforms, use Cmake:
|
||||||
|
|
||||||
|
$ mkdir build/
|
||||||
|
$ cd build
|
||||||
|
$ cmake ../
|
||||||
|
$ make
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
Wellspring is licensed under the zlib license. See LICENSE for details.
|
|
@ -1,4 +1,4 @@
|
||||||
/* Wellspring - A very simple font rendering system
|
/* Wellspring - An immediate mode font rendering system in C
|
||||||
*
|
*
|
||||||
* Copyright (c) 2022 Evan Hemsley
|
* Copyright (c) 2022 Evan Hemsley
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Wellspring - A very simple font rendering system
|
/* Wellspring - An immediate mode font rendering system in C
|
||||||
*
|
*
|
||||||
* Copyright (c) 2022 Evan Hemsley
|
* Copyright (c) 2022 Evan Hemsley
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue