Skip to content
Snippets Groups Projects
Unverified Commit dfddb122 authored by Sebastian Valle's avatar Sebastian Valle Committed by GitHub
Browse files

Merge pull request #2471 from lioncash/engine-upload

 video_core/engines/engine_upload: Minor tidying
parents f9ad88f9 b01cce71
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstring>
#include "common/assert.h"
#include "video_core/engines/engine_upload.h"
#include "video_core/memory_manager.h"
......@@ -10,7 +12,9 @@
namespace Tegra::Engines::Upload {
State::State(MemoryManager& memory_manager, Registers& regs)
: memory_manager(memory_manager), regs(regs) {}
: regs{regs}, memory_manager{memory_manager} {}
State::~State() = default;
void State::ProcessExec(const bool is_linear) {
write_offset = 0;
......
......@@ -4,10 +4,8 @@
#pragma once
#include <cstddef>
#include <vector>
#include "common/bit_field.h"
#include "common/common_funcs.h"
#include "common/common_types.h"
namespace Tegra {
......@@ -57,10 +55,10 @@ struct Registers {
class State {
public:
State(MemoryManager& memory_manager, Registers& regs);
~State() = default;
~State();
void ProcessExec(const bool is_linear);
void ProcessData(const u32 data, const bool is_last_call);
void ProcessExec(bool is_linear);
void ProcessData(u32 data, bool is_last_call);
private:
u32 write_offset = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment