summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/present/filters.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/renderer_vulkan/present/filters.h')
-rw-r--r--src/video_core/renderer_vulkan/present/filters.h24
1 files changed, 6 insertions, 18 deletions
diff --git a/src/video_core/renderer_vulkan/present/filters.h b/src/video_core/renderer_vulkan/present/filters.h
index 42d7052da..6c83726dd 100644
--- a/src/video_core/renderer_vulkan/present/filters.h
+++ b/src/video_core/renderer_vulkan/present/filters.h
@@ -7,24 +7,12 @@
namespace Vulkan {
-std::unique_ptr<WindowAdaptPass> MakeNearestNeighbor(const Device& device,
- const MemoryAllocator& memory_allocator,
- size_t image_count, VkFormat frame_format);
+class MemoryAllocator;
-std::unique_ptr<WindowAdaptPass> MakeBilinear(const Device& device,
- const MemoryAllocator& memory_allocator,
- size_t image_count, VkFormat frame_format);
-
-std::unique_ptr<WindowAdaptPass> MakeBicubic(const Device& device,
- const MemoryAllocator& memory_allocator,
- size_t image_count, VkFormat frame_format);
-
-std::unique_ptr<WindowAdaptPass> MakeGaussian(const Device& device,
- const MemoryAllocator& memory_allocator,
- size_t image_count, VkFormat frame_format);
-
-std::unique_ptr<WindowAdaptPass> MakeScaleForce(const Device& device,
- const MemoryAllocator& memory_allocator,
- size_t image_count, VkFormat frame_format);
+std::unique_ptr<WindowAdaptPass> MakeNearestNeighbor(const Device& device, VkFormat frame_format);
+std::unique_ptr<WindowAdaptPass> MakeBilinear(const Device& device, VkFormat frame_format);
+std::unique_ptr<WindowAdaptPass> MakeBicubic(const Device& device, VkFormat frame_format);
+std::unique_ptr<WindowAdaptPass> MakeGaussian(const Device& device, VkFormat frame_format);
+std::unique_ptr<WindowAdaptPass> MakeScaleForce(const Device& device, VkFormat frame_format);
} // namespace Vulkan