Add small description & author tags to new extension-C-API

This commit is contained in:
KitsuneAlex 2024-05-11 17:51:49 +02:00
parent 670ed9db6f
commit 4e218cb11b
No known key found for this signature in database
GPG Key ID: 6B0CE864BB69B7D0
2 changed files with 18 additions and 0 deletions

View File

@ -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) {

View File

@ -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);