a1cfa1c34c5929cfd6e565eecce26e6c763846d2
[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/teximage.h"
40 #include "main/texobj.h"
41
42 #include "st_context.h"
43 #include "st_cb_texture.h"
44 #include "st_format.h"
45 #include "st_atom.h"
46 #include "st_texture.h"
47 #include "pipe/p_context.h"
48 #include "pipe/p_defines.h"
49
50 #include "cso_cache/cso_context.h"
51
52 #include "util/u_format.h"
53
54
55 /**
56 * Convert GLenum texcoord wrap tokens to pipe tokens.
57 */
58 static GLuint
59 gl_wrap_xlate(GLenum wrap)
60 {
61 switch (wrap) {
62 case GL_REPEAT:
63 return PIPE_TEX_WRAP_REPEAT;
64 case GL_CLAMP:
65 return PIPE_TEX_WRAP_CLAMP;
66 case GL_CLAMP_TO_EDGE:
67 return PIPE_TEX_WRAP_CLAMP_TO_EDGE;
68 case GL_CLAMP_TO_BORDER:
69 return PIPE_TEX_WRAP_CLAMP_TO_BORDER;
70 case GL_MIRRORED_REPEAT:
71 return PIPE_TEX_WRAP_MIRROR_REPEAT;
72 case GL_MIRROR_CLAMP_EXT:
73 return PIPE_TEX_WRAP_MIRROR_CLAMP;
74 case GL_MIRROR_CLAMP_TO_EDGE_EXT:
75 return PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE;
76 case GL_MIRROR_CLAMP_TO_BORDER_EXT:
77 return PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER;
78 default:
79 assert(0);
80 return 0;
81 }
82 }
83
84
85 static GLuint
86 gl_filter_to_mip_filter(GLenum filter)
87 {
88 switch (filter) {
89 case GL_NEAREST:
90 case GL_LINEAR:
91 return PIPE_TEX_MIPFILTER_NONE;
92
93 case GL_NEAREST_MIPMAP_NEAREST:
94 case GL_LINEAR_MIPMAP_NEAREST:
95 return PIPE_TEX_MIPFILTER_NEAREST;
96
97 case GL_NEAREST_MIPMAP_LINEAR:
98 case GL_LINEAR_MIPMAP_LINEAR:
99 return PIPE_TEX_MIPFILTER_LINEAR;
100
101 default:
102 assert(0);
103 return PIPE_TEX_MIPFILTER_NONE;
104 }
105 }
106
107
108 static GLuint
109 gl_filter_to_img_filter(GLenum filter)
110 {
111 switch (filter) {
112 case GL_NEAREST:
113 case GL_NEAREST_MIPMAP_NEAREST:
114 case GL_NEAREST_MIPMAP_LINEAR:
115 return PIPE_TEX_FILTER_NEAREST;
116
117 case GL_LINEAR:
118 case GL_LINEAR_MIPMAP_NEAREST:
119 case GL_LINEAR_MIPMAP_LINEAR:
120 return PIPE_TEX_FILTER_LINEAR;
121
122 default:
123 assert(0);
124 return PIPE_TEX_FILTER_NEAREST;
125 }
126 }
127
128
129 static void
130 convert_sampler(struct st_context *st,
131 struct pipe_sampler_state *sampler,
132 GLuint texUnit)
133 {
134 const struct gl_texture_object *texobj;
135 struct gl_context *ctx = st->ctx;
136 const struct gl_sampler_object *msamp;
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 msamp = &texobj->Sampler;
143 } else {
144 msamp = _mesa_get_samplerobj(ctx, texUnit);
145 }
146
147 texBaseFormat = _mesa_texture_base_format(texobj);
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 const struct pipe_sampler_state *states[PIPE_MAX_SAMPLERS];
250
251 samplers_used = prog->SamplersUsed;
252
253 if (*num_samplers == 0 && samplers_used == 0x0)
254 return;
255
256 *num_samplers = 0;
257
258 /* loop over sampler units (aka tex image units) */
259 for (unit = 0; unit < max_units; unit++, samplers_used >>= 1) {
260 struct pipe_sampler_state *sampler = samplers + unit;
261
262 if (samplers_used & 1) {
263 const GLuint texUnit = prog->SamplerUnits[unit];
264
265 convert_sampler(st, sampler, texUnit);
266 states[unit] = sampler;
267 *num_samplers = unit + 1;
268 }
269 else if (samplers_used != 0 || unit < old_max) {
270 states[unit] = NULL;
271 }
272 else {
273 /* if we've reset all the old samplers and we have no more new ones */
274 break;
275 }
276 }
277
278 cso_set_samplers(st->cso_context, shader_stage, *num_samplers, states);
279 }
280
281
282 static void
283 update_samplers(struct st_context *st)
284 {
285 const struct gl_context *ctx = st->ctx;
286
287 update_shader_samplers(st,
288 PIPE_SHADER_FRAGMENT,
289 &ctx->FragmentProgram._Current->Base,
290 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits,
291 st->state.samplers[PIPE_SHADER_FRAGMENT],
292 &st->state.num_samplers[PIPE_SHADER_FRAGMENT]);
293
294 update_shader_samplers(st,
295 PIPE_SHADER_VERTEX,
296 &ctx->VertexProgram._Current->Base,
297 ctx->Const.Program[MESA_SHADER_VERTEX].MaxTextureImageUnits,
298 st->state.samplers[PIPE_SHADER_VERTEX],
299 &st->state.num_samplers[PIPE_SHADER_VERTEX]);
300
301 if (ctx->GeometryProgram._Current) {
302 update_shader_samplers(st,
303 PIPE_SHADER_GEOMETRY,
304 &ctx->GeometryProgram._Current->Base,
305 ctx->Const.Program[MESA_SHADER_GEOMETRY].MaxTextureImageUnits,
306 st->state.samplers[PIPE_SHADER_GEOMETRY],
307 &st->state.num_samplers[PIPE_SHADER_GEOMETRY]);
308 }
309 if (ctx->TessCtrlProgram._Current) {
310 update_shader_samplers(st,
311 PIPE_SHADER_TESS_CTRL,
312 &ctx->TessCtrlProgram._Current->Base,
313 ctx->Const.Program[MESA_SHADER_TESS_CTRL].MaxTextureImageUnits,
314 st->state.samplers[PIPE_SHADER_TESS_CTRL],
315 &st->state.num_samplers[PIPE_SHADER_TESS_CTRL]);
316 }
317 if (ctx->TessEvalProgram._Current) {
318 update_shader_samplers(st,
319 PIPE_SHADER_TESS_EVAL,
320 &ctx->TessEvalProgram._Current->Base,
321 ctx->Const.Program[MESA_SHADER_TESS_EVAL].MaxTextureImageUnits,
322 st->state.samplers[PIPE_SHADER_TESS_EVAL],
323 &st->state.num_samplers[PIPE_SHADER_TESS_EVAL]);
324 }
325 if (ctx->ComputeProgram._Current) {
326 update_shader_samplers(st,
327 PIPE_SHADER_COMPUTE,
328 &ctx->ComputeProgram._Current->Base,
329 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxTextureImageUnits,
330 st->state.samplers[PIPE_SHADER_COMPUTE],
331 &st->state.num_samplers[PIPE_SHADER_COMPUTE]);
332 }
333 }
334
335
336 const struct st_tracked_state st_update_sampler = {
337 "st_update_sampler", /* name */
338 { /* dirty */
339 _NEW_TEXTURE, /* mesa */
340 0, /* st */
341 },
342 update_samplers /* update */
343 };