summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/present/anti_alias_pass.h
blob: c1ec0b9a0da38e83dd27492a1a64486139d00bfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "video_core/vulkan_common/vulkan_wrapper.h"

namespace Vulkan {

class Scheduler;

class AntiAliasPass {
public:
    virtual ~AntiAliasPass() = default;
    virtual VkImageView Draw(Scheduler& scheduler, size_t image_index, VkImage source_image,
                             VkImageView source_image_view) = 0;
};

class NoAA final : public AntiAliasPass {
public:
    virtual VkImageView Draw(Scheduler& scheduler, size_t image_index, VkImage source_image,
                             VkImageView source_image_view) {
        return source_image_view;
    }
};

} // namespace Vulkan