mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-12 13:37:47 +00:00
video_core/engines/engine_upload: Default destructor in the cpp file
Avoids inlining destruction logic where applicable, and also makes forward declarations not cause unexpected compilation errors depending on where the State class is used.
This commit is contained in:
parent
f06049438a
commit
0c9db2ddf0
2 changed files with 3 additions and 1 deletions
|
@ -14,6 +14,8 @@ namespace Tegra::Engines::Upload {
|
|||
State::State(MemoryManager& memory_manager, Registers& regs)
|
||||
: memory_manager(memory_manager), regs(regs) {}
|
||||
|
||||
State::~State() = default;
|
||||
|
||||
void State::ProcessExec(const bool is_linear) {
|
||||
write_offset = 0;
|
||||
copy_size = regs.line_length_in * regs.line_count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue