summaryrefslogtreecommitdiffstats
path: root/src/video_core/dma_pusher.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-11-05 02:41:16 +0100
committerLioncash <mathew1800@gmail.com>2020-11-05 16:07:16 +0100
commit6f006d051e1fad075048ea5664e1ef0605e48a46 (patch)
tree47fbdd1225fabbd0c1abb05bb8ebd5a02632ce02 /src/video_core/dma_pusher.h
parentMerge pull request #4889 from lioncash/setting-global (diff)
downloadyuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar
yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.gz
yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.bz2
yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.lz
yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.xz
yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.zst
yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/dma_pusher.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/video_core/dma_pusher.h b/src/video_core/dma_pusher.h
index 8496ba2da..9d9a750d9 100644
--- a/src/video_core/dma_pusher.h
+++ b/src/video_core/dma_pusher.h
@@ -18,6 +18,8 @@ class System;
namespace Tegra {
+class GPU;
+
enum class SubmissionMode : u32 {
IncreasingOld = 0,
Increasing = 1,
@@ -74,8 +76,7 @@ union CommandHeader {
static_assert(std::is_standard_layout_v<CommandHeader>, "CommandHeader is not standard layout");
static_assert(sizeof(CommandHeader) == sizeof(u32), "CommandHeader has incorrect size!");
-static constexpr CommandHeader BuildCommandHeader(BufferMethods method, u32 arg_count,
- SubmissionMode mode) {
+inline CommandHeader BuildCommandHeader(BufferMethods method, u32 arg_count, SubmissionMode mode) {
CommandHeader result{};
result.method.Assign(static_cast<u32>(method));
result.arg_count.Assign(arg_count);
@@ -83,8 +84,6 @@ static constexpr CommandHeader BuildCommandHeader(BufferMethods method, u32 arg_
return result;
}
-class GPU;
-
struct CommandList final {
CommandList() = default;
explicit CommandList(std::size_t size) : command_lists(size) {}