diff options
| author | James Rowe <jroweboy@gmail.com> | 2018-01-11 20:07:44 -0700 |
|---|---|---|
| committer | James Rowe <jroweboy@gmail.com> | 2018-01-12 19:11:03 -0700 |
| commit | 1d28b2e142f845773e2b90e267d9632e196a99b9 (patch) | |
| tree | 027a3586a0fc927731afb3711c328c6dafc8551f /src/video_core/command_processor.h | |
| parent | ebf9a784a9f7f4148a669dbb39e7cd50df779a14 (diff) | |
Remove references to PICA and rasterizers in video_core
Diffstat (limited to 'src/video_core/command_processor.h')
| -rw-r--r-- | src/video_core/command_processor.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/video_core/command_processor.h b/src/video_core/command_processor.h deleted file mode 100644 index 62ad2d3f3..000000000 --- a/src/video_core/command_processor.h +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright 2014 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -#include <type_traits> -#include "common/bit_field.h" -#include "common/common_types.h" - -namespace Pica { - -namespace CommandProcessor { - -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; - - BitField<20, 11, u32> extra_data_length; - - BitField<31, 1, u32> group_commands; -}; -static_assert(std::is_standard_layout<CommandHeader>::value == true, - "CommandHeader does not use standard layout"); -static_assert(sizeof(CommandHeader) == sizeof(u32), "CommandHeader has incorrect size!"); - -void ProcessCommandList(const u32* list, u32 size); - -} // namespace - -} // namespace |
