Fixed warnings for CMake Unity builds
* src/cache/ftcbasic.c: Fixed `warning: 'FT_COMPONENT' macro redefined` * src/smooth/ftgrays.c: Fixed `warning: 'TRUNC' macro redefined`
This commit is contained in:
parent
4f35711844
commit
1ffe79e677
2 changed files with 3 additions and 0 deletions
1
src/cache/ftcbasic.c
vendored
1
src/cache/ftcbasic.c
vendored
|
@ -26,6 +26,7 @@
|
|||
#include "ftccback.h"
|
||||
#include "ftcerror.h"
|
||||
|
||||
#undef FT_COMPONENT
|
||||
#define FT_COMPONENT cache
|
||||
|
||||
|
||||
|
|
|
@ -333,7 +333,9 @@ typedef ptrdiff_t FT_PtrDist;
|
|||
#define PIXEL_BITS 8
|
||||
|
||||
#define ONE_PIXEL ( 1 << PIXEL_BITS )
|
||||
#undef TRUNC
|
||||
#define TRUNC( x ) (TCoord)( (x) >> PIXEL_BITS )
|
||||
#undef FRACT
|
||||
#define FRACT( x ) (TCoord)( (x) & ( ONE_PIXEL - 1 ) )
|
||||
|
||||
#if PIXEL_BITS >= 6
|
||||
|
|
Loading…
Add table
Reference in a new issue