mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-15 04:22:28 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
17
src/gx/font/FaceData.hpp
Normal file
17
src/gx/font/FaceData.hpp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef GX_FONT_FACE_DATA_HPP
|
||||
#define GX_FONT_FACE_DATA_HPP
|
||||
|
||||
#include "gx/font/FreeType.hpp"
|
||||
#include "gx/font/Types.hpp"
|
||||
#include <common/Handle.hpp>
|
||||
#include <storm/Hash.hpp>
|
||||
|
||||
class FACEDATA : public CHandleObject, public TSHashObject<FACEDATA, HASHKEY_STRI> {
|
||||
public:
|
||||
void* data = nullptr;
|
||||
FT_Face face = nullptr;
|
||||
HFACE selfReference;
|
||||
virtual ~FACEDATA();
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue