implement gdi text renderer
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
This commit is contained in:
parent
9a29682915
commit
8ebc8108ed
20 changed files with 16827 additions and 16830 deletions
33
include/Mw/TrueType.h
Normal file
33
include/Mw/TrueType.h
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
/*!
|
||||
* @file Mw/TrueType.h
|
||||
* @brief TrueType utilities
|
||||
*/
|
||||
#ifndef __MW_TRUETYPE_H__
|
||||
#define __MW_TRUETYPE_H__
|
||||
|
||||
#include <Mw/MachDep.h>
|
||||
#include <Mw/TypeDefs.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* @brief Get the TrueType font information
|
||||
* @param data Font data
|
||||
* @param size Font size
|
||||
* @return Information
|
||||
*/
|
||||
MWDECL MwTTFInfo MwTTFGetInfo(unsigned char* data, int size);
|
||||
|
||||
/*!
|
||||
* @brief Free the TrueType font information
|
||||
* @brief info Information
|
||||
*/
|
||||
MWDECL void MwTTFFreeInfo(MwTTFInfo info);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue