xref: /haiku/src/servers/app/drawing/Painter/drawing_modes/DrawingModeCopySolidSUBPIX.h (revision 59e13a3f06eedbc797f797da71c6810634b22cd4)
1c8164642SStephan Aßmus /*
2c8164642SStephan Aßmus  * Copyright 2005, Stephan Aßmus <superstippi@gmx.de>.
3c8164642SStephan Aßmus  * Copyright 2008, Andrej Spielmann <andrej.spielmann@seh.ox.ac.uk>.
4c8164642SStephan Aßmus  * All rights reserved. Distributed under the terms of the MIT License.
5c8164642SStephan Aßmus  *
6c8164642SStephan Aßmus  * DrawingMode implementing B_OP_COPY ignoring the pattern (solid) on B_RGBA32.
7c8164642SStephan Aßmus  *
8c8164642SStephan Aßmus  */
9c8164642SStephan Aßmus 
10c8164642SStephan Aßmus #ifndef DRAWING_MODE_COPY_SOLID_SUBPIX_H
11c8164642SStephan Aßmus #define DRAWING_MODE_COPY_SOLID_SUBPIX_H
12c8164642SStephan Aßmus 
13c8164642SStephan Aßmus #include "DrawingModeOverSUBPIX.h"
14*59e13a3fSStephan Aßmus #include "GlobalSubpixelSettings.h"
15c8164642SStephan Aßmus 
16c8164642SStephan Aßmus 
17c8164642SStephan Aßmus // blend_solid_hspan_copy_solid_subpix
18c8164642SStephan Aßmus void
blend_solid_hspan_copy_solid_subpix(int x,int y,unsigned len,const color_type & c,const uint8 * covers,agg_buffer * buffer,const PatternHandler * pattern)19c8164642SStephan Aßmus blend_solid_hspan_copy_solid_subpix(int x, int y, unsigned len,
20c8164642SStephan Aßmus 	const color_type& c, const uint8* covers, agg_buffer* buffer,
21c8164642SStephan Aßmus 	const PatternHandler* pattern)
22c8164642SStephan Aßmus {
23c8164642SStephan Aßmus 	uint8* p = buffer->row_ptr(y) + (x << 2);
24*59e13a3fSStephan Aßmus 	const int subpixelL = gSubpixelOrderingRGB ? 2 : 0;
25*59e13a3fSStephan Aßmus 	const int subpixelM = 1;
26*59e13a3fSStephan Aßmus 	const int subpixelR = gSubpixelOrderingRGB ? 0 : 2;
27c8164642SStephan Aßmus 	do {
28*59e13a3fSStephan Aßmus 		BLEND_OVER_SUBPIX(p, c.r, c.g, c.b, covers[subpixelL],
29*59e13a3fSStephan Aßmus 			covers[subpixelM], covers[subpixelR]);
30c8164642SStephan Aßmus 		covers += 3;
31c8164642SStephan Aßmus 		p += 4;
32c8164642SStephan Aßmus 		x++;
33c8164642SStephan Aßmus 		len -= 3;
34c8164642SStephan Aßmus 	} while (len);
35c8164642SStephan Aßmus }
36c8164642SStephan Aßmus 
37c8164642SStephan Aßmus #endif // DRAWING_MODE_COPY_SOLID_SUBPIX_H
38c8164642SStephan Aßmus 
39