99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
23 lines
650 B
C++
23 lines
650 B
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
namespace Tegra::Engines {
|
|
|
|
class EngineInterface {
|
|
public:
|
|
virtual ~EngineInterface() = default;
|
|
|
|
/// Write the value to the register identified by method.
|
|
virtual void CallMethod(u32 method, u32 method_argument, bool is_last_call) = 0;
|
|
|
|
/// Write multiple values to the register identified by method.
|
|
virtual void CallMultiMethod(u32 method, const u32* base_start, u32 amount,
|
|
u32 methods_pending) = 0;
|
|
};
|
|
|
|
} // namespace Tegra::Engines
|