gdi32: Always store a DIBSECTION structure in the bitmap object.
[wine/multimedia.git] / dlls / gdi32 / dibdrv / dc.c
blobe15d359eb20685e704224af96514fb93bc740051
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/exception.h"
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(dib);
31 static const DWORD bit_fields_888[3] = {0xff0000, 0x00ff00, 0x0000ff};
32 static const DWORD bit_fields_555[3] = {0x7c00, 0x03e0, 0x001f};
34 static void calc_shift_and_len(DWORD mask, int *shift, int *len)
36 int s, l;
38 if(!mask)
40 *shift = *len = 0;
41 return;
44 s = 0;
45 while ((mask & 1) == 0)
47 mask >>= 1;
48 s++;
50 l = 0;
51 while ((mask & 1) == 1)
53 mask >>= 1;
54 l++;
56 *shift = s;
57 *len = l;
60 static void init_bit_fields(dib_info *dib, const DWORD *bit_fields)
62 dib->red_mask = bit_fields[0];
63 dib->green_mask = bit_fields[1];
64 dib->blue_mask = bit_fields[2];
65 calc_shift_and_len(dib->red_mask, &dib->red_shift, &dib->red_len);
66 calc_shift_and_len(dib->green_mask, &dib->green_shift, &dib->green_len);
67 calc_shift_and_len(dib->blue_mask, &dib->blue_shift, &dib->blue_len);
70 static void init_dib_info(dib_info *dib, const BITMAPINFOHEADER *bi, const DWORD *bit_fields,
71 const RGBQUAD *color_table, void *bits, enum dib_info_flags flags)
73 dib->bit_count = bi->biBitCount;
74 dib->width = bi->biWidth;
75 dib->height = bi->biHeight;
76 dib->compression = bi->biCompression;
77 dib->stride = get_dib_stride( dib->width, dib->bit_count );
78 dib->bits.ptr = bits;
79 dib->bits.is_copy = FALSE;
80 dib->bits.free = NULL;
81 dib->bits.param = NULL;
83 if(dib->height < 0) /* top-down */
85 dib->height = -dib->height;
87 else /* bottom-up */
89 /* bits always points to the top-left corner and the stride is -ve */
90 dib->bits.ptr = (BYTE*)dib->bits.ptr + (dib->height - 1) * dib->stride;
91 dib->stride = -dib->stride;
94 dib->funcs = &funcs_null;
96 switch(dib->bit_count)
98 case 32:
99 if(bi->biCompression == BI_RGB)
100 bit_fields = bit_fields_888;
102 init_bit_fields(dib, bit_fields);
104 if(dib->red_mask == 0xff0000 && dib->green_mask == 0x00ff00 && dib->blue_mask == 0x0000ff)
105 dib->funcs = &funcs_8888;
106 else
107 dib->funcs = &funcs_32;
108 break;
110 case 24:
111 dib->funcs = &funcs_24;
112 break;
114 case 16:
115 if(bi->biCompression == BI_RGB)
116 bit_fields = bit_fields_555;
118 init_bit_fields(dib, bit_fields);
120 if(dib->red_mask == 0x7c00 && dib->green_mask == 0x03e0 && dib->blue_mask == 0x001f)
121 dib->funcs = &funcs_555;
122 else
123 dib->funcs = &funcs_16;
124 break;
126 case 8:
127 dib->funcs = &funcs_8;
128 break;
130 case 4:
131 dib->funcs = &funcs_4;
132 break;
134 case 1:
135 dib->funcs = &funcs_1;
136 break;
139 if (color_table && bi->biClrUsed)
141 dib->color_table = color_table;
142 dib->color_table_size = bi->biClrUsed;
144 else if (flags & default_color_table)
146 dib->color_table = get_default_color_table( dib->bit_count );
147 dib->color_table_size = dib->color_table ? (1 << dib->bit_count) : 0;
149 else
151 dib->color_table = NULL;
152 dib->color_table_size = 0;
156 void init_dib_info_from_bitmapinfo(dib_info *dib, const BITMAPINFO *info, void *bits, enum dib_info_flags flags)
158 init_dib_info( dib, &info->bmiHeader, (const DWORD *)info->bmiColors, info->bmiColors, bits, flags );
161 BOOL init_dib_info_from_bitmapobj(dib_info *dib, BITMAPOBJ *bmp, enum dib_info_flags flags)
163 if (!is_bitmapobj_dib( bmp ))
165 BITMAPINFO info;
167 get_ddb_bitmapinfo( bmp, &info );
168 if (!bmp->bitmap.bmBits)
170 int width_bytes = get_dib_stride( bmp->bitmap.bmWidth, bmp->bitmap.bmBitsPixel );
171 bmp->bitmap.bmBits = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
172 bmp->bitmap.bmHeight * width_bytes );
173 if (!bmp->bitmap.bmBits) return FALSE;
175 init_dib_info_from_bitmapinfo( dib, &info, bmp->bitmap.bmBits, flags );
177 else init_dib_info( dib, &bmp->dib.dsBmih, bmp->dib.dsBitfields,
178 bmp->color_table, bmp->dib.dsBm.bmBits, flags );
179 return TRUE;
182 static void clear_dib_info(dib_info *dib)
184 dib->color_table = NULL;
185 dib->bits.ptr = NULL;
186 dib->bits.free = NULL;
187 dib->bits.param = NULL;
190 /**********************************************************************
191 * free_dib_info
193 * Free the resources associated with a dib and optionally the bits
195 void free_dib_info(dib_info *dib)
197 if (dib->bits.free) dib->bits.free( &dib->bits );
198 clear_dib_info( dib );
201 void copy_dib_color_info(dib_info *dst, const dib_info *src)
203 dst->bit_count = src->bit_count;
204 dst->red_mask = src->red_mask;
205 dst->green_mask = src->green_mask;
206 dst->blue_mask = src->blue_mask;
207 dst->red_len = src->red_len;
208 dst->green_len = src->green_len;
209 dst->blue_len = src->blue_len;
210 dst->red_shift = src->red_shift;
211 dst->green_shift = src->green_shift;
212 dst->blue_shift = src->blue_shift;
213 dst->funcs = src->funcs;
214 dst->color_table_size = src->color_table_size;
215 dst->color_table = src->color_table;
218 DWORD convert_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, struct bitblt_coords *src,
219 const BITMAPINFO *dst_info, void *dst_bits, BOOL add_alpha )
221 dib_info src_dib, dst_dib;
222 DWORD ret;
224 init_dib_info_from_bitmapinfo( &src_dib, src_info, src_bits, default_color_table );
225 init_dib_info_from_bitmapinfo( &dst_dib, dst_info, dst_bits, default_color_table );
227 __TRY
229 dst_dib.funcs->convert_to( &dst_dib, &src_dib, &src->visrect );
230 ret = TRUE;
232 __EXCEPT_PAGE_FAULT
234 WARN( "invalid bits pointer %p\n", src_bits );
235 ret = FALSE;
237 __ENDTRY
239 /* We shared the color tables, so there's no need to free the dib_infos here */
240 if(!ret) return ERROR_BAD_FORMAT;
242 /* update coordinates, the destination rectangle is always stored at 0,0 */
243 src->x -= src->visrect.left;
244 src->y -= src->visrect.top;
245 offset_rect( &src->visrect, -src->visrect.left, -src->visrect.top );
247 if (add_alpha && dst_dib.funcs == &funcs_8888 && src_dib.funcs != &funcs_8888)
249 DWORD *pixel = dst_dib.bits.ptr;
250 int x, y;
252 for (y = src->visrect.top; y < src->visrect.bottom; y++, pixel += dst_dib.stride / 4)
253 for (x = src->visrect.left; x < src->visrect.right; x++)
254 pixel[x] |= 0xff000000;
257 return ERROR_SUCCESS;
260 int get_clipped_rects( const dib_info *dib, const RECT *rc, HRGN clip, struct clipped_rects *clip_rects )
262 const WINEREGION *region;
263 RECT rect, *out = clip_rects->buffer;
264 int i;
266 init_clipped_rects( clip_rects );
268 rect.left = 0;
269 rect.top = 0;
270 rect.right = dib->width;
271 rect.bottom = dib->height;
272 if (rc && !intersect_rect( &rect, &rect, rc )) return 0;
274 if (!clip)
276 *out = rect;
277 clip_rects->count = 1;
278 return 1;
281 if (!(region = get_wine_region( clip ))) return 0;
283 for (i = 0; i < region->numRects; i++)
285 if (region->rects[i].top >= rect.bottom) break;
286 if (!intersect_rect( out, &rect, &region->rects[i] )) continue;
287 out++;
288 if (out == &clip_rects->buffer[sizeof(clip_rects->buffer) / sizeof(RECT)])
290 clip_rects->rects = HeapAlloc( GetProcessHeap(), 0, region->numRects * sizeof(RECT) );
291 if (!clip_rects->rects) return 0;
292 memcpy( clip_rects->rects, clip_rects->buffer, (out - clip_rects->buffer) * sizeof(RECT) );
293 out = clip_rects->rects + (out - clip_rects->buffer);
296 release_wine_region( clip );
297 clip_rects->count = out - clip_rects->rects;
298 return clip_rects->count;
301 /**********************************************************************
302 * dibdrv_CreateDC
304 static BOOL dibdrv_CreateDC( PHYSDEV *dev, LPCWSTR driver, LPCWSTR device,
305 LPCWSTR output, const DEVMODEW *data )
307 dibdrv_physdev *pdev = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*pdev) );
309 if (!pdev) return FALSE;
310 clear_dib_info(&pdev->dib);
311 clear_dib_info(&pdev->brush.dib);
312 clear_dib_info(&pdev->pen_brush.dib);
313 push_dc_driver( dev, &pdev->dev, &dib_driver );
314 return TRUE;
317 /***********************************************************************
318 * dibdrv_DeleteDC
320 static BOOL dibdrv_DeleteDC( PHYSDEV dev )
322 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
323 TRACE("(%p)\n", dev);
324 free_pattern_brush( &pdev->brush );
325 free_pattern_brush( &pdev->pen_brush );
326 HeapFree( GetProcessHeap(), 0, pdev );
327 return TRUE;
330 /***********************************************************************
331 * dibdrv_CopyBitmap
333 static BOOL dibdrv_CopyBitmap( HBITMAP src, HBITMAP dst )
335 return nulldrv_CopyBitmap( src, dst );
338 /***********************************************************************
339 * dibdrv_DeleteBitmap
341 static BOOL dibdrv_DeleteBitmap( HBITMAP bitmap )
343 return TRUE;
346 /***********************************************************************
347 * dibdrv_SelectBitmap
349 static HBITMAP dibdrv_SelectBitmap( PHYSDEV dev, HBITMAP bitmap )
351 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
352 BITMAPOBJ *bmp = GDI_GetObjPtr( bitmap, OBJ_BITMAP );
353 dib_info dib;
355 TRACE("(%p, %p)\n", dev, bitmap);
357 if (!bmp) return 0;
359 if(!init_dib_info_from_bitmapobj(&dib, bmp, default_color_table))
361 GDI_ReleaseObj( bitmap );
362 return 0;
364 pdev->dib = dib;
365 GDI_ReleaseObj( bitmap );
367 return bitmap;
370 /***********************************************************************
371 * dibdrv_SetDeviceClipping
373 static void dibdrv_SetDeviceClipping( PHYSDEV dev, HRGN rgn )
375 dibdrv_physdev *pdev = get_dibdrv_pdev(dev);
376 TRACE("(%p, %p)\n", dev, rgn);
378 pdev->clip = rgn;
381 /***********************************************************************
382 * dibdrv_ChoosePixelFormat
384 static INT dibdrv_ChoosePixelFormat( PHYSDEV dev, const PIXELFORMATDESCRIPTOR *pfd )
386 FIXME( "Not supported on DIB section\n" );
387 return 0;
390 /***********************************************************************
391 * dibdrv_DescribePixelFormat
393 static INT dibdrv_DescribePixelFormat( PHYSDEV dev, INT fmt, UINT size, PIXELFORMATDESCRIPTOR *pfd )
395 FIXME( "Not supported on DIB section\n" );
396 return 0;
399 /***********************************************************************
400 * dibdrv_ExtEscape
402 static INT dibdrv_ExtEscape( PHYSDEV dev, INT escape, INT in_size, const void *in_data,
403 INT out_size, void *out_data )
405 return 0;
408 /***********************************************************************
409 * dibdrv_GetDeviceGammaRamp
411 static BOOL dibdrv_GetDeviceGammaRamp( PHYSDEV dev, void *ramp )
413 SetLastError( ERROR_INVALID_PARAMETER );
414 return FALSE;
417 /***********************************************************************
418 * dibdrv_GetPixelFormat
420 static INT dibdrv_GetPixelFormat( PHYSDEV dev )
422 FIXME( "Not supported on DIB section\n" );
423 return 0;
426 /***********************************************************************
427 * dibdrv_SetDeviceGammaRamp
429 static BOOL dibdrv_SetDeviceGammaRamp( PHYSDEV dev, void *ramp )
431 SetLastError( ERROR_INVALID_PARAMETER );
432 return FALSE;
435 /***********************************************************************
436 * dibdrv_SetPixelFormat
438 static BOOL dibdrv_SetPixelFormat( PHYSDEV dev, INT fmt, const PIXELFORMATDESCRIPTOR *pfd )
440 FIXME( "Not supported on DIB section\n" );
441 return FALSE;
444 /***********************************************************************
445 * dibdrv_SwapBuffers
447 static BOOL dibdrv_SwapBuffers( PHYSDEV dev )
449 FIXME( "Not supported on DIB section\n" );
450 return FALSE;
453 /***********************************************************************
454 * dibdrv_wglCopyContext
456 static BOOL dibdrv_wglCopyContext( HGLRC src, HGLRC dst, UINT mask )
458 FIXME( "Not supported on DIB section\n" );
459 return FALSE;
462 /***********************************************************************
463 * dibdrv_wglCreateContext
465 static HGLRC dibdrv_wglCreateContext( PHYSDEV dev )
467 FIXME( "Not supported on DIB section\n" );
468 return 0;
471 /***********************************************************************
472 * dibdrv_wglCreateContextAttribsARB
474 static HGLRC dibdrv_wglCreateContextAttribsARB( PHYSDEV dev, HGLRC ctx, const int *attribs )
476 FIXME( "Not supported on DIB section\n" );
477 return 0;
480 /***********************************************************************
481 * dibdrv_wglDeleteContext
483 static BOOL dibdrv_wglDeleteContext( HGLRC ctx )
485 FIXME( "Not supported on DIB section\n" );
486 return FALSE;
489 /***********************************************************************
490 * dibdrv_wglGetPbufferDCARB
492 static HDC dibdrv_wglGetPbufferDCARB( PHYSDEV dev, void *buffer )
494 FIXME( "Not supported on DIB section\n" );
495 return 0;
498 /***********************************************************************
499 * dibdrv_wglGetProcAddress
501 static PROC dibdrv_wglGetProcAddress( LPCSTR name )
503 FIXME( "Not supported on DIB section\n" );
504 return NULL;
507 /***********************************************************************
508 * dibdrv_wglMakeContextCurrentARB
510 static BOOL dibdrv_wglMakeContextCurrentARB( PHYSDEV draw_dev, PHYSDEV read_dev, HGLRC ctx )
512 FIXME( "Not supported on DIB section\n" );
513 return FALSE;
516 /***********************************************************************
517 * dibdrv_wglMakeCurrent
519 static BOOL dibdrv_wglMakeCurrent( PHYSDEV dev, HGLRC ctx )
521 FIXME( "Not supported on DIB section\n" );
522 return FALSE;
525 /***********************************************************************
526 * dibdrv_wglSetPixelFormatWINE
528 static BOOL dibdrv_wglSetPixelFormatWINE( PHYSDEV dev, INT fmt, const PIXELFORMATDESCRIPTOR *pfd )
530 FIXME( "Not supported on DIB section\n" );
531 return FALSE;
534 /***********************************************************************
535 * dibdrv_wglShareLists
537 static BOOL dibdrv_wglShareLists( HGLRC ctx1, HGLRC ctx2 )
539 FIXME( "Not supported on DIB section\n" );
540 return FALSE;
543 /***********************************************************************
544 * dibdrv_wglUseFontBitmapsA
546 static BOOL dibdrv_wglUseFontBitmapsA( PHYSDEV dev, DWORD first, DWORD count, DWORD base )
548 FIXME( "Not supported on DIB section\n" );
549 return FALSE;
552 /***********************************************************************
553 * dibdrv_wglUseFontBitmapsW
555 static BOOL dibdrv_wglUseFontBitmapsW( PHYSDEV dev, DWORD first, DWORD count, DWORD base )
557 FIXME( "Not supported on DIB section\n" );
558 return FALSE;
561 const struct gdi_dc_funcs dib_driver =
563 NULL, /* pAbortDoc */
564 NULL, /* pAbortPath */
565 dibdrv_AlphaBlend, /* pAlphaBlend */
566 NULL, /* pAngleArc */
567 dibdrv_Arc, /* pArc */
568 dibdrv_ArcTo, /* pArcTo */
569 NULL, /* pBeginPath */
570 dibdrv_BlendImage, /* pBlendImage */
571 dibdrv_ChoosePixelFormat, /* pChoosePixelFormat */
572 dibdrv_Chord, /* pChord */
573 NULL, /* pCloseFigure */
574 dibdrv_CopyBitmap, /* pCopyBitmap */
575 NULL, /* pCreateBitmap */
576 NULL, /* pCreateCompatibleDC */
577 dibdrv_CreateDC, /* pCreateDC */
578 NULL, /* pCreateDIBSection */
579 dibdrv_DeleteBitmap, /* pDeleteBitmap */
580 dibdrv_DeleteDC, /* pDeleteDC */
581 NULL, /* pDeleteObject */
582 dibdrv_DescribePixelFormat, /* pDescribePixelFormat */
583 NULL, /* pDeviceCapabilities */
584 dibdrv_Ellipse, /* pEllipse */
585 NULL, /* pEndDoc */
586 NULL, /* pEndPage */
587 NULL, /* pEndPath */
588 NULL, /* pEnumFonts */
589 NULL, /* pEnumICMProfiles */
590 NULL, /* pExcludeClipRect */
591 NULL, /* pExtDeviceMode */
592 dibdrv_ExtEscape, /* pExtEscape */
593 dibdrv_ExtFloodFill, /* pExtFloodFill */
594 NULL, /* pExtSelectClipRgn */
595 dibdrv_ExtTextOut, /* pExtTextOut */
596 NULL, /* pFillPath */
597 NULL, /* pFillRgn */
598 NULL, /* pFlattenPath */
599 NULL, /* pFontIsLinked */
600 NULL, /* pFrameRgn */
601 NULL, /* pGdiComment */
602 NULL, /* pGdiRealizationInfo */
603 NULL, /* pGetCharABCWidths */
604 NULL, /* pGetCharABCWidthsI */
605 NULL, /* pGetCharWidth */
606 NULL, /* pGetDeviceCaps */
607 dibdrv_GetDeviceGammaRamp, /* pGetDeviceGammaRamp */
608 NULL, /* pGetFontData */
609 NULL, /* pGetFontUnicodeRanges */
610 NULL, /* pGetGlyphIndices */
611 NULL, /* pGetGlyphOutline */
612 NULL, /* pGetICMProfile */
613 dibdrv_GetImage, /* pGetImage */
614 NULL, /* pGetKerningPairs */
615 dibdrv_GetNearestColor, /* pGetNearestColor */
616 NULL, /* pGetOutlineTextMetrics */
617 dibdrv_GetPixel, /* pGetPixel */
618 dibdrv_GetPixelFormat, /* pGetPixelFormat */
619 NULL, /* pGetSystemPaletteEntries */
620 NULL, /* pGetTextCharsetInfo */
621 NULL, /* pGetTextExtentExPoint */
622 NULL, /* pGetTextExtentExPointI */
623 NULL, /* pGetTextFace */
624 NULL, /* pGetTextMetrics */
625 dibdrv_GradientFill, /* pGradientFill */
626 NULL, /* pIntersectClipRect */
627 NULL, /* pInvertRgn */
628 dibdrv_LineTo, /* pLineTo */
629 NULL, /* pModifyWorldTransform */
630 NULL, /* pMoveTo */
631 NULL, /* pOffsetClipRgn */
632 NULL, /* pOffsetViewportOrg */
633 NULL, /* pOffsetWindowOrg */
634 dibdrv_PaintRgn, /* pPaintRgn */
635 dibdrv_PatBlt, /* pPatBlt */
636 dibdrv_Pie, /* pPie */
637 NULL, /* pPolyBezier */
638 NULL, /* pPolyBezierTo */
639 NULL, /* pPolyDraw */
640 dibdrv_PolyPolygon, /* pPolyPolygon */
641 dibdrv_PolyPolyline, /* pPolyPolyline */
642 dibdrv_Polygon, /* pPolygon */
643 dibdrv_Polyline, /* pPolyline */
644 NULL, /* pPolylineTo */
645 dibdrv_PutImage, /* pPutImage */
646 NULL, /* pRealizeDefaultPalette */
647 NULL, /* pRealizePalette */
648 dibdrv_Rectangle, /* pRectangle */
649 NULL, /* pResetDC */
650 NULL, /* pRestoreDC */
651 dibdrv_RoundRect, /* pRoundRect */
652 NULL, /* pSaveDC */
653 NULL, /* pScaleViewportExt */
654 NULL, /* pScaleWindowExt */
655 dibdrv_SelectBitmap, /* pSelectBitmap */
656 dibdrv_SelectBrush, /* pSelectBrush */
657 NULL, /* pSelectClipPath */
658 NULL, /* pSelectFont */
659 NULL, /* pSelectPalette */
660 dibdrv_SelectPen, /* pSelectPen */
661 NULL, /* pSetArcDirection */
662 NULL, /* pSetBkColor */
663 NULL, /* pSetBkMode */
664 dibdrv_SetDCBrushColor, /* pSetDCBrushColor */
665 dibdrv_SetDCPenColor, /* pSetDCPenColor */
666 NULL, /* pSetDIBitsToDevice */
667 dibdrv_SetDeviceClipping, /* pSetDeviceClipping */
668 dibdrv_SetDeviceGammaRamp, /* pSetDeviceGammaRamp */
669 NULL, /* pSetLayout */
670 NULL, /* pSetMapMode */
671 NULL, /* pSetMapperFlags */
672 dibdrv_SetPixel, /* pSetPixel */
673 dibdrv_SetPixelFormat, /* pSetPixelFormat */
674 NULL, /* pSetPolyFillMode */
675 NULL, /* pSetROP2 */
676 NULL, /* pSetRelAbs */
677 NULL, /* pSetStretchBltMode */
678 NULL, /* pSetTextAlign */
679 NULL, /* pSetTextCharacterExtra */
680 NULL, /* pSetTextColor */
681 NULL, /* pSetTextJustification */
682 NULL, /* pSetViewportExt */
683 NULL, /* pSetViewportOrg */
684 NULL, /* pSetWindowExt */
685 NULL, /* pSetWindowOrg */
686 NULL, /* pSetWorldTransform */
687 NULL, /* pStartDoc */
688 NULL, /* pStartPage */
689 dibdrv_StretchBlt, /* pStretchBlt */
690 NULL, /* pStretchDIBits */
691 NULL, /* pStrokeAndFillPath */
692 NULL, /* pStrokePath */
693 dibdrv_SwapBuffers, /* pSwapBuffers */
694 NULL, /* pUnrealizePalette */
695 NULL, /* pWidenPath */
696 dibdrv_wglCopyContext, /* pwglCopyContext */
697 dibdrv_wglCreateContext, /* pwglCreateContext */
698 dibdrv_wglCreateContextAttribsARB, /* pwglCreateContextAttribsARB */
699 dibdrv_wglDeleteContext, /* pwglDeleteContext */
700 dibdrv_wglGetPbufferDCARB, /* pwglGetPbufferDCARB */
701 dibdrv_wglGetProcAddress, /* pwglGetProcAddress */
702 dibdrv_wglMakeContextCurrentARB, /* pwglMakeContextCurrentARB */
703 dibdrv_wglMakeCurrent, /* pwglMakeCurrent */
704 dibdrv_wglSetPixelFormatWINE, /* pwglSetPixelFormatWINE */
705 dibdrv_wglShareLists, /* pwglShareLists */
706 dibdrv_wglUseFontBitmapsA, /* pwglUseFontBitmapsA */
707 dibdrv_wglUseFontBitmapsW, /* pwglUseFontBitmapsW */