Searched defs:dst_templ (Results 1 - 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_blit.c466 struct pipe_surface dst_templ, *dst_view; local
480 util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz, src_box);
483 layout = util_format_description(dst_templ.format)->layout;
490 !screen->is_format_supported(screen, dst_templ.format, dst->target,
493 switch (util_format_get_blocksize(dst_templ.format)) {
495 dst_templ.format = PIPE_FORMAT_I8_UNORM;
498 dst_templ.format = PIPE_FORMAT_B4G4R4A4_UNORM;
501 dst_templ.format = PIPE_FORMAT_B8G8R8A8_UNORM;
504 dst_templ.format = PIPE_FORMAT_R16G16B16A16_UNORM;
509 util_format_short_name(dst_templ
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_blit.c339 struct pipe_surface *dst_view, dst_templ; local
366 util_blitter_default_dst_texture(&dst_templ, info->dst.res,
368 dst_view = ctx->create_surface(ctx, info->dst.res, &dst_templ);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_blitter.c990 void util_blitter_default_dst_texture(struct pipe_surface *dst_templ, argument
996 memset(dst_templ, 0, sizeof(*dst_templ));
997 dst_templ->format = dst->format;
999 dst_templ->usage = PIPE_BIND_DEPTH_STENCIL;
1001 dst_templ->usage = PIPE_BIND_RENDER_TARGET;
1003 dst_templ->format = util_format_linear(dst->format);
1004 dst_templ->u.tex.level = dstlevel;
1005 dst_templ->u.tex.first_layer = dstz;
1006 dst_templ
1092 struct pipe_surface *dst_view, dst_templ; local
[all...]

Completed in 1008 milliseconds