< prev index next >

src/java.desktop/macosx/native/libawt_lwawt/font/AWTStrike.m

Print this page
rev 52923 : 8226346: Build better binary builders
Reviewed-by: andrew

*** 30,44 **** #import "CGGlyphImages.h" #import "CGGlyphOutlines.h" #import "CoreTextSupport.h" #include "fontscalerdefs.h" - /* Use THIS_FILE when it is available. */ - #ifndef THIS_FILE - #define THIS_FILE __FILE__ - #endif - @implementation AWTStrike static CGAffineTransform sInverseTX = { 1, 0, 0, -1, 0, 0 }; - (id) initWithFont:(AWTFont *)awtFont --- 30,39 ----
*** 105,115 **** } #define AWT_FONT_CLEANUP_FINISH \ if (_fontThrowJavaException == YES) { \ char s[512]; \ ! sprintf(s, "%s-%s:%d", THIS_FILE, __FUNCTION__, __LINE__); \ [JNFException raise:env as:kRuntimeException reason:s]; \ } /* --- 100,110 ---- } #define AWT_FONT_CLEANUP_FINISH \ if (_fontThrowJavaException == YES) { \ char s[512]; \ ! sprintf(s, "%s-%s:%d", __FILE__, __FUNCTION__, __LINE__); \ [JNFException raise:env as:kRuntimeException reason:s]; \ } /*
< prev index next >