mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-27 22:10:23 +00:00
27 lines
381 B
Objective-C
27 lines
381 B
Objective-C
#import <Onyx2D/O2Font.h>
|
|
|
|
#ifdef DARLING
|
|
#define __linux__
|
|
#endif
|
|
|
|
#import <stddef.h>
|
|
#import <ft2build.h>
|
|
#import FT_FREETYPE_H
|
|
#import FT_RENDER_H
|
|
#import <fontconfig/fontconfig.h>
|
|
|
|
#ifdef DARLING
|
|
#undef __linux__
|
|
#endif
|
|
|
|
@interface O2Font_FT : O2Font {
|
|
FT_Face _face;
|
|
}
|
|
|
|
- (FT_Face)face;
|
|
|
|
@end
|
|
|
|
FT_Library O2FontSharedFreeTypeLibrary();
|
|
FcConfig *O2FontSharedFontConfig();
|