Home | History | Annotate | Download | only in r300

Lines Matching refs:dst_templ

466     struct pipe_surface dst_templ, *dst_view;
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.format));
511 src_templ.format = dst_templ.format;
517 assert(src_templ.format == dst_templ.format);
529 switch (util_format_get_blocksize(dst_templ.format)) {
533 dst_templ.format = PIPE_FORMAT_R8G8B8A8_UNORM;
543 dst_templ.format = PIPE_FORMAT_R8G8B8A8_UNORM;
546 src_templ.format = dst_templ.format;
556 if (!screen->is_format_supported(screen, dst_templ.format,
576 dst_view = r300_create_surface_custom(pipe, dst, &dst_templ, dst_width0, dst_height0);