summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-04-25 18:57:10 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-05-01 21:31:39 +0200
commite64c41efe88e8f88014fef912b06b71b3df17e85 (patch)
tree626793bd10db844237b8136154ea6b81fe72e4b1 /src/video_core/engines/maxwell_dma.h
parentFixes and Corrections to DMA Engine (diff)
downloadyuzu-e64c41efe88e8f88014fef912b06b71b3df17e85.tar
yuzu-e64c41efe88e8f88014fef912b06b71b3df17e85.tar.gz
yuzu-e64c41efe88e8f88014fef912b06b71b3df17e85.tar.bz2
yuzu-e64c41efe88e8f88014fef912b06b71b3df17e85.tar.lz
yuzu-e64c41efe88e8f88014fef912b06b71b3df17e85.tar.xz
yuzu-e64c41efe88e8f88014fef912b06b71b3df17e85.tar.zst
yuzu-e64c41efe88e8f88014fef912b06b71b3df17e85.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_dma.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h
index 8eab1332e..e5942f671 100644
--- a/src/video_core/engines/maxwell_dma.h
+++ b/src/video_core/engines/maxwell_dma.h
@@ -70,13 +70,13 @@ public:
static_assert(sizeof(Parameters) == 24, "Parameters has wrong size");
enum class ComponentMode : u32 {
- SRC0 = 0,
- SRC1 = 1,
- SRC2 = 2,
- SRC3 = 3,
- CONST0 = 4,
- CONST1 = 5,
- ZERO = 6,
+ Src0 = 0,
+ Src1 = 1,
+ Src2 = 2,
+ Src3 = 3,
+ Const0 = 4,
+ Const1 = 5,
+ Zero = 6,
};
enum class CopyMode : u32 {