|
|
|
@ -86,6 +86,8 @@ public:
|
|
|
|
|
|
|
|
|
|
void CopyImage(Image& dst, Image& src, std::span<const VideoCommon::ImageCopy> copies);
|
|
|
|
|
|
|
|
|
|
void ConvertImage(Image& dst, Image& src, std::span<const VideoCommon::ImageCopy> copies);
|
|
|
|
|
|
|
|
|
|
void ConvertImage(Framebuffer* dst, ImageView& dst_view, ImageView& src_view, bool rescaled) {
|
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
|
}
|
|
|
|
@ -336,6 +338,7 @@ struct TextureCacheParams {
|
|
|
|
|
static constexpr bool FRAMEBUFFER_BLITS = true;
|
|
|
|
|
static constexpr bool HAS_EMULATED_COPIES = true;
|
|
|
|
|
static constexpr bool HAS_DEVICE_MEMORY_INFO = true;
|
|
|
|
|
static constexpr bool HAS_PIXEL_FORMAT_CONVERSIONS = true;
|
|
|
|
|
|
|
|
|
|
using Runtime = OpenGL::TextureCacheRuntime;
|
|
|
|
|
using Image = OpenGL::Image;
|
|
|
|
|