From: YAMAMOTO Mitsuharu Date: Wed, 31 Aug 2005 08:35:56 +0000 (+0000) Subject: (PIX_MASK_DRAW, PIX_MASK_RETAIN): Move defines to image.c. X-Git-Tag: emacs-pretest-22.0.90~7337 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=49c12ae6654043147a5ddf5f8e73d5fe395b1068;p=emacs.git (PIX_MASK_DRAW, PIX_MASK_RETAIN): Move defines to image.c. --- diff --git a/src/macterm.h b/src/macterm.h index a4af9381867..b3855f142c6 100644 --- a/src/macterm.h +++ b/src/macterm.h @@ -39,11 +39,6 @@ Boston, MA 02110-1301, USA. */ #define BLACK_PIX_DEFAULT(f) RGB_TO_ULONG(0,0,0) #define WHITE_PIX_DEFAULT(f) RGB_TO_ULONG(255,255,255) -/* A black pixel in a mask bitmap/pixmap means ``draw a source - pixel''. A white pixel means ``retain the current pixel''. */ -#define PIX_MASK_DRAW(f) BLACK_PIX_DEFAULT(f) -#define PIX_MASK_RETAIN(f) WHITE_PIX_DEFAULT(f) - #define FONT_WIDTH(f) ((f)->max_bounds.width) #define FONT_HEIGHT(f) ((f)->ascent + (f)->descent) #define FONT_BASE(f) ((f)->ascent)