summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorMarkus Wick <markus@selfnet.de>2018-09-04 13:54:50 +0200
committerMarkus Wick <markus@selfnet.de>2018-09-04 14:10:05 +0200
commit2081ed7db22d62b82acfddcd4b7c10a03bb3daaf (patch)
tree70d38dd3466dee6e9cd05ab83cedb7deb375a5af /src/video_core/gpu.h
parentMerge pull request #1231 from lioncash/global (diff)
downloadyuzu-2081ed7db22d62b82acfddcd4b7c10a03bb3daaf.tar
yuzu-2081ed7db22d62b82acfddcd4b7c10a03bb3daaf.tar.gz
yuzu-2081ed7db22d62b82acfddcd4b7c10a03bb3daaf.tar.bz2
yuzu-2081ed7db22d62b82acfddcd4b7c10a03bb3daaf.tar.lz
yuzu-2081ed7db22d62b82acfddcd4b7c10a03bb3daaf.tar.xz
yuzu-2081ed7db22d62b82acfddcd4b7c10a03bb3daaf.tar.zst
yuzu-2081ed7db22d62b82acfddcd4b7c10a03bb3daaf.zip
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 2c3dbd97b..d29f31f52 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -4,8 +4,8 @@
#pragma once
+#include <array>
#include <memory>
-#include <unordered_map>
#include "common/common_types.h"
#include "core/hle/service/nvflinger/buffer_queue.h"
#include "video_core/memory_manager.h"
@@ -136,7 +136,7 @@ private:
std::unique_ptr<Tegra::MemoryManager> memory_manager;
/// Mapping of command subchannels to their bound engine ids.
- std::unordered_map<u32, EngineID> bound_engines;
+ std::array<EngineID, 8> bound_engines = {};
/// 3D engine
std::unique_ptr<Engines::Maxwell3D> maxwell_3d;