wgl: split device structs, move swapbuffers to shared
[mesa.git] / src / gallium / state_trackers / wgl / shared / stw_device.c
1 /**************************************************************************
2 *
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include <windows.h>
29
30 #include "pipe/p_debug.h"
31 #include "pipe/p_winsys.h"
32 #include "pipe/p_screen.h"
33
34 #include "shared/stw_device.h"
35 #include "shared/stw_winsys.h"
36 #include "shared/stw_pixelformat.h"
37 #include "shared/stw_public.h"
38 #include "stw.h"
39
40
41 struct stw_device *stw_dev = NULL;
42
43
44 /**
45 * XXX: Dispatch pipe_winsys::flush_front_buffer to our
46 * stw_winsys::flush_front_buffer.
47 */
48 static void
49 st_flush_frontbuffer(struct pipe_winsys *ws,
50 struct pipe_surface *surf,
51 void *context_private )
52 {
53 const struct stw_winsys *stw_winsys = stw_dev->stw_winsys;
54 struct pipe_winsys *winsys = stw_dev->screen->winsys;
55 HDC hdc = (HDC)context_private;
56
57 stw_winsys->flush_frontbuffer(winsys, surf, hdc);
58 }
59
60
61 boolean
62 stw_shared_init(const struct stw_winsys *stw_winsys)
63 {
64 static struct stw_device stw_dev_storage;
65
66 assert(!stw_dev);
67
68 stw_dev = &stw_dev_storage;
69 memset(stw_dev, 0, sizeof(*stw_dev));
70
71 stw_dev->stw_winsys = stw_winsys;
72
73 stw_dev->screen = stw_winsys->create_screen();
74 if(!stw_dev->screen)
75 goto error1;
76
77 /* XXX: pipe_winsys::flush_frontbuffer should go away */
78 stw_dev->screen->winsys->flush_frontbuffer = st_flush_frontbuffer;
79
80 pixelformat_init();
81
82 return TRUE;
83
84 error1:
85 stw_dev = NULL;
86 return FALSE;
87 }
88
89
90 void
91 stw_shared_cleanup(void)
92 {
93 stw_dev = NULL;
94 }