mmdevapi/tests: Add tests for IAudioClient::GetCurrentPadding.
[wine] / dlls / gdi32 / dibdrv / primitives.c
1 /*
2  * DIB driver primitives.
3  *
4  * Copyright 2011 Huw Davies
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include "gdi_private.h"
22 #include "dibdrv.h"
23
24 static inline DWORD *get_pixel_ptr_32(const dib_info *dib, int x, int y)
25 {
26     return (DWORD *)((BYTE*)dib->bits + y * dib->stride + x * 4);
27 }
28
29 static inline void do_rop_32(DWORD *ptr, DWORD and, DWORD xor)
30 {
31     *ptr = (*ptr & and) ^ xor;
32 }
33
34 static void solid_rects_32(const dib_info *dib, int num, RECT *rc, DWORD and, DWORD xor)
35 {
36     DWORD *ptr, *start;
37     int x, y, i;
38
39     for(i = 0; i < num; i++, rc++)
40     {
41         start = ptr = get_pixel_ptr_32(dib, rc->left, rc->top);
42         for(y = rc->top; y < rc->bottom; y++, start += dib->stride / 4)
43             for(x = rc->left, ptr = start; x < rc->right; x++)
44                 do_rop_32(ptr++, and, xor);
45     }
46 }
47
48 static void solid_rects_null(const dib_info *dib, int num, RECT *rc, DWORD and, DWORD xor)
49 {
50     return;
51 }
52
53 static DWORD colorref_to_pixel_888(const dib_info *dib, COLORREF color)
54 {
55     return ( ((color >> 16) & 0xff) | (color & 0xff00) | ((color << 16) & 0xff0000) );
56 }
57
58 static inline DWORD put_field(DWORD field, int shift, int len)
59 {
60     shift = shift - (8 - len);
61     if (len <= 8)
62         field &= (((1 << len) - 1) << (8 - len));
63     if (shift < 0)
64         field >>= -shift;
65     else
66         field <<= shift;
67     return field;
68 }
69
70 static DWORD colorref_to_pixel_masks(const dib_info *dib, COLORREF colour)
71 {
72     DWORD r,g,b;
73
74     r = GetRValue(colour);
75     g = GetGValue(colour);
76     b = GetBValue(colour);
77
78     return put_field(r, dib->red_shift,   dib->red_len) |
79            put_field(g, dib->green_shift, dib->green_len) |
80            put_field(b, dib->blue_shift,  dib->blue_len);
81 }
82
83 static DWORD colorref_to_pixel_null(const dib_info *dib, COLORREF color)
84 {
85     return 0;
86 }
87
88 const primitive_funcs funcs_8888 =
89 {
90     solid_rects_32,
91     colorref_to_pixel_888
92 };
93
94 const primitive_funcs funcs_32 =
95 {
96     solid_rects_32,
97     colorref_to_pixel_masks
98 };
99
100 const primitive_funcs funcs_null =
101 {
102     solid_rects_null,
103     colorref_to_pixel_null
104 };