summaryrefslogtreecommitdiff
path: root/hw/xwin/winrop.c
blob: 76a997aaa66933c66eb0bca455754213b96ee547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
 *Copyright (C) 1994-2002 The XFree86 Project, Inc. All Rights Reserved.
 *
 *Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 *"Software"), to deal in the Software without restriction, including
 *without limitation the rights to use, copy, modify, merge, publish,
 *distribute, sublicense, and/or sell copies of the Software, and to
 *permit persons to whom the Software is furnished to do so, subject to
 *the following conditions:
 *
 *The above copyright notice and this permission notice shall be
 *included in all copies or substantial portions of the Software.
 *
 *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *NONINFRINGEMENT. IN NO EVENT SHALL THE XFREE86 PROJECT BE LIABLE FOR
 *ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
 *CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 *Except as contained in this notice, the name of the XFree86 Project
 *shall not be used in advertising or otherwise to promote the sale, use
 *or other dealings in this Software without prior written authorization
 *from the XFree86 Project.
 *
 * 	Authors:	Alan Hourihane <alanh@fairlite.demon.co.uk>
 */
/* $XFree86$ */

/*
 * Raster operations used by Windows translated to X's 16 rop codes...
 */
#include "win.h"

int g_copyROP[16] = { 	0xFF0062, /* GXclear 		- 0 */
		 	0x8800C6, /* GXand 		- S & D */
		 	0x440328, /* GXandReverse  	- S & !D */
		 	0xCC0020, /* GXcopy 		- S */
		 	0x220326, /* GXandInverted 	- !S & D */
		 	0xAA0029, /* GXnoop		- D */
		 	0x660046, /* GXxor 		- S ^ D */
		 	0xEE0086, /* GXor		- S | D */
		 	0x1100A6, /* GXnor 		- !S & !D */
		 	0x990126, /* GXequiv		- !S ^ D */
		 	0x550009, /* GXinvert		- !D */
		 	0xDD0228, /* GXorReverse	- S | !D */
		 	0x330008, /* GXcopyInverted	- !S */
		 	0xBB0226, /* GXorInverted	- !S | D */
		 	0x7700C6, /* GXnand		- !S | !D */
		 	0x000042  /* GXset		- 1 */
};

int g_patternROP[16] = {0xFF0062, /* GXclear		- 0 */
		 	0xA000C9, /* GXand 		- P & D */
		 	0xF50225, /* GXandReverse	- P & !D */
		 	0xF00021, /* GXcopy 		- P */
		 	0x5F00E9, /* GXandInverted 	- !P & D */
		 	0xAA0029, /* GXnoop		- D */
		 	0xA50065, /* GXxor		- P ^ D */
		 	0xA000C9, /* GXor		- P | D */
		 	0x5F00E9, /* GXnor		- !P & !D */
		 	0x5A0049, /* GXequiv		- !P ^ D */
		 	0x550009, /* GXinvert		- !D */
		 	0x500325, /* GXorReverse	- P | !D */
		 	0x0F0001, /* GXcopyInverted	- !P */
		 	0x0A0329, /* GXorInverted	- !P | D */
		 	0x0500A9, /* GXnand		- !P | !D */
		 	0x000042  /* GXset		- 1 */
};


void
ROP16 (HDC hdc, int rop)
{
  switch (rop)
    {
    case GXclear:
      SetROP2 (hdc, R2_BLACK);
      break;

    case GXand:
      SetROP2 (hdc, R2_MASKPEN);
      break;

    case GXandReverse:
      SetROP2 (hdc, R2_MASKPENNOT);
      break;

    case GXcopy:
      SetROP2 (hdc, R2_COPYPEN);
      break;

    case GXnoop:
      SetROP2 (hdc, R2_NOP);
      break;

    case GXxor:
      SetROP2 (hdc, R2_XORPEN);
      break;

    case GXor:
      SetROP2 (hdc, R2_MERGEPEN);
      break;

    case GXnor:
      SetROP2 (hdc, R2_NOTMERGEPEN);
      break;

    case GXequiv:
      SetROP2 (hdc, R2_NOTXORPEN);
      break;

    case GXinvert:
      SetROP2 (hdc, R2_NOT);
      break;

    case GXorReverse:
      SetROP2 (hdc, R2_MERGEPENNOT);
      break;

    case GXcopyInverted:
      SetROP2 (hdc, R2_NOTCOPYPEN);
      break;

    case GXorInverted:
      SetROP2 (hdc, R2_MERGENOTPEN);
      break;

    case GXnand:
      SetROP2 (hdc, R2_NOTMASKPEN);
      break;

    case GXset:
      SetROP2 (hdc, R2_WHITE);
      break;
    }
}