Merge branch 'mesa_7_5_branch' into mesa_7_6_branch
[mesa.git] / src / gallium / auxiliary / util / u_simple_screen.c
1 /**************************************************************************
2 *
3 * Copyright 2009 VMware, Inc.
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 "u_simple_screen.h"
29
30 #include "pipe/p_screen.h"
31 #include "pipe/p_state.h"
32 #include "pipe/internal/p_winsys_screen.h"
33
34
35 static struct pipe_buffer *
36 pass_buffer_create(struct pipe_screen *screen,
37 unsigned alignment,
38 unsigned usage,
39 unsigned size)
40 {
41 struct pipe_buffer *buffer =
42 screen->winsys->buffer_create(screen->winsys, alignment, usage, size);
43
44 buffer->screen = screen;
45
46 return buffer;
47 }
48
49 static struct pipe_buffer *
50 pass_user_buffer_create(struct pipe_screen *screen,
51 void *ptr,
52 unsigned bytes)
53 {
54 struct pipe_buffer *buffer =
55 screen->winsys->user_buffer_create(screen->winsys,
56 ptr, bytes);
57
58 buffer->screen = screen;
59
60 return buffer;
61 }
62
63 static struct pipe_buffer *
64 pass_surface_buffer_create(struct pipe_screen *screen,
65 unsigned width, unsigned height,
66 enum pipe_format format,
67 unsigned usage,
68 unsigned tex_usage,
69 unsigned *stride)
70 {
71 struct pipe_buffer *buffer =
72 screen->winsys->surface_buffer_create(screen->winsys,
73 width, height,
74 format, usage, tex_usage, stride);
75
76 buffer->screen = screen;
77
78 return buffer;
79 }
80
81 static void *
82 pass_buffer_map(struct pipe_screen *screen,
83 struct pipe_buffer *buf,
84 unsigned usage)
85 {
86 return screen->winsys->buffer_map(screen->winsys,
87 buf, usage);
88 }
89
90 static void
91 pass_buffer_unmap(struct pipe_screen *screen,
92 struct pipe_buffer *buf)
93 {
94 screen->winsys->buffer_unmap(screen->winsys, buf);
95 }
96
97 static void
98 pass_buffer_destroy(struct pipe_buffer *buf)
99 {
100 buf->screen->winsys->buffer_destroy(buf);
101 }
102
103
104 static void
105 pass_flush_frontbuffer(struct pipe_screen *screen,
106 struct pipe_surface *surf,
107 void *context_private)
108 {
109 screen->winsys->flush_frontbuffer(screen->winsys,
110 surf, context_private);
111 }
112
113 static void
114 pass_fence_reference(struct pipe_screen *screen,
115 struct pipe_fence_handle **ptr,
116 struct pipe_fence_handle *fence)
117 {
118 screen->winsys->fence_reference(screen->winsys,
119 ptr, fence);
120 }
121
122 static int
123 pass_fence_signalled(struct pipe_screen *screen,
124 struct pipe_fence_handle *fence,
125 unsigned flag)
126 {
127 return screen->winsys->fence_signalled(screen->winsys,
128 fence, flag);
129 }
130
131 static int
132 pass_fence_finish(struct pipe_screen *screen,
133 struct pipe_fence_handle *fence,
134 unsigned flag)
135 {
136 return screen->winsys->fence_finish(screen->winsys,
137 fence, flag);
138 }
139
140 void u_simple_screen_init(struct pipe_screen *screen)
141 {
142 screen->buffer_create = pass_buffer_create;
143 screen->user_buffer_create = pass_user_buffer_create;
144 screen->surface_buffer_create = pass_surface_buffer_create;
145
146 screen->buffer_map = pass_buffer_map;
147 screen->buffer_unmap = pass_buffer_unmap;
148 screen->buffer_destroy = pass_buffer_destroy;
149 screen->flush_frontbuffer = pass_flush_frontbuffer;
150 screen->fence_reference = pass_fence_reference;
151 screen->fence_signalled = pass_fence_signalled;
152 screen->fence_finish = pass_fence_finish;
153 }
154
155 const char* u_simple_screen_winsys_name(struct pipe_screen *screen)
156 {
157 return screen->winsys->get_name(screen->winsys);
158 }