Lines Matching defs:dst_format

1421         const RECT *dst_rect, DWORD dst_usage, enum wined3d_pool dst_pool, const struct wined3d_format *dst_format)
1435 if (!((dst_format->flags & WINED3DFMT_FLAG_FBO_ATTACHABLE) || (dst_usage & WINED3DUSAGE_RENDERTARGET)))
1442 if (!(dst_format->flags & (WINED3DFMT_FLAG_DEPTH | WINED3DFMT_FLAG_STENCIL)))
1450 if (!(src_format->id == dst_format->id
1452 && is_identity_fixup(dst_format->color_fixup))))
2822 const struct wined3d_format *dst_format;
2839 dst_format = dst_surface->resource.format;
2841 if (src_format->id != dst_format->id)
2894 if ((dst_format->flags & WINED3DFMT_FLAG_BLOCKS) && !surface_check_block_align(dst_surface, &dst_rect))
6796 const RECT *dst_rect, DWORD dst_usage, enum wined3d_pool dst_pool, const struct wined3d_format *dst_format)
6813 if (!is_identity_fixup(dst_format->color_fixup))
6841 if (!((dst_format->flags & WINED3DFMT_FLAG_FBO_ATTACHABLE) || (dst_usage & WINED3DUSAGE_RENDERTARGET)))
6921 const RECT *dst_rect, DWORD dst_usage, enum wined3d_pool dst_pool, const struct wined3d_format *dst_format)
7038 const struct wined3d_format *src_format, *dst_format;
7056 dst_format = src_format;
7060 dst_format = dst_surface->resource.format;
7065 src_surface = surface_convert_format(src_surface, dst_format->id);
7078 src_format = dst_format;
7099 + ((dst_rect->top / dst_format->block_height) * dst_map.row_pitch)
7100 + ((dst_rect->left / dst_format->block_width) * dst_format->block_byte_count);
7102 if (src_format->flags & dst_format->flags & WINED3DFMT_FLAG_BLOCKS)
7104 TRACE("%s -> %s copy.\n", debug_d3dformat(src_format->id), debug_d3dformat(dst_format->id));