HomeSort by relevance Sort by last modified time
    Searched defs:surf_tmpl (Results 1 - 17 of 17) sorted by null

  /external/mesa3d/src/gallium/tests/graw/
clear.c 43 struct pipe_surface surf_tmpl; local
85 surf_tmpl.format = templat.format;
86 surf_tmpl.u.tex.level = 0;
87 surf_tmpl.u.tex.first_layer = 0;
88 surf_tmpl.u.tex.last_layer = 0;
89 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
shader-leak.c 170 struct pipe_surface surf_tmpl; local
212 surf_tmpl.format = templat.format;
213 surf_tmpl.u.tex.level = 0;
214 surf_tmpl.u.tex.first_layer = 0;
215 surf_tmpl.u.tex.last_layer = 0;
216 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
tri-gs.c 177 struct pipe_surface surf_tmpl; local
219 surf_tmpl.format = templat.format;
220 surf_tmpl.u.tex.level = 0;
221 surf_tmpl.u.tex.first_layer = 0;
222 surf_tmpl.u.tex.last_layer = 0;
223 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
fs-test.c 381 struct pipe_surface surf_tmpl; local
423 surf_tmpl.format = templat.format;
424 surf_tmpl.u.tex.level = 0;
425 surf_tmpl.u.tex.first_layer = 0;
426 surf_tmpl.u.tex.last_layer = 0;
427 surf = ctx->create_surface(ctx, rttex, &surf_tmpl);
quad-sample.c 296 struct pipe_surface surf_tmpl; local
338 surf_tmpl.format = templat.format;
339 surf_tmpl.u.tex.level = 0;
340 surf_tmpl.u.tex.first_layer = 0;
341 surf_tmpl.u.tex.last_layer = 0;
342 surf = ctx->create_surface(ctx, rttex, &surf_tmpl);
tri-instanced.c 228 struct pipe_surface surf_tmpl; local
270 surf_tmpl.format = templat.format;
271 surf_tmpl.u.tex.level = 0;
272 surf_tmpl.u.tex.first_layer = 0;
273 surf_tmpl.u.tex.last_layer = 0;
274 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
vs-test.c 370 struct pipe_surface surf_tmpl; local
412 surf_tmpl.format = templat.format;
413 surf_tmpl.u.tex.level = 0;
414 surf_tmpl.u.tex.first_layer = 0;
415 surf_tmpl.u.tex.last_layer = 0;
416 surf = ctx->create_surface(ctx, rttex, &surf_tmpl);
gs-test.c 472 struct pipe_surface surf_tmpl; local
514 surf_tmpl.format = templat.format;
515 surf_tmpl.u.tex.level = 0;
516 surf_tmpl.u.tex.first_layer = 0;
517 surf_tmpl.u.tex.last_layer = 0;
518 surf = ctx->create_surface(ctx, rttex, &surf_tmpl);
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_image.c 140 struct pipe_surface *surface, surf_tmpl; local
146 u_surface_default_template(&surf_tmpl, texture);
147 surface = pipe->create_surface(pipe, texture, &surf_tmpl);
u_blitter.c 2317 struct pipe_surface *srcsurf, *dstsurf, surf_tmpl; local
    [all...]
  /external/mesa3d/src/gallium/tests/trivial/
quad-tex.c 91 struct pipe_surface surf_tmpl; local
214 surf_tmpl.format = PIPE_FORMAT_B8G8R8A8_UNORM; /* All drivers support this */
215 surf_tmpl.u.tex.level = 0;
216 surf_tmpl.u.tex.first_layer = 0;
217 surf_tmpl.u.tex.last_layer = 0;
223 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, p->target, &surf_tmpl);
tri.c 86 struct pipe_surface surf_tmpl; local
159 surf_tmpl.format = PIPE_FORMAT_B8G8R8A8_UNORM;
160 surf_tmpl.u.tex.level = 0;
161 surf_tmpl.u.tex.first_layer = 0;
162 surf_tmpl.u.tex.last_layer = 0;
168 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, p->target, &surf_tmpl);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_fbo.c 119 struct pipe_surface surf_tmpl; local
218 u_surface_default_template(&surf_tmpl, strb->texture);
221 &surf_tmpl);
464 struct pipe_surface surf_tmpl; local
465 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
466 surf_tmpl.format = format;
467 surf_tmpl.u.tex.level = level;
468 surf_tmpl.u.tex.first_layer = first_layer;
469 surf_tmpl.u.tex.last_layer = last_layer
    [all...]
st_manager.c 215 struct pipe_surface *ps, surf_tmpl; local
234 u_surface_default_template(&surf_tmpl, textures[i]);
235 ps = st->pipe->create_surface(st->pipe, textures[i], &surf_tmpl);
844 struct pipe_surface *ps, surf_tmpl; local
853 u_surface_default_template(&surf_tmpl, stimg.texture);
854 surf_tmpl.format = stimg.format;
855 surf_tmpl.u.tex.level = stimg.level;
856 surf_tmpl.u.tex.first_layer = stimg.layer;
857 surf_tmpl.u.tex.last_layer = stimg.layer;
858 ps = st->pipe->create_surface(st->pipe, stimg.texture, &surf_tmpl);
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_blit.c 717 struct pipe_surface surf_tmpl; local
720 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
721 surf_tmpl.format = format;
722 srcsurf = r300_surface(pipe->create_surface(pipe, src, &surf_tmpl));
724 surf_tmpl.format = format;
725 surf_tmpl.u.tex.level = dst_level;
726 surf_tmpl.u.tex.first_layer =
727 surf_tmpl.u.tex.last_layer = dst_layer;
728 dstsurf = r300_surface(pipe->create_surface(pipe, dst, &surf_tmpl));
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_blit.c 158 struct pipe_surface *zsurf, *cbsurf, surf_tmpl; local
165 surf_tmpl.format = texture->resource.b.b.format;
166 surf_tmpl.u.tex.level = level;
167 surf_tmpl.u.tex.first_layer = layer;
168 surf_tmpl.u.tex.last_layer = layer;
170 zsurf = ctx->create_surface(ctx, &texture->resource.b.b, &surf_tmpl);
172 surf_tmpl.format = flushed_depth_texture->resource.b.b.format;
174 &flushed_depth_texture->resource.b.b, &surf_tmpl);
206 struct pipe_surface *zsurf, surf_tmpl = {{0}}; local
220 surf_tmpl.format = texture->resource.b.b.format
315 struct pipe_surface *cbsurf, surf_tmpl; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_blit.c 111 struct pipe_surface surf_tmpl = {{0}}; local
131 surf_tmpl.u.tex.level = level;
136 surf_tmpl.format = src->resource.b.b.format;
137 surf_tmpl.u.tex.first_layer = layer;
138 surf_tmpl.u.tex.last_layer = layer;
140 zsurf = sctx->b.b.create_surface(&sctx->b.b, &src->resource.b.b, &surf_tmpl);
142 surf_tmpl.format = dst->resource.b.b.format;
143 cbsurf = sctx->b.b.create_surface(&sctx->b.b, &dst->resource.b.b, &surf_tmpl);
206 struct pipe_surface *zsurf, surf_tmpl = {{0}}; local
219 surf_tmpl.format = texture->resource.b.b.format
449 struct pipe_surface *cbsurf, surf_tmpl; local
    [all...]

Completed in 283 milliseconds