gdi32: Simplify dibdrv_GetImage by merging the stand-alone and selected bitmap cases.
[wine.git] / dlls / gdi32 / dibdrv / dc.c
blob6ffb5540d018969c89eec014ac467dcca9bc1b7c
1 /*
2 * DIB driver initialization and DC functions.
4 * Copyright 2011 Huw Davies
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.
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.
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
21 #include <assert.h>
23 #include "gdi_private.h"
24 #include "dibdrv.h"
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(dib);
30 static const DWORD bit_fields_888[3] = {0xff0000, 0x00ff00, 0x0000ff};
31 static const DWORD bit_fields_555[3] = {0x7c00, 0x03e0, 0x001f};
33 static void calc_shift_and_len(DWORD mask, int *shift, int *len)
35 int s, l;
37 if(!mask)
39 *shift = *len = 0;
40 return;
43 s = 0;
44 while ((mask & 1) == 0)
46 mask >>= 1;
47 s++;
49 l = 0;
50 while ((mask & 1) == 1)
52 mask >>= 1;
53 l++;
55 *shift = s;
56 *len = l;
59 static void init_bit_fields(dib_info *dib, const DWORD *bit_fields)
61 dib->red_mask = bit_fields[0];
62 dib->green_mask = bit_fields[1];
63 dib->blue_mask = bit_fields[2];
64 calc_shift_and_len(dib->red_mask, &dib->red_shift, &dib->red_len);
65 calc_shift_and_len(dib->green_mask, &dib->green_shift, &dib->green_len);
66 calc_shift_and_len(dib->blue_mask, &dib->blue_shift, &dib->blue_len);
69 static BOOL init_dib_info(dib_info *dib, const BITMAPINFOHEADER *bi, const DWORD *bit_fields,
70 RGBQUAD *color_table, int color_table_size, void *bits, enum dib_info_flags flags)
72 dib->bit_count = bi->biBitCount;
73 dib->width = bi->biWidth;
74 dib->height = bi->biHeight;
75 dib->stride = get_dib_stride( dib->width, dib->bit_count );
76 dib->bits = bits;
77 dib->ptr_to_free = NULL;
78 dib->flags = flags;
80 if(dib->height < 0) /* top-down */
82 dib->height = -dib->height;
84 else /* bottom-up */
86 /* bits always points to the top-left corner and the stride is -ve */
87 dib->bits = (BYTE*)dib->bits + (dib->height - 1) * dib->stride;
88 dib->stride = -dib->stride;
91 dib->funcs = &funcs_null;
93 switch(dib->bit_count)
95 case 32:
96 if(bi->biCompression == BI_RGB)
97 bit_fields = bit_fields_888;
99 init_bit_fields(dib, bit_fields);
101 if(dib->red_mask == 0xff0000 && dib->green_mask == 0x00ff00 && dib->blue_mask == 0x0000ff)
102 dib->funcs = &funcs_8888;
103 else
104 dib->funcs = &funcs_32;
105 break;
107 case 24:
108 dib->funcs = &funcs_24;
109 break;
111 case 16:
112 if(bi->biCompression == BI_RGB)
113 bit_fields = bit_fields_555;
115 init_bit_fields(dib, bit_fields);
117 if(dib->red_mask == 0x7c00 && dib->green_mask == 0x03e0 && dib->blue_mask == 0x001f)
118 dib->funcs = &funcs_555;
119 else
120 dib->funcs = &funcs_16;
121 break;
123 case 8:
124 dib->funcs = &funcs_8;
125 break;
127 case 4:
128 dib->funcs = &funcs_4;
129 break;
131 case 1:
132 dib->funcs = &funcs_1;
133 break;
135 default:
136 TRACE("bpp %d not supported, will forward to graphics driver.\n", dib->bit_count);
137 return FALSE;
140 if(color_table)
142 if (flags & private_color_table)
144 dib->color_table = HeapAlloc(GetProcessHeap(), 0, color_table_size * sizeof(dib->color_table[0]));
145 if(!dib->color_table) return FALSE;
146 memcpy(dib->color_table, color_table, color_table_size * sizeof(color_table[0]));
148 else
149 dib->color_table = color_table;
150 dib->color_table_size = color_table_size;
152 else
154 dib->color_table = NULL;
155 dib->color_table_size = 0;
158 return TRUE;
161 BOOL init_dib_info_from_packed(dib_info *dib, const BITMAPINFOHEADER *bi, WORD usage, HPALETTE palette)
163 DWORD *masks = NULL;
164 RGBQUAD *color_table = NULL, pal_table[256];
165 BYTE *ptr = (BYTE*)bi + bi->biSize;
166 int num_colors = get_dib_num_of_colors( (const BITMAPINFO *)bi );
168 if(bi->biCompression == BI_BITFIELDS)
170 masks = (DWORD *)ptr;
171 ptr += 3 * sizeof(DWORD);
174 if(num_colors)
176 if(usage == DIB_PAL_COLORS)
178 PALETTEENTRY entries[256];
179 const WORD *index = (const WORD*) ptr;
180 UINT i, count = GetPaletteEntries( palette, 0, num_colors, entries );
181 for (i = 0; i < num_colors; i++, index++)
183 PALETTEENTRY *entry = &entries[*index % count];
184 pal_table[i].rgbRed = entry->peRed;
185 pal_table[i].rgbGreen = entry->peGreen;
186 pal_table[i].rgbBlue = entry->peBlue;
187 pal_table[i].rgbReserved = 0;
189 color_table = pal_table;
190 ptr += num_colors * sizeof(WORD);
192 else
194 color_table = (RGBQUAD*)ptr;
195 ptr += num_colors * sizeof(*color_table);
199 return init_dib_info(dib, bi, masks, color_table, num_colors, ptr, private_color_table);
202 BOOL init_dib_info_from_bitmapinfo(dib_info *dib, const BITMAPINFO *info, void *bits, enum dib_info_flags flags)
204 unsigned int colors = get_dib_num_of_colors( info );
205 void *colorptr = (char *)&info->bmiHeader + info->bmiHeader.biSize;
206 const DWORD *bitfields = (info->bmiHeader.biCompression == BI_BITFIELDS) ? (DWORD *)colorptr : NULL;
208 return init_dib_info( dib, &info->bmiHeader, bitfields, colors ? colorptr : NULL, colors, bits, flags );
211 static void clear_dib_info(dib_info *dib)
213 dib->color_table = NULL;
214 dib->bits = NULL;
215 dib->ptr_to_free = NULL;
218 /**********************************************************************
219 * free_dib_info
221 * Free the resources associated with a dib and optionally the bits
223 void free_dib_info(dib_info *dib)
225 if (dib->flags & private_color_table)
226 HeapFree(GetProcessHeap(), 0, dib->color_table);
227 dib->color_table = NULL;
229 HeapFree(GetProcessHeap(), 0, dib->ptr_to_free);
230 dib->ptr_to_free = NULL;
231 dib->bits = NULL;
234 void copy_dib_color_info(dib_info *dst, const dib_info *src)
236 dst->bit_count = src->bit_count;
237 dst->red_mask = src->red_mask;
238 dst->green_mask = src->green_mask;
239 dst->blue_mask = src->blue_mask;
240 dst->red_len = src->red_len;
241 dst->green_len = src->green_len;
242 dst->blue_len = src->blue_len;
243 dst->red_shift = src->red_shift;
244 dst->green_shift = src->green_shift;
245 dst->blue_shift = src->blue_shift;
246 dst->funcs = src->funcs;
247 dst->color_table_size = src->color_table_size;
248 dst->color_table = NULL;
249 dst->flags = src->flags;
250 if(dst->color_table_size)
252 int size = dst->color_table_size * sizeof(dst->color_table[0]);
253 if (dst->flags & private_color_table)
255 dst->color_table = HeapAlloc(GetProcessHeap(), 0, size);
256 memcpy(dst->color_table, src->color_table, size);
258 else
259 dst->color_table = src->color_table;
263 DWORD convert_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, struct bitblt_coords *src,
264 const BITMAPINFO *dst_info, void *dst_bits )
266 dib_info src_dib, dst_dib;
267 DWORD ret;
269 if ( !init_dib_info_from_bitmapinfo( &src_dib, src_info, src_bits, 0 ) )
270 return ERROR_BAD_FORMAT;
271 if ( !init_dib_info_from_bitmapinfo( &dst_dib, dst_info, dst_bits, 0 ) )
272 return ERROR_BAD_FORMAT;
274 ret = dst_dib.funcs->convert_to( &dst_dib, &src_dib, &src->visrect );
276 /* We shared the color tables, so there's no need to free the dib_infos here */
277 if(!ret) return ERROR_BAD_FORMAT;
279 /* update coordinates, the destination rectangle is always stored at 0,0 */
280 src->x -= src->visrect.left;
281 src->y -= src->visrect.top;
282 offset_rect( &src->visrect, -src->visrect.left, -src->visrect.top );
283 return ERROR_SUCCESS;
286 static void update_fg_colors( dibdrv_physdev *pdev )
288 pdev->pen_color = get_fg_color( pdev, pdev->pen_colorref );
289 pdev->brush_color = get_fg_color( pdev, pdev->brush_colorref );
292 static void update_masks( dibdrv_physdev *pdev, INT rop )
294 calc_and_xor_masks( rop, pdev->pen_color, &pdev->pen_and, &pdev->pen_xor );
295 update_brush_rop( pdev, rop );
296 if( GetBkMode( pdev->dev.hdc ) == OPAQUE )
297 calc_and_xor_masks( rop, pdev->bkgnd_color, &pdev->bkgnd_and, &pdev->bkgnd_xor );
300 /***********************************************************************
301 * add_extra_clipping_region
303 * Temporarily add a region to the current clipping region.
304 * The returned region must be restored with restore_clipping_region.
306 static HRGN add_extra_clipping_region( dibdrv_physdev *pdev, HRGN rgn )
308 HRGN ret, clip;
310 if (!(clip = CreateRectRgn( 0, 0, 0, 0 ))) return 0;
311 CombineRgn( clip, pdev->clip, rgn, RGN_AND );
312 ret = pdev->clip;
313 pdev->clip = clip;
314 return ret;
317 /***********************************************************************
318 * restore_clipping_region
320 static void restore_clipping_region( dibdrv_physdev *pdev, HRGN rgn )
322 if (!rgn) return;
323 DeleteObject( pdev->clip );
324 pdev->clip = rgn;
327 /***********************************************************************
328 * dibdrv_DeleteDC
330 static BOOL dibdrv_DeleteDC( PHYSDEV dev )
332 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
333 TRACE("(%p)\n", dev);
334 DeleteObject(pdev->clip);
335 free_pattern_brush(pdev);
336 free_dib_info(&pdev->dib);
337 return 0;
340 static void set_color_info( const dib_info *dib, BITMAPINFO *info )
342 DWORD *masks = (DWORD *)info->bmiColors;
344 info->bmiHeader.biCompression = BI_RGB;
345 info->bmiHeader.biClrUsed = 0;
347 switch (info->bmiHeader.biBitCount)
349 case 1:
350 case 4:
351 case 8:
352 if (dib->color_table)
354 info->bmiHeader.biClrUsed = min( dib->color_table_size, 1 << dib->bit_count );
355 memcpy( info->bmiColors, dib->color_table,
356 info->bmiHeader.biClrUsed * sizeof(RGBQUAD) );
358 break;
359 case 16:
360 masks[0] = dib->red_mask;
361 masks[1] = dib->green_mask;
362 masks[2] = dib->blue_mask;
363 info->bmiHeader.biCompression = BI_BITFIELDS;
364 break;
365 case 32:
366 if (dib->funcs != &funcs_8888)
368 masks[0] = dib->red_mask;
369 masks[1] = dib->green_mask;
370 masks[2] = dib->blue_mask;
371 info->bmiHeader.biCompression = BI_BITFIELDS;
373 break;
377 /***********************************************************************
378 * dibdrv_GetImage
380 static DWORD dibdrv_GetImage( PHYSDEV dev, HBITMAP hbitmap, BITMAPINFO *info,
381 struct gdi_image_bits *bits, struct bitblt_coords *src )
383 DWORD ret = ERROR_SUCCESS;
384 dib_info *dib, stand_alone;
386 TRACE( "%p %p %p\n", dev, hbitmap, info );
388 info->bmiHeader.biSize = sizeof(info->bmiHeader);
389 info->bmiHeader.biPlanes = 1;
390 info->bmiHeader.biCompression = BI_RGB;
391 info->bmiHeader.biXPelsPerMeter = 0;
392 info->bmiHeader.biYPelsPerMeter = 0;
393 info->bmiHeader.biClrUsed = 0;
394 info->bmiHeader.biClrImportant = 0;
396 if (hbitmap)
398 BITMAPOBJ *bmp = GDI_GetObjPtr( hbitmap, OBJ_BITMAP );
400 if (!bmp) return ERROR_INVALID_HANDLE;
401 assert(bmp->dib);
403 if (!init_dib_info( &stand_alone, &bmp->dib->dsBmih, bmp->dib->dsBitfields,
404 bmp->color_table, bmp->nb_colors, bmp->dib->dsBm.bmBits, 0 ))
406 ret = ERROR_BAD_FORMAT;
407 goto done;
409 dib = &stand_alone;
411 else
413 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
414 dib = &pdev->dib;
417 info->bmiHeader.biWidth = dib->width;
418 info->bmiHeader.biHeight = dib->stride > 0 ? -dib->height : dib->height;
419 info->bmiHeader.biBitCount = dib->bit_count;
420 info->bmiHeader.biSizeImage = dib->height * abs( dib->stride );
422 set_color_info( dib, info );
424 if (bits)
426 bits->ptr = dib->bits;
427 if (dib->stride < 0)
428 bits->ptr = (char *)bits->ptr + (dib->height - 1) * dib->stride;
429 bits->is_copy = FALSE;
430 bits->free = NULL;
433 done:
434 if (hbitmap) GDI_ReleaseObj( hbitmap );
435 return ret;
438 static BOOL matching_color_info( const dib_info *dib, const BITMAPINFO *info )
440 switch (info->bmiHeader.biBitCount)
442 case 1:
443 case 4:
444 case 8:
446 RGBQUAD *color_table = (RGBQUAD *)((char *)info + info->bmiHeader.biSize);
447 if (dib->color_table_size != info->bmiHeader.biClrUsed ) return FALSE;
448 return memcmp( color_table, dib->color_table, dib->color_table_size * sizeof(RGBQUAD) );
451 case 16:
453 DWORD *masks = (DWORD *)info->bmiColors;
454 if (info->bmiHeader.biCompression == BI_RGB) return dib->funcs == &funcs_555;
455 if (info->bmiHeader.biCompression == BI_BITFIELDS)
456 return masks[0] == dib->red_mask && masks[1] == dib->green_mask && masks[2] == dib->blue_mask;
457 break;
460 case 24:
461 return TRUE;
463 case 32:
465 DWORD *masks = (DWORD *)info->bmiColors;
466 if (info->bmiHeader.biCompression == BI_RGB) return dib->funcs == &funcs_8888;
467 if (info->bmiHeader.biCompression == BI_BITFIELDS)
468 return masks[0] == dib->red_mask && masks[1] == dib->green_mask && masks[2] == dib->blue_mask;
469 break;
474 return FALSE;
477 static inline BOOL rop_uses_pat(DWORD rop)
479 return ((rop >> 4) & 0x0f0000) != (rop & 0x0f0000);
482 /***********************************************************************
483 * dibdrv_PutImage
485 static DWORD dibdrv_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info,
486 const struct gdi_image_bits *bits, struct bitblt_coords *src,
487 struct bitblt_coords *dst, DWORD rop )
489 dib_info *dib, stand_alone;
490 DWORD ret;
491 POINT origin;
492 dib_info src_dib;
493 HRGN total_clip, saved_clip = NULL;
494 dibdrv_physdev *pdev = NULL;
495 const WINEREGION *clip_data;
496 int i, rop2;
498 TRACE( "%p %p %p\n", dev, hbitmap, info );
500 if (!hbitmap && rop_uses_pat( rop ))
502 PHYSDEV next = GET_NEXT_PHYSDEV( dev, pPutImage );
503 FIXME( "rop %08x unsupported, forwarding to graphics driver\n", rop );
504 return next->funcs->pPutImage( next, 0, clip, info, bits, src, dst, rop );
507 if (hbitmap)
509 BITMAPOBJ *bmp = GDI_GetObjPtr( hbitmap, OBJ_BITMAP );
511 if (!bmp) return ERROR_INVALID_HANDLE;
512 assert(bmp->dib);
514 if (!init_dib_info( &stand_alone, &bmp->dib->dsBmih, bmp->dib->dsBitfields,
515 bmp->color_table, bmp->nb_colors, bmp->dib->dsBm.bmBits, 0 ))
517 ret = ERROR_BAD_FORMAT;
518 goto done;
520 dib = &stand_alone;
522 else
524 pdev = get_dibdrv_pdev( dev );
525 dib = &pdev->dib;
528 if (info->bmiHeader.biPlanes != 1) goto update_format;
529 if (info->bmiHeader.biBitCount != dib->bit_count) goto update_format;
530 if (!matching_color_info( dib, info )) goto update_format;
531 if (!bits)
533 ret = ERROR_SUCCESS;
534 goto done;
536 if ((src->width != dst->width) || (src->height != dst->height))
538 ret = ERROR_TRANSFORM_NOT_SUPPORTED;
539 goto done;
542 init_dib_info_from_bitmapinfo( &src_dib, info, bits->ptr, 0 );
544 origin.x = src->visrect.left;
545 origin.y = src->visrect.top;
547 if (hbitmap)
549 total_clip = clip;
550 rop2 = R2_COPYPEN;
552 else
554 if (clip) saved_clip = add_extra_clipping_region( pdev, clip );
555 total_clip = pdev->clip;
556 rop2 = ((rop >> 16) & 0xf) + 1;
559 if (total_clip == NULL) dib->funcs->copy_rect( dib, &dst->visrect, &src_dib, &origin, rop2 );
560 else
562 clip_data = get_wine_region( total_clip );
563 for (i = 0; i < clip_data->numRects; i++)
565 RECT clipped_rect;
567 if (intersect_rect( &clipped_rect, &dst->visrect, clip_data->rects + i ))
569 origin.x = src->visrect.left + clipped_rect.left - dst->visrect.left;
570 origin.y = src->visrect.top + clipped_rect.top - dst->visrect.top;
571 dib->funcs->copy_rect( dib, &clipped_rect, &src_dib, &origin, rop2 );
574 release_wine_region( total_clip );
576 ret = ERROR_SUCCESS;
578 if (saved_clip) restore_clipping_region( pdev, saved_clip );
580 goto done;
582 update_format:
583 info->bmiHeader.biPlanes = 1;
584 info->bmiHeader.biBitCount = dib->bit_count;
585 set_color_info( dib, info );
586 ret = ERROR_BAD_FORMAT;
588 done:
589 if (hbitmap) GDI_ReleaseObj( hbitmap );
591 return ret;
594 /***********************************************************************
595 * dibdrv_SelectBitmap
597 static HBITMAP dibdrv_SelectBitmap( PHYSDEV dev, HBITMAP bitmap )
599 PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSelectBitmap );
600 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
601 BITMAPOBJ *bmp = GDI_GetObjPtr( bitmap, OBJ_BITMAP );
602 TRACE("(%p, %p)\n", dev, bitmap);
604 if (!bmp) return 0;
605 assert(bmp->dib);
607 pdev->clip = CreateRectRgn(0, 0, 0, 0);
608 pdev->defer = 0;
610 clear_dib_info(&pdev->dib);
611 clear_dib_info(&pdev->brush_dib);
612 pdev->brush_and_bits = pdev->brush_xor_bits = NULL;
614 if(!init_dib_info(&pdev->dib, &bmp->dib->dsBmih, bmp->dib->dsBitfields,
615 bmp->color_table, bmp->nb_colors, bmp->dib->dsBm.bmBits, private_color_table))
616 pdev->defer |= DEFER_FORMAT;
618 GDI_ReleaseObj( bitmap );
620 return next->funcs->pSelectBitmap( next, bitmap );
623 /***********************************************************************
624 * dibdrv_SetBkColor
626 static COLORREF dibdrv_SetBkColor( PHYSDEV dev, COLORREF color )
628 PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetBkColor );
629 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
631 pdev->bkgnd_color = pdev->dib.funcs->colorref_to_pixel( &pdev->dib, color );
633 if( GetBkMode(dev->hdc) == OPAQUE )
634 calc_and_xor_masks( GetROP2(dev->hdc), pdev->bkgnd_color, &pdev->bkgnd_and, &pdev->bkgnd_xor );
635 else
637 pdev->bkgnd_and = ~0u;
638 pdev->bkgnd_xor = 0;
641 update_fg_colors( pdev ); /* Only needed in the 1 bpp case */
643 return next->funcs->pSetBkColor( next, color );
646 /***********************************************************************
647 * dibdrv_SetBkMode
649 static INT dibdrv_SetBkMode( PHYSDEV dev, INT mode )
651 PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetBkMode );
652 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
654 if( mode == OPAQUE )
655 calc_and_xor_masks( GetROP2(dev->hdc), pdev->bkgnd_color, &pdev->bkgnd_and, &pdev->bkgnd_xor );
656 else
658 pdev->bkgnd_and = ~0u;
659 pdev->bkgnd_xor = 0;
662 return next->funcs->pSetBkMode( next, mode );
665 /***********************************************************************
666 * dibdrv_SetDeviceClipping
668 static void dibdrv_SetDeviceClipping( PHYSDEV dev, HRGN vis_rgn, HRGN clip_rgn )
670 PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetDeviceClipping );
671 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
672 TRACE("(%p, %p, %p)\n", dev, vis_rgn, clip_rgn);
674 CombineRgn( pdev->clip, vis_rgn, clip_rgn, clip_rgn ? RGN_AND : RGN_COPY );
675 return next->funcs->pSetDeviceClipping( next, vis_rgn, clip_rgn);
678 /***********************************************************************
679 * dibdrv_SetDIBColorTable
681 static UINT dibdrv_SetDIBColorTable( PHYSDEV dev, UINT pos, UINT count, const RGBQUAD *colors )
683 PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetDIBColorTable );
684 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
685 TRACE("(%p, %d, %d, %p)\n", dev, pos, count, colors);
687 if( pdev->dib.color_table && pos < pdev->dib.color_table_size )
689 if( pos + count > pdev->dib.color_table_size ) count = pdev->dib.color_table_size - pos;
690 memcpy( pdev->dib.color_table + pos, colors, count * sizeof(RGBQUAD) );
692 pdev->bkgnd_color = pdev->dib.funcs->colorref_to_pixel( &pdev->dib, GetBkColor( dev->hdc ) );
693 update_fg_colors( pdev );
695 update_masks( pdev, GetROP2( dev->hdc ) );
697 return next->funcs->pSetDIBColorTable( next, pos, count, colors );
700 /***********************************************************************
701 * dibdrv_SetROP2
703 static INT dibdrv_SetROP2( PHYSDEV dev, INT rop )
705 PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetROP2 );
706 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
708 update_masks( pdev, rop );
710 return next->funcs->pSetROP2( next, rop );
713 const DC_FUNCTIONS dib_driver =
715 NULL, /* pAbortDoc */
716 NULL, /* pAbortPath */
717 NULL, /* pAlphaBlend */
718 NULL, /* pAngleArc */
719 NULL, /* pArc */
720 NULL, /* pArcTo */
721 NULL, /* pBeginPath */
722 NULL, /* pChoosePixelFormat */
723 NULL, /* pChord */
724 NULL, /* pCloseFigure */
725 NULL, /* pCreateBitmap */
726 NULL, /* pCreateDC */
727 NULL, /* pCreateDIBSection */
728 NULL, /* pDeleteBitmap */
729 dibdrv_DeleteDC, /* pDeleteDC */
730 NULL, /* pDeleteObject */
731 NULL, /* pDescribePixelFormat */
732 NULL, /* pDeviceCapabilities */
733 NULL, /* pEllipse */
734 NULL, /* pEndDoc */
735 NULL, /* pEndPage */
736 NULL, /* pEndPath */
737 NULL, /* pEnumDeviceFonts */
738 NULL, /* pEnumICMProfiles */
739 NULL, /* pExcludeClipRect */
740 NULL, /* pExtDeviceMode */
741 NULL, /* pExtEscape */
742 NULL, /* pExtFloodFill */
743 NULL, /* pExtSelectClipRgn */
744 NULL, /* pExtTextOut */
745 NULL, /* pFillPath */
746 NULL, /* pFillRgn */
747 NULL, /* pFlattenPath */
748 NULL, /* pFrameRgn */
749 NULL, /* pGdiComment */
750 NULL, /* pGetCharWidth */
751 NULL, /* pGetDeviceCaps */
752 NULL, /* pGetDeviceGammaRamp */
753 NULL, /* pGetICMProfile */
754 dibdrv_GetImage, /* pGetImage */
755 NULL, /* pGetNearestColor */
756 NULL, /* pGetPixel */
757 NULL, /* pGetPixelFormat */
758 NULL, /* pGetSystemPaletteEntries */
759 NULL, /* pGetTextExtentExPoint */
760 NULL, /* pGetTextMetrics */
761 NULL, /* pIntersectClipRect */
762 NULL, /* pInvertRgn */
763 dibdrv_LineTo, /* pLineTo */
764 NULL, /* pModifyWorldTransform */
765 NULL, /* pMoveTo */
766 NULL, /* pOffsetClipRgn */
767 NULL, /* pOffsetViewportOrg */
768 NULL, /* pOffsetWindowOrg */
769 dibdrv_PaintRgn, /* pPaintRgn */
770 dibdrv_PatBlt, /* pPatBlt */
771 NULL, /* pPie */
772 NULL, /* pPolyBezier */
773 NULL, /* pPolyBezierTo */
774 NULL, /* pPolyDraw */
775 NULL, /* pPolyPolygon */
776 NULL, /* pPolyPolyline */
777 NULL, /* pPolygon */
778 NULL, /* pPolyline */
779 NULL, /* pPolylineTo */
780 dibdrv_PutImage, /* pPutImage */
781 NULL, /* pRealizeDefaultPalette */
782 NULL, /* pRealizePalette */
783 dibdrv_Rectangle, /* pRectangle */
784 NULL, /* pResetDC */
785 NULL, /* pRestoreDC */
786 NULL, /* pRoundRect */
787 NULL, /* pSaveDC */
788 NULL, /* pScaleViewportExt */
789 NULL, /* pScaleWindowExt */
790 dibdrv_SelectBitmap, /* pSelectBitmap */
791 dibdrv_SelectBrush, /* pSelectBrush */
792 NULL, /* pSelectClipPath */
793 NULL, /* pSelectFont */
794 NULL, /* pSelectPalette */
795 dibdrv_SelectPen, /* pSelectPen */
796 NULL, /* pSetArcDirection */
797 dibdrv_SetBkColor, /* pSetBkColor */
798 dibdrv_SetBkMode, /* pSetBkMode */
799 dibdrv_SetDCBrushColor, /* pSetDCBrushColor */
800 dibdrv_SetDCPenColor, /* pSetDCPenColor */
801 dibdrv_SetDIBColorTable, /* pSetDIBColorTable */
802 NULL, /* pSetDIBitsToDevice */
803 dibdrv_SetDeviceClipping, /* pSetDeviceClipping */
804 NULL, /* pSetDeviceGammaRamp */
805 NULL, /* pSetLayout */
806 NULL, /* pSetMapMode */
807 NULL, /* pSetMapperFlags */
808 NULL, /* pSetPixel */
809 NULL, /* pSetPixelFormat */
810 NULL, /* pSetPolyFillMode */
811 dibdrv_SetROP2, /* pSetROP2 */
812 NULL, /* pSetRelAbs */
813 NULL, /* pSetStretchBltMode */
814 NULL, /* pSetTextAlign */
815 NULL, /* pSetTextCharacterExtra */
816 NULL, /* pSetTextColor */
817 NULL, /* pSetTextJustification */
818 NULL, /* pSetViewportExt */
819 NULL, /* pSetViewportOrg */
820 NULL, /* pSetWindowExt */
821 NULL, /* pSetWindowOrg */
822 NULL, /* pSetWorldTransform */
823 NULL, /* pStartDoc */
824 NULL, /* pStartPage */
825 NULL, /* pStretchBlt */
826 NULL, /* pStretchDIBits */
827 NULL, /* pStrokeAndFillPath */
828 NULL, /* pStrokePath */
829 NULL, /* pSwapBuffers */
830 NULL, /* pUnrealizePalette */
831 NULL, /* pWidenPath */
832 NULL, /* pwglCopyContext */
833 NULL, /* pwglCreateContext */
834 NULL, /* pwglCreateContextAttribsARB */
835 NULL, /* pwglDeleteContext */
836 NULL, /* pwglGetPbufferDCARB */
837 NULL, /* pwglGetProcAddress */
838 NULL, /* pwglMakeContextCurrentARB */
839 NULL, /* pwglMakeCurrent */
840 NULL, /* pwglSetPixelFormatWINE */
841 NULL, /* pwglShareLists */
842 NULL, /* pwglUseFontBitmapsA */
843 NULL /* pwglUseFontBitmapsW */