mirror of https://github.com/Chlumsky/msdfgen.git
Add small description & author tags to new extension-C-API
This commit is contained in:
parent
670ed9db6f
commit
4e218cb11b
|
|
@ -15,6 +15,15 @@
|
|||
#include "../msdfgen-ext-c.h"
|
||||
#include "../msdfgen-ext.h"
|
||||
|
||||
/*
|
||||
* A C-API modeled closely after the msdfgen C++ API
|
||||
* to allow C-programs and other language runtimes to
|
||||
* use the msdfgen library. Originally written for LWJGL.
|
||||
*
|
||||
* @since 11/05/2024
|
||||
* @author Alexander Hinze
|
||||
*/
|
||||
|
||||
extern "C" {
|
||||
|
||||
MSDF_API int msdf_ft_init(msdf_ft_handle* handle) {
|
||||
|
|
|
|||
|
|
@ -15,6 +15,15 @@
|
|||
|
||||
#include "msdfgen-c.h"
|
||||
|
||||
/*
|
||||
* A C-API modeled closely after the msdfgen C++ API
|
||||
* to allow C-programs and other language runtimes to
|
||||
* use the msdfgen library. Originally written for LWJGL.
|
||||
*
|
||||
* @since 11/05/2024
|
||||
* @author Alexander Hinze
|
||||
*/
|
||||
|
||||
MSDF_DEFINE_HANDLE_TYPE(msdf_ft);
|
||||
MSDF_DEFINE_HANDLE_TYPE(msdf_ft_font);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue