rpcsx/rpcs3/Emu/RSX/VK/vkutils/scratch.h
kd-11 c2cbc62be6 vk: Refactor some uber-headers
- VKHelpers was the rug everything was swept under for a long time.
  This commit essentially deprecates its usage across most of the backend.
2021-01-10 12:04:31 +03:00

13 lines
369 B
C++

#pragma once
#include "image.h"
namespace vk
{
VkSampler null_sampler();
image_view* null_image_view(command_buffer&, VkImageViewType type);
image* get_typeless_helper(VkFormat format, rsx::format_class format_class, u32 requested_width, u32 requested_height);
buffer* get_scratch_buffer(u32 min_required_size = 0);
void clear_scratch_resources();
}