Browse Source
Merge pull request #2471 from lioncash/engine-upload
video_core/engines/engine_upload: Minor tidying
pull/15/merge
Sebastian Valle
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
6 deletions
-
src/video_core/engines/engine_upload.cpp
-
src/video_core/engines/engine_upload.h
|
|
|
@ -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; |
|
|
|
|