mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-05 07:14:17 +01:00
- VKHelpers was the rug everything was swept under for a long time. This commit essentially deprecates its usage across most of the backend.
13 lines
369 B
C++
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();
|
|
}
|