mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
anv/meta: Make meta_emit_blit() public
This can be reverted if the only other consumer, anv_meta_blit2d(), uses a different method. Signed-off-by: Nanley Chery <nanley.g.chery@intel.com> Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
This commit is contained in:
parent
ddbc645846
commit
f391683922
2 changed files with 12 additions and 1 deletions
|
|
@ -105,6 +105,17 @@ void
|
|||
anv_meta_end_blit2d(struct anv_cmd_buffer *cmd_buffer,
|
||||
struct anv_meta_saved_state *save);
|
||||
|
||||
void
|
||||
meta_emit_blit(struct anv_cmd_buffer *cmd_buffer,
|
||||
struct anv_image *src_image,
|
||||
struct anv_image_view *src_iview,
|
||||
VkOffset3D src_offset,
|
||||
VkExtent3D src_extent,
|
||||
struct anv_image *dest_image,
|
||||
struct anv_image_view *dest_iview,
|
||||
VkOffset3D dest_offset,
|
||||
VkExtent3D dest_extent,
|
||||
VkFilter blit_filter);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ meta_region_extent_el(const VkFormat format,
|
|||
};
|
||||
}
|
||||
|
||||
static void
|
||||
void
|
||||
meta_emit_blit(struct anv_cmd_buffer *cmd_buffer,
|
||||
struct anv_image *src_image,
|
||||
struct anv_image_view *src_iview,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue