17b536bf504425db4c383f8ba45e75c3f84f3250
[mesa.git] / src / mesa / state_tracker / st_atom_sampler.c
1 /**************************************************************************
2 *
3 * Copyright 2007 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 VMWARE 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 /*
29 * Authors:
30 * Keith Whitwell <keithw@vmware.com>
31 * Brian Paul
32 */
33
34
35 #include "main/macros.h"
36 #include "main/mtypes.h"
37 #include "main/glformats.h"
38 #include "main/samplerobj.h"
39 #include "main/texobj.h"
40
41 #include "st_context.h"
42 #include "st_cb_texture.h"
43 #include "st_format.h"
44 #include "st_atom.h"
45 #include "st_texture.h"
46 #include "pipe/p_context.h"
47 #include "pipe/p_defines.h"
48
49 #include "cso_cache/cso_context.h"
50
51 #include "util/u_format.h"
52
53
54 /**
55 * Convert GLenum texcoord wrap tokens to pipe tokens.
56 */
57 static GLuint
58 gl_wrap_xlate(GLenum wrap)
59 {
60 switch (wrap) {
61 case GL_REPEAT:
62 return PIPE_TEX_WRAP_REPEAT;
63 case GL_CLAMP:
64 return PIPE_TEX_WRAP_CLAMP;
65 case GL_CLAMP_TO_EDGE:
66 return PIPE_TEX_WRAP_CLAMP_TO_EDGE;
67 case GL_CLAMP_TO_BORDER:
68 return PIPE_TEX_WRAP_CLAMP_TO_BORDER;
69 case GL_MIRRORED_REPEAT:
70 return PIPE_TEX_WRAP_MIRROR_REPEAT;
71 case GL_MIRROR_CLAMP_EXT:
72 return PIPE_TEX_WRAP_MIRROR_CLAMP;
73 case GL_MIRROR_CLAMP_TO_EDGE_EXT:
74 return PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE;
75 case GL_MIRROR_CLAMP_TO_BORDER_EXT:
76 return PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER;
77 default:
78 assert(0);
79 return 0;
80 }
81 }
82
83
84 static GLuint
85 gl_filter_to_mip_filter(GLenum filter)
86 {
87 switch (filter) {
88 case GL_NEAREST:
89 case GL_LINEAR:
90 return PIPE_TEX_MIPFILTER_NONE;
91
92 case GL_NEAREST_MIPMAP_NEAREST:
93 case GL_LINEAR_MIPMAP_NEAREST:
94 return PIPE_TEX_MIPFILTER_NEAREST;
95
96 case GL_NEAREST_MIPMAP_LINEAR:
97 case GL_LINEAR_MIPMAP_LINEAR:
98 return PIPE_TEX_MIPFILTER_LINEAR;
99
100 default:
101 assert(0);
102 return PIPE_TEX_MIPFILTER_NONE;
103 }
104 }
105
106
107 static GLuint
108 gl_filter_to_img_filter(GLenum filter)
109 {
110 switch (filter) {
111 case GL_NEAREST:
112 case GL_NEAREST_MIPMAP_NEAREST:
113 case GL_NEAREST_MIPMAP_LINEAR:
114 return PIPE_TEX_FILTER_NEAREST;
115
116 case GL_LINEAR:
117 case GL_LINEAR_MIPMAP_NEAREST:
118 case GL_LINEAR_MIPMAP_LINEAR:
119 return PIPE_TEX_FILTER_LINEAR;
120
121 default:
122 assert(0);
123 return PIPE_TEX_FILTER_NEAREST;
124 }
125 }
126
127
128 static void
129 convert_sampler(struct st_context *st,
130 struct pipe_sampler_state *sampler,
131 GLuint texUnit)
132 {
133 const struct gl_texture_object *texobj;
134 struct gl_context *ctx = st->ctx;
135 struct gl_sampler_object *msamp;
136 const struct gl_texture_image *teximg;
137 GLenum texBaseFormat;
138
139 texobj = ctx->Texture.Unit[texUnit]._Current;
140 if (!texobj) {
141 texobj = _mesa_get_fallback_texture(ctx, TEXTURE_2D_INDEX);
142 }
143
144 teximg = texobj->Image[0][texobj->BaseLevel];
145 texBaseFormat = teximg ? teximg->_BaseFormat : GL_RGBA;
146
147 msamp = _mesa_get_samplerobj(ctx, texUnit);
148
149 memset(sampler, 0, sizeof(*sampler));
150 sampler->wrap_s = gl_wrap_xlate(msamp->WrapS);
151 sampler->wrap_t = gl_wrap_xlate(msamp->WrapT);
152 sampler->wrap_r = gl_wrap_xlate(msamp->WrapR);
153
154 sampler->min_img_filter = gl_filter_to_img_filter(msamp->MinFilter);
155 sampler->min_mip_filter = gl_filter_to_mip_filter(msamp->MinFilter);
156 sampler->mag_img_filter = gl_filter_to_img_filter(msamp->MagFilter);
157
158 if (texobj->Target != GL_TEXTURE_RECTANGLE_ARB)
159 sampler->normalized_coords = 1;
160
161 sampler->lod_bias = ctx->Texture.Unit[texUnit].LodBias + msamp->LodBias;
162
163 sampler->min_lod = MAX2(msamp->MinLod, 0.0f);
164 sampler->max_lod = msamp->MaxLod;
165 if (sampler->max_lod < sampler->min_lod) {
166 /* The GL spec doesn't seem to specify what to do in this case.
167 * Swap the values.
168 */
169 float tmp = sampler->max_lod;
170 sampler->max_lod = sampler->min_lod;
171 sampler->min_lod = tmp;
172 assert(sampler->min_lod <= sampler->max_lod);
173 }
174
175 /* For non-black borders... */
176 if (msamp->BorderColor.ui[0] ||
177 msamp->BorderColor.ui[1] ||
178 msamp->BorderColor.ui[2] ||
179 msamp->BorderColor.ui[3]) {
180 const struct st_texture_object *stobj = st_texture_object_const(texobj);
181 const GLboolean is_integer = texobj->_IsIntegerFormat;
182 const struct pipe_sampler_view *sv = NULL;
183 union pipe_color_union border_color;
184 GLuint i;
185
186 /* Just search for the first used view. We can do this because the
187 swizzle is per-texture, not per context. */
188 /* XXX: clean that up to not use the sampler view at all */
189 for (i = 0; i < stobj->num_sampler_views; ++i) {
190 if (stobj->sampler_views[i]) {
191 sv = stobj->sampler_views[i];
192 break;
193 }
194 }
195
196 if (st->apply_texture_swizzle_to_border_color && sv) {
197 const unsigned char swz[4] =
198 {
199 sv->swizzle_r,
200 sv->swizzle_g,
201 sv->swizzle_b,
202 sv->swizzle_a,
203 };
204
205 st_translate_color(&msamp->BorderColor,
206 &border_color,
207 texBaseFormat, is_integer);
208
209 util_format_apply_color_swizzle(&sampler->border_color,
210 &border_color, swz, is_integer);
211 } else {
212 st_translate_color(&msamp->BorderColor,
213 &sampler->border_color,
214 texBaseFormat, is_integer);
215 }
216 }
217
218 sampler->max_anisotropy = (msamp->MaxAnisotropy == 1.0 ?
219 0 : (GLuint) msamp->MaxAnisotropy);
220
221 /* If sampling a depth texture and using shadow comparison */
222 if ((texBaseFormat == GL_DEPTH_COMPONENT ||
223 texBaseFormat == GL_DEPTH_STENCIL) &&
224 msamp->CompareMode == GL_COMPARE_R_TO_TEXTURE) {
225 sampler->compare_mode = PIPE_TEX_COMPARE_R_TO_TEXTURE;
226 sampler->compare_func = st_compare_func_to_pipe(msamp->CompareFunc);
227 }
228
229 sampler->seamless_cube_map =
230 ctx->Texture.CubeMapSeamless || msamp->CubeMapSeamless;
231 }
232
233
234 /**
235 * Update the gallium driver's sampler state for fragment, vertex or
236 * geometry shader stage.
237 */
238 static void
239 update_shader_samplers(struct st_context *st,
240 unsigned shader_stage,
241 const struct gl_program *prog,
242 unsigned max_units,
243 struct pipe_sampler_state *samplers,
244 unsigned *num_samplers)
245 {
246 GLuint unit;
247 GLbitfield samplers_used;
248 const GLuint old_max = *num_samplers;
249
250 samplers_used = prog->SamplersUsed;
251
252 if (*num_samplers == 0 && samplers_used == 0x0)
253 return;
254
255 *num_samplers = 0;
256
257 /* loop over sampler units (aka tex image units) */
258 for (unit = 0; unit < max_units; unit++, samplers_used >>= 1) {
259 struct pipe_sampler_state *sampler = samplers + unit;
260
261 if (samplers_used & 1) {
262 const GLuint texUnit = prog->SamplerUnits[unit];
263
264 convert_sampler(st, sampler, texUnit);
265
266 *num_samplers = unit + 1;
267
268 cso_single_sampler(st->cso_context, shader_stage, unit, sampler);
269 }
270 else if (samplers_used != 0 || unit < old_max) {
271 cso_single_sampler(st->cso_context, shader_stage, unit, NULL);
272 }
273 else {
274 /* if we've reset all the old samplers and we have no more new ones */
275 break;
276 }
277 }
278
279 cso_single_sampler_done(st->cso_context, shader_stage);
280 }
281
282
283 static void
284 update_samplers(struct st_context *st)
285 {
286 const struct gl_context *ctx = st->ctx;
287
288 update_shader_samplers(st,
289 PIPE_SHADER_FRAGMENT,
290 &ctx->FragmentProgram._Current->Base,
291 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits,
292 st->state.samplers[PIPE_SHADER_FRAGMENT],
293 &st->state.num_samplers[PIPE_SHADER_FRAGMENT]);
294
295 update_shader_samplers(st,
296 PIPE_SHADER_VERTEX,
297 &ctx->VertexProgram._Current->Base,
298 ctx->Const.Program[MESA_SHADER_VERTEX].MaxTextureImageUnits,
299 st->state.samplers[PIPE_SHADER_VERTEX],
300 &st->state.num_samplers[PIPE_SHADER_VERTEX]);
301
302 if (ctx->GeometryProgram._Current) {
303 update_shader_samplers(st,
304 PIPE_SHADER_GEOMETRY,
305 &ctx->GeometryProgram._Current->Base,
306 ctx->Const.Program[MESA_SHADER_GEOMETRY].MaxTextureImageUnits,
307 st->state.samplers[PIPE_SHADER_GEOMETRY],
308 &st->state.num_samplers[PIPE_SHADER_GEOMETRY]);
309 }
310 }
311
312
313 const struct st_tracked_state st_update_sampler = {
314 "st_update_sampler", /* name */
315 { /* dirty */
316 _NEW_TEXTURE, /* mesa */
317 0, /* st */
318 },
319 update_samplers /* update */
320 };