citra/src/video_core/command_processor.h

38 lines
1 KiB
C++
Raw Normal View History

2014-07-26 14:42:46 +02:00
// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// Licensed under GPLv2 or any later version
2014-07-26 14:42:46 +02:00
// Refer to the license.txt file included.
#pragma once
2015-06-27 18:56:17 +02:00
#include <type_traits>
2014-07-26 14:42:46 +02:00
#include "common/bit_field.h"
#include "common/common_types.h"
2019-02-19 09:09:57 +01:00
namespace Pica::CommandProcessor {
2014-07-26 14:42:46 +02:00
union CommandHeader {
u32 hex;
BitField<0, 16, u32> cmd_id;
// parameter_mask:
// Mask applied to the input value to make it possible to update
// parts of a register without overwriting its other fields.
// first bit: 0x000000FF
// second bit: 0x0000FF00
// third bit: 0x00FF0000
// fourth bit: 0xFF000000
BitField<16, 4, u32> parameter_mask;
2014-07-26 14:42:46 +02:00
BitField<20, 11, u32> extra_data_length;
BitField<31, 1, u32> group_commands;
2014-07-26 14:42:46 +02:00
};
static_assert(std::is_standard_layout<CommandHeader>::value == true,
"CommandHeader does not use standard layout");
2014-07-26 14:42:46 +02:00
static_assert(sizeof(CommandHeader) == sizeof(u32), "CommandHeader has incorrect size!");
2019-08-07 18:08:52 +02:00
void ProcessCommandList(PAddr list, u32 size);
2014-07-26 14:42:46 +02:00
2019-02-19 09:09:57 +01:00
} // namespace Pica::CommandProcessor