And omitted the common OpenType stuff from the build.

This commit is contained in:
Pietro Gagliardi 2017-05-17 16:18:28 -04:00
parent 2f73df09e3
commit 4f31a1331c
2 changed files with 0 additions and 5 deletions

View File

@ -8,7 +8,6 @@ list(APPEND _LIBUI_SOURCES
common/debug.c common/debug.c
common/drawtext.c common/drawtext.c
common/matrix.c common/matrix.c
common/opentype.c
common/shouldquit.c common/shouldquit.c
common/userbugs.c common/userbugs.c
common/utf.c common/utf.c

View File

@ -101,10 +101,6 @@ struct caretDrawParams {
extern void caretDrawParams(uiDrawContext *c, double height, struct caretDrawParams *p); extern void caretDrawParams(uiDrawContext *c, double height, struct caretDrawParams *p);
extern void drawTextBackground(uiDrawContext *c, double x, double y, uiDrawTextLayout *layout, size_t start, size_t end, uiDrawBrush *brush, int isSelection); extern void drawTextBackground(uiDrawContext *c, double x, double y, uiDrawTextLayout *layout, size_t start, size_t end, uiDrawBrush *brush, int isSelection);
// opentype.c
typedef void (*specToOpenTypeEnumFunc)(const char *featureTag, uint32_t param, void *data);
extern void specToOpenType(uiAttributeSpec *spec, specToOpenTypeEnumFunc f, void *data);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif