summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/GraphicsModSystem/Runtime/Actions/SkipAction.h
blob: 5cd204a89df38e2a143e4625df41e13ebf5b0c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2022 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "VideoCommon/GraphicsModSystem/Runtime/GraphicsModAction.h"

class SkipAction final : public GraphicsModAction
{
public:
  void OnDrawStarted(bool* skip) override;
  void OnEFB(bool* skip, u32 texture_width, u32 texture_height, u32* scaled_width,
             u32* scaled_height) override;
};