0fea7f20a738785ea34acdefb5bc4227570a4f34
[mesa.git] / src / gallium / drivers / llvmpipe / lp_state_sampler.c
1 /**************************************************************************
2 *
3 * Copyright 2007 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 /* Authors:
29 * Brian Paul
30 */
31
32 #include "util/u_inlines.h"
33 #include "util/u_memory.h"
34
35 #include "draw/draw_context.h"
36
37 #include "lp_context.h"
38 #include "lp_context.h"
39 #include "lp_state.h"
40 #include "draw/draw_context.h"
41
42
43
44 static void *
45 llvmpipe_create_sampler_state(struct pipe_context *pipe,
46 const struct pipe_sampler_state *sampler)
47 {
48 return mem_dup(sampler, sizeof(*sampler));
49 }
50
51
52 static void
53 llvmpipe_bind_sampler_states(struct pipe_context *pipe,
54 unsigned num, void **sampler)
55 {
56 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
57 unsigned i;
58
59 assert(num <= PIPE_MAX_SAMPLERS);
60
61 /* Check for no-op */
62 if (num == llvmpipe->num_samplers &&
63 !memcmp(llvmpipe->sampler, sampler, num * sizeof(void *)))
64 return;
65
66 draw_flush(llvmpipe->draw);
67
68 for (i = 0; i < num; ++i)
69 llvmpipe->sampler[i] = sampler[i];
70 for (i = num; i < PIPE_MAX_SAMPLERS; ++i)
71 llvmpipe->sampler[i] = NULL;
72
73 llvmpipe->num_samplers = num;
74
75 llvmpipe->dirty |= LP_NEW_SAMPLER;
76 }
77
78
79 static void
80 llvmpipe_bind_vertex_sampler_states(struct pipe_context *pipe,
81 unsigned num_samplers,
82 void **samplers)
83 {
84 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
85 unsigned i;
86
87 assert(num_samplers <= PIPE_MAX_VERTEX_SAMPLERS);
88
89 /* Check for no-op */
90 if (num_samplers == llvmpipe->num_vertex_samplers &&
91 !memcmp(llvmpipe->vertex_samplers, samplers, num_samplers * sizeof(void *)))
92 return;
93
94 draw_flush(llvmpipe->draw);
95
96 for (i = 0; i < num_samplers; ++i)
97 llvmpipe->vertex_samplers[i] = samplers[i];
98 for (i = num_samplers; i < PIPE_MAX_VERTEX_SAMPLERS; ++i)
99 llvmpipe->vertex_samplers[i] = NULL;
100
101 llvmpipe->num_vertex_samplers = num_samplers;
102
103 draw_set_samplers(llvmpipe->draw,
104 llvmpipe->vertex_samplers,
105 llvmpipe->num_vertex_samplers);
106
107 llvmpipe->dirty |= LP_NEW_SAMPLER;
108 }
109
110
111 static void
112 llvmpipe_bind_geometry_sampler_states(struct pipe_context *pipe,
113 unsigned num, void **sampler)
114 {
115 /* XXX: implementation missing */
116 }
117
118 static void
119 llvmpipe_set_fragment_sampler_views(struct pipe_context *pipe,
120 unsigned num,
121 struct pipe_sampler_view **views)
122 {
123 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
124 uint i;
125
126 assert(num <= PIPE_MAX_SAMPLERS);
127
128 /* Check for no-op */
129 if (num == llvmpipe->num_fragment_sampler_views &&
130 !memcmp(llvmpipe->fragment_sampler_views, views, num * sizeof(struct pipe_sampler_view *)))
131 return;
132
133 draw_flush(llvmpipe->draw);
134
135 for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {
136 struct pipe_sampler_view *view = i < num ? views[i] : NULL;
137
138 pipe_sampler_view_reference(&llvmpipe->fragment_sampler_views[i], view);
139 }
140
141 llvmpipe->num_fragment_sampler_views = num;
142
143 llvmpipe->dirty |= LP_NEW_SAMPLER_VIEW;
144 }
145
146
147 static void
148 llvmpipe_set_vertex_sampler_views(struct pipe_context *pipe,
149 unsigned num,
150 struct pipe_sampler_view **views)
151 {
152 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
153 uint i;
154
155 assert(num <= PIPE_MAX_VERTEX_SAMPLERS);
156
157 /* Check for no-op */
158 if (num == llvmpipe->num_vertex_sampler_views &&
159 !memcmp(llvmpipe->vertex_sampler_views, views, num * sizeof(struct pipe_sampler_view *))) {
160 return;
161 }
162
163 draw_flush(llvmpipe->draw);
164
165 for (i = 0; i < PIPE_MAX_VERTEX_SAMPLERS; i++) {
166 struct pipe_sampler_view *view = i < num ? views[i] : NULL;
167
168 pipe_sampler_view_reference(&llvmpipe->vertex_sampler_views[i], view);
169 }
170
171 llvmpipe->num_vertex_sampler_views = num;
172
173 draw_set_sampler_views(llvmpipe->draw,
174 llvmpipe->vertex_sampler_views,
175 llvmpipe->num_vertex_sampler_views);
176
177 llvmpipe->dirty |= LP_NEW_SAMPLER_VIEW;
178 }
179
180
181 static void
182 llvmpipe_set_geometry_sampler_views(struct pipe_context *pipe,
183 unsigned num,
184 struct pipe_sampler_view **views)
185 {
186 /*XXX: implementation missing */
187 }
188
189 static struct pipe_sampler_view *
190 llvmpipe_create_sampler_view(struct pipe_context *pipe,
191 struct pipe_resource *texture,
192 const struct pipe_sampler_view *templ)
193 {
194 struct pipe_sampler_view *view = CALLOC_STRUCT(pipe_sampler_view);
195
196 if (view) {
197 *view = *templ;
198 view->reference.count = 1;
199 view->texture = NULL;
200 pipe_resource_reference(&view->texture, texture);
201 view->context = pipe;
202 }
203
204 return view;
205 }
206
207
208 static void
209 llvmpipe_sampler_view_destroy(struct pipe_context *pipe,
210 struct pipe_sampler_view *view)
211 {
212 pipe_resource_reference(&view->texture, NULL);
213 FREE(view);
214 }
215
216
217 static void
218 llvmpipe_delete_sampler_state(struct pipe_context *pipe,
219 void *sampler)
220 {
221 FREE( sampler );
222 }
223
224
225 void
226 llvmpipe_init_sampler_funcs(struct llvmpipe_context *llvmpipe)
227 {
228 llvmpipe->pipe.create_sampler_state = llvmpipe_create_sampler_state;
229
230 llvmpipe->pipe.bind_fragment_sampler_states = llvmpipe_bind_sampler_states;
231 llvmpipe->pipe.bind_vertex_sampler_states = llvmpipe_bind_vertex_sampler_states;
232 llvmpipe->pipe.bind_geometry_sampler_states = llvmpipe_bind_geometry_sampler_states;
233 llvmpipe->pipe.set_fragment_sampler_views = llvmpipe_set_fragment_sampler_views;
234 llvmpipe->pipe.set_vertex_sampler_views = llvmpipe_set_vertex_sampler_views;
235 llvmpipe->pipe.set_geometry_sampler_views = llvmpipe_set_geometry_sampler_views;
236 llvmpipe->pipe.create_sampler_view = llvmpipe_create_sampler_view;
237 llvmpipe->pipe.sampler_view_destroy = llvmpipe_sampler_view_destroy;
238 llvmpipe->pipe.delete_sampler_state = llvmpipe_delete_sampler_state;
239 }