brush             286 ext/gd/gd.c    	ZEND_ARG_INFO(0, brush)
brush             141 ext/gd/libgd/gd.c 	im->brush = 0;
brush             197 ext/gd/libgd/gd.c 	im->brush = 0;
brush             798 ext/gd/libgd/gd.c 	if (!im->brush) {
brush             802 ext/gd/libgd/gd.c 	hy = gdImageSY(im->brush) / 2;
brush             804 ext/gd/libgd/gd.c 	y2 = y1 + gdImageSY(im->brush);
brush             805 ext/gd/libgd/gd.c 	hx = gdImageSX(im->brush) / 2;
brush             807 ext/gd/libgd/gd.c 	x2 = x1 + gdImageSX(im->brush);
brush             811 ext/gd/libgd/gd.c 		if (im->brush->trueColor) {
brush             816 ext/gd/libgd/gd.c 					p = gdImageGetTrueColorPixel(im->brush, srcx, srcy);
brush             818 ext/gd/libgd/gd.c 					if (p != gdImageGetTransparent(im->brush)) {
brush             831 ext/gd/libgd/gd.c 					p = gdImageGetPixel(im->brush, srcx, srcy);
brush             832 ext/gd/libgd/gd.c 					tc = gdImageGetTrueColorPixel(im->brush, srcx, srcy);
brush             834 ext/gd/libgd/gd.c 					if (p != gdImageGetTransparent(im->brush)) {
brush             847 ext/gd/libgd/gd.c 				p = gdImageGetPixel(im->brush, srcx, srcy);
brush             849 ext/gd/libgd/gd.c 				if (p != gdImageGetTransparent(im->brush)) {
brush             851 ext/gd/libgd/gd.c 					if (im->brush->trueColor) {
brush            2742 ext/gd/libgd/gd.c void gdImageSetBrush (gdImagePtr im, gdImagePtr brush)
brush            2745 ext/gd/libgd/gd.c 	im->brush = brush;
brush            2746 ext/gd/libgd/gd.c 	if (!im->trueColor && !im->brush->trueColor) {
brush            2747 ext/gd/libgd/gd.c 		for (i = 0; i < gdImageColorsTotal(brush); i++) {
brush            2749 ext/gd/libgd/gd.c 			index = gdImageColorResolveAlpha(im, gdImageRed(brush, i), gdImageGreen(brush, i), gdImageBlue(brush, i), gdImageAlpha(brush, i));
brush             195 ext/gd/libgd/gd.h 	struct gdImageStruct *brush;
brush             700 ext/gd/libgd/gd.h void gdImageSetBrush(gdImagePtr im, gdImagePtr brush);
brush              17 ext/gd/libgd/gddemo.c   gdImagePtr brush;
brush              81 ext/gd/libgd/gddemo.c       brush = gdImageCreateTrueColor (16, 16);
brush              82 ext/gd/libgd/gddemo.c       gdImageCopyResized (brush, im_in,
brush              84 ext/gd/libgd/gddemo.c 			  gdImageSX (brush), gdImageSY (brush),
brush              86 ext/gd/libgd/gddemo.c       gdImageSetBrush (im_out, brush);