summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_processor.h
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-09-18 02:38:01 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-09-18 02:38:01 +0200
commitdc8479928c5aee4c6ad6fe4f59006fb604cee701 (patch)
tree569a7f13128450bbab973236615587ff00bced5f /src/video_core/command_processor.h
parentTravis: Import Dolphin’s clang-format hook. (diff)
downloadyuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar
yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.gz
yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.bz2
yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.lz
yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.xz
yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.zst
yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.zip
Diffstat (limited to 'src/video_core/command_processor.h')
-rw-r--r--src/video_core/command_processor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/command_processor.h b/src/video_core/command_processor.h
index 022a71f5e..b8dad8e7b 100644
--- a/src/video_core/command_processor.h
+++ b/src/video_core/command_processor.h
@@ -16,7 +16,7 @@ namespace CommandProcessor {
union CommandHeader {
u32 hex;
- BitField< 0, 16, u32> cmd_id;
+ BitField<0, 16, u32> cmd_id;
// parameter_mask:
// Mask applied to the input value to make it possible to update
@@ -25,11 +25,11 @@ union CommandHeader {
// second bit: 0x0000FF00
// third bit: 0x00FF0000
// fourth bit: 0xFF000000
- BitField<16, 4, u32> parameter_mask;
+ BitField<16, 4, u32> parameter_mask;
BitField<20, 11, u32> extra_data_length;
- BitField<31, 1, u32> group_commands;
+ BitField<31, 1, u32> group_commands;
};
static_assert(std::is_standard_layout<CommandHeader>::value == true,
"CommandHeader does not use standard layout");