HomeSort by: relevance | last modified time | path
    Searched refs:views (Results 1 - 25 of 160) sorted by relevancy

1 2 3 4 5 6 7

  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_sampler_view.c 93 struct st_sampler_views *views; local
99 views = stObj->sampler_views;
101 for (i = 0; i < views->count; ++i) {
102 sv = &views->views[i];
122 if (views->count >= views->max) {
124 unsigned new_max = 2 * views->max;
125 unsigned new_size = sizeof(*views) + new_max * sizeof(views->views[0])
206 struct st_sampler_views *views = p_atomic_read(&stObj->sampler_views); local
230 struct st_sampler_views *views = stObj->sampler_views; local
261 struct st_sampler_views *views = stObj->sampler_views; local
300 struct st_sampler_views *views = stObj->sampler_views_old; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_sampler_view.c 62 struct st_sampler_views *views; local
68 views = stObj->sampler_views;
70 for (i = 0; i < views->count; ++i) {
71 sv = &views->views[i];
90 if (views->count >= views->max) {
92 unsigned new_max = 2 * views->max;
93 unsigned new_size = sizeof(*views) + new_max * sizeof(views->views[0])
171 const struct st_sampler_views *views = p_atomic_read(&stObj->sampler_views); local
195 struct st_sampler_views *views = stObj->sampler_views; local
225 struct st_sampler_views *views = stObj->sampler_views; local
262 struct st_sampler_views *views = stObj->sampler_views_old; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_state.h 164 struct pipe_sampler_view **views);
169 struct pipe_sampler_view **views);
174 struct pipe_sampler_view **views);
179 struct pipe_sampler_view **views);
187 struct pipe_image_view *views);
192 struct pipe_image_view *views);
197 struct pipe_image_view *views);
202 struct pipe_image_view *views);
lp_state_sampler.c 124 struct pipe_sampler_view **views)
136 /* set the new sampler views */
140 if (views && views[i])
141 view = views[i];
277 struct pipe_sampler_view **views,
292 struct pipe_sampler_view *view = i < num ? views[i] : NULL;
381 struct pipe_sampler_view **views)
383 prepare_shader_sampling(lp, num, views, PIPE_SHADER_VERTEX);
393 struct pipe_sampler_view **views)
425 struct pipe_sampler_view **views; local
592 struct pipe_image_view *views; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/
panvk_vX_meta_blit.c 37 struct pan_image_view views[2] = { local
73 views[0].format = blitinfo->dst.planes[0].image->layout.format;
74 fbinfo->zs.view.zs = &views[0];
78 fbinfo->zs.view.s = &views[0];
82 fbinfo->rts[0].view = &views[0];
90 views[1].format = blitinfo->dst.planes[1].format;
91 views[1].dim = MALI_TEXTURE_DIMENSION_2D;
92 views[1].image = blitinfo->dst.planes[1].image;
93 views[1].nr_samples = blitinfo->dst.planes[1].image->layout.nr_samples;
94 views[1].first_level = blitinfo->dst.level
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
freedreno_texture.h 40 struct pipe_sampler_view **views);
freedreno_texture.c 72 struct pipe_sampler_view **views)
77 struct pipe_sampler_view *view = views ? views[i] : NULL;
118 struct pipe_sampler_view **views) in_dt
123 take_ownership, views);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
freedreno_texture.h 39 struct pipe_sampler_view **views);
freedreno_texture.c 69 unsigned start, unsigned nr, struct pipe_sampler_view **views)
75 struct pipe_sampler_view *view = views ? views[i] : NULL;
109 struct pipe_sampler_view **views)
113 set_sampler_views(&ctx->tex[shader], start, nr, views);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/omx/
vid_dec_common.c 86 struct pipe_sampler_view **views; local
90 views = buf->get_sampler_view_planes(buf);
106 assert(views);
131 if (!views[i]) continue;
137 for (j = 0; j < views[i]->texture->array_size; ++j) {
141 map = priv->pipe->texture_map(priv->pipe, views[i]->texture, 0,
149 views[i]->texture->format,
150 def->nStride * views[i]->texture->array_size, 0, 0,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/omx/
vid_dec_common.c 87 struct pipe_sampler_view **views; local
91 views = buf->get_sampler_view_planes(buf);
107 assert(views);
132 if (!views[i]) continue;
136 for (j = 0; j < views[i]->texture->array_size; ++j) {
140 map = priv->pipe->transfer_map(priv->pipe, views[i]->texture, 0,
148 views[i]->texture->format,
149 def->nStride * views[i]->texture->array_size, 0, 0,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_texture.c 222 unsigned nr, struct pipe_sampler_view **views)
229 pipe_sampler_view_reference(&ctx->sampler_view[i], views[j]);
230 if (views[j]) {
242 /* sampler views that changed state (even to inactive) are also dirty */
248 struct pipe_sampler_view **views)
253 set_sampler_views(ctx, start, end, nr, views);
260 struct pipe_sampler_view **views)
265 set_sampler_views(ctx, start, end, nr, views);
271 struct pipe_sampler_view **views)
279 if (views[idx]
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/tests/
mipmap_comp_tests.c 66 static struct view views[] = variable in typeref:struct:view
92 MinLod = views[View].minLod;
93 MaxLod = views[View].maxLod;
102 if (views[++View].string == NULL)
105 MinLod = views[View].minLod;
106 MaxLod = views[View].maxLod;
184 printf("You should see: %s\n", views[View].string );
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv30/
nv40_verttex.c 76 struct pipe_sampler_view **views)
85 nv30->vertprog.textures[i] = views[i];
87 pipe_sampler_view_reference(&nv30->vertprog.textures[i], views[i]);
nv30_fragtex.c 177 struct pipe_sampler_view **views)
186 nv30->fragprog.textures[i] = views[i];
188 pipe_sampler_view_reference(&nv30->fragprog.textures[i], views[i]);
209 struct pipe_sampler_view **views)
214 nv30_fragtex_set_sampler_views(pipe, nr, take_ownership, views);
217 nv40_verttex_set_sampler_views(pipe, nr, take_ownership, views);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_state.h 132 struct pipe_sampler_view **views);
137 struct pipe_sampler_view **views);
lp_state_sampler.c 112 struct pipe_sampler_view **views)
124 /* set the new sampler views */
131 if (views[i] && views[i]->context != pipe) {
136 views[i]);
237 struct pipe_sampler_view **views,
252 struct pipe_sampler_view *view = i < num ? views[i] : NULL;
342 struct pipe_sampler_view **views)
344 prepare_shader_sampling(lp, num, views, PIPE_SHADER_VERTEX);
354 struct pipe_sampler_view **views)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
etnaviv_texture.c 243 unsigned nr, bool take_ownership, struct pipe_sampler_view **views)
250 struct pipe_sampler_view *view = views ? views[j] : NULL;
270 /* sampler views that changed state (even to inactive) are also dirty */
277 struct pipe_sampler_view **views)
283 set_sampler_views(ctx, start, end, nr, take_ownership, views);
291 struct pipe_sampler_view **views)
297 set_sampler_views(ctx, start, end, nr, take_ownership, views);
305 struct pipe_sampler_view **views)
314 etna_fragtex_set_sampler_views(ctx, num_views, take_ownership, views);
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_state_sampler.c 105 struct pipe_sampler_view **views)
115 /* set the new sampler views */
124 *pview = views[i];
126 pipe_sampler_view_reference(pview, views[i]);
129 views[i]);
184 struct pipe_sampler_view **views,
200 struct pipe_sampler_view *view = views[i];
306 struct pipe_sampler_view **views)
308 prepare_shader_sampling(sp, num, views, PIPE_SHADER_VERTEX,
330 struct pipe_sampler_view **views)
    [all...]
sp_state.h 180 struct pipe_sampler_view **views);
216 struct pipe_sampler_view **views);
224 struct pipe_sampler_view **views);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_state_sampler.c 103 struct pipe_sampler_view **views)
113 /* set the new sampler views */
119 pipe_sampler_view_reference(pview, views[i]);
121 views[i]);
170 struct pipe_sampler_view **views,
186 struct pipe_sampler_view *view = views[i];
281 struct pipe_sampler_view **views)
283 prepare_shader_sampling(sp, num, views, PIPE_SHADER_VERTEX,
303 struct pipe_sampler_view **views)
305 prepare_shader_sampling(sp, num, views, PIPE_SHADER_GEOMETRY
    [all...]
sp_state.h 178 struct pipe_sampler_view **views);
210 struct pipe_sampler_view **views);
218 struct pipe_sampler_view **views);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_rbug/
rbug_context.h 51 struct rbug_sampler_view *views[PIPE_SHADER_TYPES][PIPE_MAX_SHADER_SAMPLER_VIEWS]; member in struct:rbug_context::__anon1043
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_rbug/
rbug_context.h 51 struct rbug_sampler_view *views[PIPE_SHADER_TYPES][PIPE_MAX_SHADER_SAMPLER_VIEWS]; member in struct:rbug_context::__anon3555
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv30/
nv40_verttex.c 75 struct pipe_sampler_view **views)
82 pipe_sampler_view_reference(&nv30->vertprog.textures[i], views[i]);

Completed in 21 milliseconds

1 2 3 4 5 6 7