• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/context.h"
36 #include "main/macros.h"
37 #include "main/mtypes.h"
38 #include "main/samplerobj.h"
39 #include "main/teximage.h"
40 #include "main/texobj.h"
41 #include "program/prog_instruction.h"
42 
43 #include "st_context.h"
44 #include "st_atom.h"
45 #include "st_sampler_view.h"
46 #include "st_texture.h"
47 #include "st_format.h"
48 #include "st_cb_texture.h"
49 #include "pipe/p_context.h"
50 #include "util/format/u_format.h"
51 #include "util/u_inlines.h"
52 #include "cso_cache/cso_context.h"
53 
54 
55 /**
56  * Get a pipe_sampler_view object from a texture unit.
57  */
58 void
st_update_single_texture(struct st_context * st,struct pipe_sampler_view ** sampler_view,GLuint texUnit,bool glsl130_or_later,bool ignore_srgb_decode)59 st_update_single_texture(struct st_context *st,
60                          struct pipe_sampler_view **sampler_view,
61                          GLuint texUnit, bool glsl130_or_later,
62                          bool ignore_srgb_decode)
63 {
64    struct gl_context *ctx = st->ctx;
65    const struct gl_sampler_object *samp;
66    struct gl_texture_object *texObj;
67    struct st_texture_object *stObj;
68 
69    samp = _mesa_get_samplerobj(ctx, texUnit);
70 
71    texObj = ctx->Texture.Unit[texUnit]._Current;
72    assert(texObj);
73 
74    stObj = st_texture_object(texObj);
75 
76    if (unlikely(texObj->Target == GL_TEXTURE_BUFFER)) {
77       *sampler_view = st_get_buffer_sampler_view_from_stobj(st, stObj);
78       return;
79    }
80 
81    if (!st_finalize_texture(ctx, st->pipe, texObj, 0) ||
82        !stObj->pt) {
83       /* out of mem */
84       *sampler_view = NULL;
85       return;
86    }
87 
88    if (texObj->TargetIndex == TEXTURE_EXTERNAL_INDEX &&
89        stObj->pt->screen->resource_changed)
90          stObj->pt->screen->resource_changed(stObj->pt->screen, stObj->pt);
91 
92    *sampler_view =
93       st_get_texture_sampler_view_from_stobj(st, stObj, samp,
94                                              glsl130_or_later,
95                                              ignore_srgb_decode);
96 }
97 
98 
99 
100 static void
update_textures(struct st_context * st,enum pipe_shader_type shader_stage,const struct gl_program * prog,struct pipe_sampler_view ** sampler_views)101 update_textures(struct st_context *st,
102                 enum pipe_shader_type shader_stage,
103                 const struct gl_program *prog,
104                 struct pipe_sampler_view **sampler_views)
105 {
106    const GLuint old_max = st->state.num_sampler_views[shader_stage];
107    GLbitfield samplers_used = prog->SamplersUsed;
108    GLbitfield texel_fetch_samplers = prog->info.textures_used_by_txf;
109    GLbitfield free_slots = ~prog->SamplersUsed;
110    GLbitfield external_samplers_used = prog->ExternalSamplersUsed;
111    GLuint unit;
112 
113    if (samplers_used == 0x0 && old_max == 0)
114       return;
115 
116    unsigned num_textures = 0;
117 
118    /* prog->sh.data is NULL if it's ARB_fragment_program */
119    bool glsl130 = (prog->sh.data ? prog->sh.data->Version : 0) >= 130;
120 
121    /* loop over sampler units (aka tex image units) */
122    for (unit = 0; samplers_used || unit < old_max;
123         unit++, samplers_used >>= 1, texel_fetch_samplers >>= 1) {
124       struct pipe_sampler_view *sampler_view = NULL;
125 
126       if (samplers_used & 1) {
127          const GLuint texUnit = prog->SamplerUnits[unit];
128 
129          /* The EXT_texture_sRGB_decode extension says:
130           *
131           *    "The conversion of sRGB color space components to linear color
132           *     space is always performed if the texel lookup function is one
133           *     of the texelFetch builtin functions.
134           *
135           *     Otherwise, if the texel lookup function is one of the texture
136           *     builtin functions or one of the texture gather functions, the
137           *     conversion of sRGB color space components to linear color space
138           *     is controlled by the TEXTURE_SRGB_DECODE_EXT parameter.
139           *
140           *     If the TEXTURE_SRGB_DECODE_EXT parameter is DECODE_EXT, the
141           *     conversion of sRGB color space components to linear color space
142           *     is performed.
143           *
144           *     If the TEXTURE_SRGB_DECODE_EXT parameter is SKIP_DECODE_EXT,
145           *     the value is returned without decoding. However, if the texture
146           *     is also [statically] accessed with a texelFetch function, then
147           *     the result of texture builtin functions and/or texture gather
148           *     functions may be returned with decoding or without decoding."
149           *
150           * Note: the "statically" will be added to the language per
151           *       https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14934
152           *
153           * So we simply ignore the setting entirely for samplers that are
154           * (statically) accessed with a texelFetch function.
155           */
156          st_update_single_texture(st, &sampler_view, texUnit, glsl130,
157                                   texel_fetch_samplers & 1);
158          num_textures = unit + 1;
159       }
160 
161       pipe_sampler_view_reference(&(sampler_views[unit]), sampler_view);
162    }
163 
164    /* For any external samplers with multiplaner YUV, stuff the additional
165     * sampler views we need at the end.
166     *
167     * Trying to cache the sampler view in the stObj looks painful, so just
168     * re-create the sampler view for the extra planes each time.  Main use
169     * case is video playback (ie. fps games wouldn't be using this) so I
170     * guess no point to try to optimize this feature.
171     */
172    while (unlikely(external_samplers_used)) {
173       GLuint unit = u_bit_scan(&external_samplers_used);
174       GLuint extra = 0;
175       struct st_texture_object *stObj =
176             st_get_texture_object(st->ctx, prog, unit);
177       struct pipe_sampler_view tmpl;
178 
179       if (!stObj)
180          continue;
181 
182       /* use original view as template: */
183       tmpl = *sampler_views[unit];
184 
185       /* if resource format matches then YUV wasn't lowered */
186       if (st_get_view_format(stObj) == stObj->pt->format)
187          continue;
188 
189       switch (st_get_view_format(stObj)) {
190       case PIPE_FORMAT_NV12:
191          if (stObj->pt->format == PIPE_FORMAT_R8_G8B8_420_UNORM)
192             /* no additional views needed */
193             break;
194 
195          /* we need one additional R8G8 view: */
196          tmpl.format = PIPE_FORMAT_RG88_UNORM;
197          tmpl.swizzle_g = PIPE_SWIZZLE_Y;   /* tmpl from Y plane is R8 */
198          extra = u_bit_scan(&free_slots);
199          sampler_views[extra] =
200                st->pipe->create_sampler_view(st->pipe, stObj->pt->next, &tmpl);
201          break;
202       case PIPE_FORMAT_P010:
203       case PIPE_FORMAT_P012:
204       case PIPE_FORMAT_P016:
205          /* we need one additional R16G16 view: */
206          tmpl.format = PIPE_FORMAT_RG1616_UNORM;
207          tmpl.swizzle_g = PIPE_SWIZZLE_Y;   /* tmpl from Y plane is R16 */
208          extra = u_bit_scan(&free_slots);
209          sampler_views[extra] =
210                st->pipe->create_sampler_view(st->pipe, stObj->pt->next, &tmpl);
211          break;
212       case PIPE_FORMAT_IYUV:
213          /* we need two additional R8 views: */
214          tmpl.format = PIPE_FORMAT_R8_UNORM;
215          extra = u_bit_scan(&free_slots);
216          sampler_views[extra] =
217                st->pipe->create_sampler_view(st->pipe, stObj->pt->next, &tmpl);
218          extra = u_bit_scan(&free_slots);
219          sampler_views[extra] =
220                st->pipe->create_sampler_view(st->pipe, stObj->pt->next->next, &tmpl);
221          break;
222       case PIPE_FORMAT_YUYV:
223          /* we need one additional BGRA8888 view: */
224          tmpl.format = PIPE_FORMAT_BGRA8888_UNORM;
225          tmpl.swizzle_b = PIPE_SWIZZLE_Z;
226          tmpl.swizzle_a = PIPE_SWIZZLE_W;
227          extra = u_bit_scan(&free_slots);
228          sampler_views[extra] =
229                st->pipe->create_sampler_view(st->pipe, stObj->pt->next, &tmpl);
230          break;
231       case PIPE_FORMAT_UYVY:
232          /* we need one additional RGBA8888 view: */
233          tmpl.format = PIPE_FORMAT_RGBA8888_UNORM;
234          tmpl.swizzle_b = PIPE_SWIZZLE_Z;
235          tmpl.swizzle_a = PIPE_SWIZZLE_W;
236          extra = u_bit_scan(&free_slots);
237          sampler_views[extra] =
238                st->pipe->create_sampler_view(st->pipe, stObj->pt->next, &tmpl);
239          break;
240       default:
241          break;
242       }
243 
244       num_textures = MAX2(num_textures, extra + 1);
245    }
246 
247    cso_set_sampler_views(st->cso_context,
248                          shader_stage,
249                          num_textures,
250                          sampler_views);
251    st->state.num_sampler_views[shader_stage] = num_textures;
252 }
253 
254 /* Same as update_textures, but don't store the views in st_context. */
255 static void
update_textures_local(struct st_context * st,enum pipe_shader_type shader_stage,const struct gl_program * prog)256 update_textures_local(struct st_context *st,
257                       enum pipe_shader_type shader_stage,
258                       const struct gl_program *prog)
259 {
260    struct pipe_sampler_view *local_views[PIPE_MAX_SAMPLERS] = {0};
261 
262    update_textures(st, shader_stage, prog, local_views);
263 
264    unsigned num = st->state.num_sampler_views[shader_stage];
265    for (unsigned i = 0; i < num; i++)
266       pipe_sampler_view_reference(&local_views[i], NULL);
267 }
268 
269 void
st_update_vertex_textures(struct st_context * st)270 st_update_vertex_textures(struct st_context *st)
271 {
272    const struct gl_context *ctx = st->ctx;
273 
274    if (ctx->Const.Program[MESA_SHADER_VERTEX].MaxTextureImageUnits > 0) {
275       update_textures(st,
276                       PIPE_SHADER_VERTEX,
277                       ctx->VertexProgram._Current,
278                       st->state.vert_sampler_views);
279    }
280 }
281 
282 
283 void
st_update_fragment_textures(struct st_context * st)284 st_update_fragment_textures(struct st_context *st)
285 {
286    const struct gl_context *ctx = st->ctx;
287 
288    update_textures(st,
289                    PIPE_SHADER_FRAGMENT,
290                    ctx->FragmentProgram._Current,
291                    st->state.frag_sampler_views);
292 }
293 
294 
295 void
st_update_geometry_textures(struct st_context * st)296 st_update_geometry_textures(struct st_context *st)
297 {
298    const struct gl_context *ctx = st->ctx;
299 
300    if (ctx->GeometryProgram._Current) {
301       update_textures_local(st, PIPE_SHADER_GEOMETRY,
302                             ctx->GeometryProgram._Current);
303    }
304 }
305 
306 
307 void
st_update_tessctrl_textures(struct st_context * st)308 st_update_tessctrl_textures(struct st_context *st)
309 {
310    const struct gl_context *ctx = st->ctx;
311 
312    if (ctx->TessCtrlProgram._Current) {
313       update_textures_local(st, PIPE_SHADER_TESS_CTRL,
314                             ctx->TessCtrlProgram._Current);
315    }
316 }
317 
318 
319 void
st_update_tesseval_textures(struct st_context * st)320 st_update_tesseval_textures(struct st_context *st)
321 {
322    const struct gl_context *ctx = st->ctx;
323 
324    if (ctx->TessEvalProgram._Current) {
325       update_textures_local(st, PIPE_SHADER_TESS_EVAL,
326                             ctx->TessEvalProgram._Current);
327    }
328 }
329 
330 
331 void
st_update_compute_textures(struct st_context * st)332 st_update_compute_textures(struct st_context *st)
333 {
334    const struct gl_context *ctx = st->ctx;
335 
336    if (ctx->ComputeProgram._Current) {
337       update_textures_local(st, PIPE_SHADER_COMPUTE,
338                             ctx->ComputeProgram._Current);
339    }
340 }
341