2014-05-17 21:07:51 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-05-17 21:07:51 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-08-15 14:33:17 +00:00
|
|
|
#include <array>
|
2014-08-03 14:00:52 +00:00
|
|
|
#include <cstddef>
|
2015-06-21 13:02:11 +00:00
|
|
|
#include <string>
|
2014-05-18 19:18:38 +00:00
|
|
|
|
2016-04-30 15:34:51 +00:00
|
|
|
#ifndef _MSC_VER
|
|
|
|
#include <type_traits> // for std::enable_if
|
|
|
|
#endif
|
|
|
|
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/assert.h"
|
2014-05-17 21:07:51 +00:00
|
|
|
#include "common/bit_field.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/common_funcs.h"
|
2014-05-17 21:07:51 +00:00
|
|
|
#include "common/common_types.h"
|
2015-09-11 11:20:02 +00:00
|
|
|
#include "common/logging/log.h"
|
2016-09-18 00:38:01 +00:00
|
|
|
#include "common/vector_math.h"
|
2017-01-28 04:16:36 +00:00
|
|
|
#include "video_core/regs_rasterizer.h"
|
2015-05-14 03:29:27 +00:00
|
|
|
|
2014-05-17 21:07:51 +00:00
|
|
|
namespace Pica {
|
|
|
|
|
2014-08-03 14:00:52 +00:00
|
|
|
// Returns index corresponding to the Regs member labeled by field_name
|
|
|
|
// TODO: Due to Visual studio bug 209229, offsetof does not return constant expressions
|
|
|
|
// when used with array elements (e.g. PICA_REG_INDEX(vs_uniform_setup.set_value[1])).
|
2016-09-18 00:38:01 +00:00
|
|
|
// For details cf.
|
|
|
|
// https://connect.microsoft.com/VisualStudio/feedback/details/209229/offsetof-does-not-produce-a-constant-expression-for-array-members
|
2014-08-03 14:00:52 +00:00
|
|
|
// Hopefully, this will be fixed sometime in the future.
|
|
|
|
// For lack of better alternatives, we currently hardcode the offsets when constant
|
|
|
|
// expressions are needed via PICA_REG_INDEX_WORKAROUND (on sane compilers, static_asserts
|
|
|
|
// will then make sure the offsets indeed match the automatically calculated ones).
|
|
|
|
#define PICA_REG_INDEX(field_name) (offsetof(Pica::Regs, field_name) / sizeof(u32))
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#define PICA_REG_INDEX_WORKAROUND(field_name, backup_workaround_index) (backup_workaround_index)
|
|
|
|
#else
|
|
|
|
// NOTE: Yeah, hacking in a static_assert here just to workaround the lacking MSVC compiler
|
|
|
|
// really is this annoying. This macro just forwards its first argument to PICA_REG_INDEX
|
|
|
|
// and then performs a (no-op) cast to size_t iff the second argument matches the expected
|
|
|
|
// field offset. Otherwise, the compiler will fail to compile this code.
|
2016-09-18 00:38:01 +00:00
|
|
|
#define PICA_REG_INDEX_WORKAROUND(field_name, backup_workaround_index) \
|
|
|
|
((typename std::enable_if<backup_workaround_index == PICA_REG_INDEX(field_name), \
|
2016-12-03 09:30:02 +00:00
|
|
|
size_t>::type)PICA_REG_INDEX(field_name))
|
2014-08-03 14:00:52 +00:00
|
|
|
#endif // _MSC_VER
|
|
|
|
|
2014-05-18 20:50:41 +00:00
|
|
|
struct Regs {
|
2014-12-03 06:04:22 +00:00
|
|
|
INSERT_PADDING_WORDS(0x10);
|
|
|
|
u32 trigger_irq;
|
2014-12-13 20:39:42 +00:00
|
|
|
INSERT_PADDING_WORDS(0x2f);
|
2017-01-28 04:16:36 +00:00
|
|
|
RasterizerRegs rasterizer;
|
2014-08-16 12:06:40 +00:00
|
|
|
|
|
|
|
struct TextureConfig {
|
2016-04-18 08:44:30 +00:00
|
|
|
enum TextureType : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
Texture2D = 0,
|
|
|
|
TextureCube = 1,
|
|
|
|
Shadow2D = 2,
|
2016-04-18 08:44:30 +00:00
|
|
|
Projection2D = 3,
|
2016-09-18 00:38:01 +00:00
|
|
|
ShadowCube = 4,
|
|
|
|
Disabled = 5,
|
2016-04-18 08:44:30 +00:00
|
|
|
};
|
|
|
|
|
2014-12-04 16:37:59 +00:00
|
|
|
enum WrapMode : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
ClampToEdge = 0,
|
|
|
|
ClampToBorder = 1,
|
|
|
|
Repeat = 2,
|
2015-01-03 12:33:57 +00:00
|
|
|
MirroredRepeat = 3,
|
2014-12-04 16:37:59 +00:00
|
|
|
};
|
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
enum TextureFilter : u32 {
|
|
|
|
Nearest = 0,
|
|
|
|
Linear = 1,
|
|
|
|
};
|
2015-07-21 21:26:09 +00:00
|
|
|
|
2015-07-07 21:36:06 +00:00
|
|
|
union {
|
2015-08-30 12:15:35 +00:00
|
|
|
u32 raw;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 8, u32> r;
|
|
|
|
BitField<8, 8, u32> g;
|
2015-07-07 21:36:06 +00:00
|
|
|
BitField<16, 8, u32> b;
|
|
|
|
BitField<24, 8, u32> a;
|
|
|
|
} border_color;
|
2014-08-16 12:06:40 +00:00
|
|
|
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 16, u32> height;
|
2014-08-16 12:06:40 +00:00
|
|
|
BitField<16, 16, u32> width;
|
|
|
|
};
|
|
|
|
|
2014-12-04 16:37:59 +00:00
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<1, 1, TextureFilter> mag_filter;
|
|
|
|
BitField<2, 1, TextureFilter> min_filter;
|
|
|
|
BitField<8, 2, WrapMode> wrap_t;
|
2015-07-19 22:26:50 +00:00
|
|
|
BitField<12, 2, WrapMode> wrap_s;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<28, 2, TextureType>
|
|
|
|
type; ///< @note Only valid for texture 0 according to 3DBrew.
|
2014-12-04 16:37:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x1);
|
2014-08-16 12:06:40 +00:00
|
|
|
|
|
|
|
u32 address;
|
|
|
|
|
2014-12-04 20:55:32 +00:00
|
|
|
u32 GetPhysicalAddress() const {
|
2014-12-15 20:28:45 +00:00
|
|
|
return DecodeAddressRegister(address);
|
2014-08-16 12:06:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// texture1 and texture2 store the texture format directly after the address
|
|
|
|
// whereas texture0 inserts some additional flags inbetween.
|
|
|
|
// Hence, we store the format separately so that all other parameters can be described
|
|
|
|
// in a single structure.
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class TextureFormat : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
RGBA8 = 0,
|
|
|
|
RGB8 = 1,
|
|
|
|
RGB5A1 = 2,
|
|
|
|
RGB565 = 3,
|
|
|
|
RGBA4 = 4,
|
|
|
|
IA8 = 5,
|
|
|
|
RG8 = 6, ///< @note Also called HILO8 in 3DBrew.
|
|
|
|
I8 = 7,
|
|
|
|
A8 = 8,
|
|
|
|
IA4 = 9,
|
|
|
|
I4 = 10,
|
|
|
|
A4 = 11,
|
|
|
|
ETC1 = 12, // compressed
|
|
|
|
ETC1A4 = 13, // compressed
|
2014-08-16 12:06:40 +00:00
|
|
|
};
|
|
|
|
|
2015-05-25 22:39:03 +00:00
|
|
|
enum class LogicOp : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
Clear = 0,
|
|
|
|
And = 1,
|
|
|
|
AndReverse = 2,
|
|
|
|
Copy = 3,
|
|
|
|
Set = 4,
|
|
|
|
CopyInverted = 5,
|
|
|
|
NoOp = 6,
|
|
|
|
Invert = 7,
|
|
|
|
Nand = 8,
|
|
|
|
Or = 9,
|
|
|
|
Nor = 10,
|
|
|
|
Xor = 11,
|
|
|
|
Equiv = 12,
|
|
|
|
AndInverted = 13,
|
|
|
|
OrReverse = 14,
|
|
|
|
OrInverted = 15,
|
2015-05-25 22:39:03 +00:00
|
|
|
};
|
|
|
|
|
2014-12-10 20:51:00 +00:00
|
|
|
static unsigned NibblesPerPixel(TextureFormat format) {
|
2014-12-04 19:41:01 +00:00
|
|
|
switch (format) {
|
|
|
|
case TextureFormat::RGBA8:
|
2014-12-10 20:51:00 +00:00
|
|
|
return 8;
|
2014-12-04 19:41:01 +00:00
|
|
|
|
|
|
|
case TextureFormat::RGB8:
|
2014-12-10 20:51:00 +00:00
|
|
|
return 6;
|
2014-12-04 19:41:01 +00:00
|
|
|
|
2015-02-26 03:44:55 +00:00
|
|
|
case TextureFormat::RGB5A1:
|
2014-12-04 19:41:01 +00:00
|
|
|
case TextureFormat::RGB565:
|
|
|
|
case TextureFormat::RGBA4:
|
2014-12-10 20:51:00 +00:00
|
|
|
case TextureFormat::IA8:
|
2015-05-14 20:39:46 +00:00
|
|
|
case TextureFormat::RG8:
|
2014-12-10 20:51:00 +00:00
|
|
|
return 4;
|
2014-12-04 19:41:01 +00:00
|
|
|
|
2015-07-19 18:15:23 +00:00
|
|
|
case TextureFormat::I4:
|
2014-12-10 20:51:00 +00:00
|
|
|
case TextureFormat::A4:
|
2014-08-24 15:23:02 +00:00
|
|
|
return 1;
|
2014-12-10 20:51:00 +00:00
|
|
|
|
|
|
|
case TextureFormat::I8:
|
|
|
|
case TextureFormat::A8:
|
|
|
|
case TextureFormat::IA4:
|
|
|
|
return 2;
|
2017-01-06 03:19:06 +00:00
|
|
|
|
|
|
|
default: // placeholder for yet unknown formats
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
return 0;
|
2014-12-04 19:41:01 +00:00
|
|
|
}
|
2014-08-24 15:23:02 +00:00
|
|
|
}
|
|
|
|
|
2014-12-06 18:10:08 +00:00
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 1, u32> texture0_enable;
|
|
|
|
BitField<1, 1, u32> texture1_enable;
|
|
|
|
BitField<2, 1, u32> texture2_enable;
|
2014-12-06 18:10:08 +00:00
|
|
|
};
|
2014-08-16 12:06:40 +00:00
|
|
|
TextureConfig texture0;
|
|
|
|
INSERT_PADDING_WORDS(0x8);
|
|
|
|
BitField<0, 4, TextureFormat> texture0_format;
|
2015-09-10 02:39:43 +00:00
|
|
|
BitField<0, 1, u32> fragment_lighting_enable;
|
|
|
|
INSERT_PADDING_WORDS(0x1);
|
2014-12-06 18:10:08 +00:00
|
|
|
TextureConfig texture1;
|
|
|
|
BitField<0, 4, TextureFormat> texture1_format;
|
|
|
|
INSERT_PADDING_WORDS(0x2);
|
|
|
|
TextureConfig texture2;
|
|
|
|
BitField<0, 4, TextureFormat> texture2_format;
|
|
|
|
INSERT_PADDING_WORDS(0x21);
|
|
|
|
|
|
|
|
struct FullTextureConfig {
|
|
|
|
const bool enabled;
|
|
|
|
const TextureConfig config;
|
|
|
|
const TextureFormat format;
|
|
|
|
};
|
|
|
|
const std::array<FullTextureConfig, 3> GetTextures() const {
|
2016-09-19 01:01:46 +00:00
|
|
|
return {{
|
|
|
|
{texture0_enable.ToBool(), texture0, texture0_format},
|
|
|
|
{texture1_enable.ToBool(), texture1, texture1_format},
|
|
|
|
{texture2_enable.ToBool(), texture2, texture2_format},
|
|
|
|
}};
|
2014-12-06 18:10:08 +00:00
|
|
|
}
|
2014-08-15 14:33:17 +00:00
|
|
|
|
|
|
|
// 0xc0-0xff: Texture Combiner (akin to glTexEnv)
|
|
|
|
struct TevStageConfig {
|
|
|
|
enum class Source : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
PrimaryColor = 0x0,
|
|
|
|
PrimaryFragmentColor = 0x1,
|
2015-05-25 22:45:05 +00:00
|
|
|
SecondaryFragmentColor = 0x2,
|
2015-01-03 12:49:53 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
Texture0 = 0x3,
|
|
|
|
Texture1 = 0x4,
|
|
|
|
Texture2 = 0x5,
|
|
|
|
Texture3 = 0x6,
|
2015-05-07 02:18:11 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
PreviousBuffer = 0xd,
|
|
|
|
Constant = 0xe,
|
|
|
|
Previous = 0xf,
|
2014-08-15 14:33:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class ColorModifier : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
SourceColor = 0x0,
|
2015-02-03 23:32:29 +00:00
|
|
|
OneMinusSourceColor = 0x1,
|
2016-09-18 00:38:01 +00:00
|
|
|
SourceAlpha = 0x2,
|
2015-02-03 23:32:29 +00:00
|
|
|
OneMinusSourceAlpha = 0x3,
|
2016-09-18 00:38:01 +00:00
|
|
|
SourceRed = 0x4,
|
|
|
|
OneMinusSourceRed = 0x5,
|
2015-02-03 23:32:29 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
SourceGreen = 0x8,
|
2015-02-03 23:32:29 +00:00
|
|
|
OneMinusSourceGreen = 0x9,
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
SourceBlue = 0xc,
|
|
|
|
OneMinusSourceBlue = 0xd,
|
2014-08-15 14:33:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class AlphaModifier : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
SourceAlpha = 0x0,
|
2015-02-03 23:32:29 +00:00
|
|
|
OneMinusSourceAlpha = 0x1,
|
2016-09-18 00:38:01 +00:00
|
|
|
SourceRed = 0x2,
|
|
|
|
OneMinusSourceRed = 0x3,
|
|
|
|
SourceGreen = 0x4,
|
2015-02-03 23:32:29 +00:00
|
|
|
OneMinusSourceGreen = 0x5,
|
2016-09-18 00:38:01 +00:00
|
|
|
SourceBlue = 0x6,
|
|
|
|
OneMinusSourceBlue = 0x7,
|
2014-08-15 14:33:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class Operation : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
Replace = 0,
|
|
|
|
Modulate = 1,
|
|
|
|
Add = 2,
|
|
|
|
AddSigned = 3,
|
|
|
|
Lerp = 4,
|
|
|
|
Subtract = 5,
|
|
|
|
Dot3_RGB = 6,
|
2015-01-03 12:45:10 +00:00
|
|
|
|
|
|
|
MultiplyThenAdd = 8,
|
|
|
|
AddThenMultiply = 9,
|
2014-08-15 14:33:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
2015-10-06 00:52:04 +00:00
|
|
|
u32 sources_raw;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 4, Source> color_source1;
|
|
|
|
BitField<4, 4, Source> color_source2;
|
|
|
|
BitField<8, 4, Source> color_source3;
|
2014-08-15 14:33:17 +00:00
|
|
|
BitField<16, 4, Source> alpha_source1;
|
|
|
|
BitField<20, 4, Source> alpha_source2;
|
|
|
|
BitField<24, 4, Source> alpha_source3;
|
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
2015-10-06 00:52:04 +00:00
|
|
|
u32 modifiers_raw;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 4, ColorModifier> color_modifier1;
|
|
|
|
BitField<4, 4, ColorModifier> color_modifier2;
|
|
|
|
BitField<8, 4, ColorModifier> color_modifier3;
|
2014-08-15 14:33:17 +00:00
|
|
|
BitField<12, 3, AlphaModifier> alpha_modifier1;
|
|
|
|
BitField<16, 3, AlphaModifier> alpha_modifier2;
|
|
|
|
BitField<20, 3, AlphaModifier> alpha_modifier3;
|
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
2015-10-06 00:52:04 +00:00
|
|
|
u32 ops_raw;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 4, Operation> color_op;
|
2014-08-15 14:33:17 +00:00
|
|
|
BitField<16, 4, Operation> alpha_op;
|
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
2015-08-30 12:15:35 +00:00
|
|
|
u32 const_color;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 8, u32> const_r;
|
|
|
|
BitField<8, 8, u32> const_g;
|
2014-08-15 14:33:17 +00:00
|
|
|
BitField<16, 8, u32> const_b;
|
|
|
|
BitField<24, 8, u32> const_a;
|
|
|
|
};
|
|
|
|
|
2015-05-07 22:37:59 +00:00
|
|
|
union {
|
2015-10-06 00:52:04 +00:00
|
|
|
u32 scales_raw;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 2, u32> color_scale;
|
2015-05-07 22:37:59 +00:00
|
|
|
BitField<16, 2, u32> alpha_scale;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline unsigned GetColorMultiplier() const {
|
|
|
|
return (color_scale < 3) ? (1 << color_scale) : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned GetAlphaMultiplier() const {
|
|
|
|
return (alpha_scale < 3) ? (1 << alpha_scale) : 1;
|
|
|
|
}
|
2014-08-15 14:33:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
TevStageConfig tev_stage0;
|
|
|
|
INSERT_PADDING_WORDS(0x3);
|
|
|
|
TevStageConfig tev_stage1;
|
|
|
|
INSERT_PADDING_WORDS(0x3);
|
|
|
|
TevStageConfig tev_stage2;
|
|
|
|
INSERT_PADDING_WORDS(0x3);
|
|
|
|
TevStageConfig tev_stage3;
|
2015-05-07 02:18:11 +00:00
|
|
|
INSERT_PADDING_WORDS(0x3);
|
|
|
|
|
2016-05-11 11:39:28 +00:00
|
|
|
enum class FogMode : u32 {
|
|
|
|
None = 0,
|
2016-09-18 00:38:01 +00:00
|
|
|
Fog = 5,
|
|
|
|
Gas = 7,
|
2016-05-11 11:39:28 +00:00
|
|
|
};
|
|
|
|
|
2015-05-07 02:18:11 +00:00
|
|
|
union {
|
2016-05-11 11:39:28 +00:00
|
|
|
BitField<0, 3, FogMode> fog_mode;
|
|
|
|
BitField<16, 1, u32> fog_flip;
|
2015-05-07 02:18:11 +00:00
|
|
|
|
2016-05-11 11:39:28 +00:00
|
|
|
union {
|
|
|
|
// Tev stages 0-3 write their output to the combiner buffer if the corresponding bit in
|
|
|
|
// these masks are set
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<8, 4, u32> update_mask_rgb;
|
2016-05-11 11:39:28 +00:00
|
|
|
BitField<12, 4, u32> update_mask_a;
|
2015-05-07 02:18:11 +00:00
|
|
|
|
2016-05-11 11:39:28 +00:00
|
|
|
bool TevStageUpdatesCombinerBufferColor(unsigned stage_index) const {
|
|
|
|
return (stage_index < 4) && (update_mask_rgb & (1 << stage_index));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TevStageUpdatesCombinerBufferAlpha(unsigned stage_index) const {
|
|
|
|
return (stage_index < 4) && (update_mask_a & (1 << stage_index));
|
|
|
|
}
|
|
|
|
} tev_combiner_buffer_input;
|
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
|
|
|
u32 raw;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 8, u32> r;
|
|
|
|
BitField<8, 8, u32> g;
|
2016-05-11 11:39:28 +00:00
|
|
|
BitField<16, 8, u32> b;
|
|
|
|
} fog_color;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x4);
|
|
|
|
|
|
|
|
BitField<0, 16, u32> fog_lut_offset;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x1);
|
|
|
|
|
|
|
|
u32 fog_lut_data[8];
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2014-08-15 14:33:17 +00:00
|
|
|
TevStageConfig tev_stage4;
|
|
|
|
INSERT_PADDING_WORDS(0x3);
|
|
|
|
TevStageConfig tev_stage5;
|
2015-05-07 02:18:11 +00:00
|
|
|
|
|
|
|
union {
|
2015-08-30 12:15:35 +00:00
|
|
|
u32 raw;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 8, u32> r;
|
|
|
|
BitField<8, 8, u32> g;
|
2015-05-07 02:18:11 +00:00
|
|
|
BitField<16, 8, u32> b;
|
|
|
|
BitField<24, 8, u32> a;
|
|
|
|
} tev_combiner_buffer_color;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x2);
|
2014-08-15 14:33:17 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
const std::array<Regs::TevStageConfig, 6> GetTevStages() const {
|
|
|
|
return {{tev_stage0, tev_stage1, tev_stage2, tev_stage3, tev_stage4, tev_stage5}};
|
2014-08-15 14:33:17 +00:00
|
|
|
};
|
2014-07-27 16:02:35 +00:00
|
|
|
|
2015-05-14 03:29:27 +00:00
|
|
|
enum class BlendEquation : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
Add = 0,
|
|
|
|
Subtract = 1,
|
2015-05-14 03:29:27 +00:00
|
|
|
ReverseSubtract = 2,
|
2016-09-18 00:38:01 +00:00
|
|
|
Min = 3,
|
|
|
|
Max = 4,
|
2015-05-14 03:29:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class BlendFactor : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
Zero = 0,
|
|
|
|
One = 1,
|
|
|
|
SourceColor = 2,
|
|
|
|
OneMinusSourceColor = 3,
|
|
|
|
DestColor = 4,
|
|
|
|
OneMinusDestColor = 5,
|
|
|
|
SourceAlpha = 6,
|
|
|
|
OneMinusSourceAlpha = 7,
|
|
|
|
DestAlpha = 8,
|
|
|
|
OneMinusDestAlpha = 9,
|
|
|
|
ConstantColor = 10,
|
|
|
|
OneMinusConstantColor = 11,
|
|
|
|
ConstantAlpha = 12,
|
|
|
|
OneMinusConstantAlpha = 13,
|
|
|
|
SourceAlphaSaturate = 14,
|
2015-05-14 03:29:27 +00:00
|
|
|
};
|
2014-12-21 01:55:51 +00:00
|
|
|
|
2015-05-14 03:29:27 +00:00
|
|
|
enum class CompareFunc : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
Never = 0,
|
|
|
|
Always = 1,
|
|
|
|
Equal = 2,
|
|
|
|
NotEqual = 3,
|
|
|
|
LessThan = 4,
|
|
|
|
LessThanOrEqual = 5,
|
|
|
|
GreaterThan = 6,
|
2015-05-14 03:29:27 +00:00
|
|
|
GreaterThanOrEqual = 7,
|
|
|
|
};
|
|
|
|
|
2015-05-21 14:51:31 +00:00
|
|
|
enum class StencilAction : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
Keep = 0,
|
|
|
|
Zero = 1,
|
|
|
|
Replace = 2,
|
|
|
|
Increment = 3,
|
|
|
|
Decrement = 4,
|
|
|
|
Invert = 5,
|
|
|
|
IncrementWrap = 6,
|
2016-09-19 01:01:46 +00:00
|
|
|
DecrementWrap = 7,
|
2015-05-21 14:51:31 +00:00
|
|
|
};
|
|
|
|
|
2015-05-14 03:29:27 +00:00
|
|
|
struct {
|
2014-12-21 01:55:51 +00:00
|
|
|
union {
|
|
|
|
// If false, logic blending is used
|
|
|
|
BitField<8, 1, u32> alphablend_enable;
|
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 8, BlendEquation> blend_equation_rgb;
|
|
|
|
BitField<8, 8, BlendEquation> blend_equation_a;
|
2014-12-21 01:55:51 +00:00
|
|
|
|
|
|
|
BitField<16, 4, BlendFactor> factor_source_rgb;
|
|
|
|
BitField<20, 4, BlendFactor> factor_dest_rgb;
|
|
|
|
|
|
|
|
BitField<24, 4, BlendFactor> factor_source_a;
|
|
|
|
BitField<28, 4, BlendFactor> factor_dest_a;
|
|
|
|
} alpha_blending;
|
|
|
|
|
|
|
|
union {
|
2015-05-25 22:39:03 +00:00
|
|
|
BitField<0, 4, LogicOp> logic_op;
|
|
|
|
};
|
2014-12-21 01:55:51 +00:00
|
|
|
|
2015-01-31 06:40:05 +00:00
|
|
|
union {
|
2015-08-30 12:15:35 +00:00
|
|
|
u32 raw;
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 8, u32> r;
|
|
|
|
BitField<8, 8, u32> g;
|
2015-01-31 06:40:05 +00:00
|
|
|
BitField<16, 8, u32> b;
|
|
|
|
BitField<24, 8, u32> a;
|
|
|
|
} blend_const;
|
2015-01-27 02:10:09 +00:00
|
|
|
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 1, u32> enable;
|
|
|
|
BitField<4, 3, CompareFunc> func;
|
|
|
|
BitField<8, 8, u32> ref;
|
2015-01-27 02:10:09 +00:00
|
|
|
} alpha_test;
|
|
|
|
|
2015-05-21 14:51:31 +00:00
|
|
|
struct {
|
|
|
|
union {
|
2015-08-20 15:10:35 +00:00
|
|
|
// Raw value of this register
|
|
|
|
u32 raw_func;
|
|
|
|
|
2015-05-21 14:51:31 +00:00
|
|
|
// If true, enable stencil testing
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 1, u32> enable;
|
2015-03-09 02:31:15 +00:00
|
|
|
|
2015-05-21 14:51:31 +00:00
|
|
|
// Comparison operation for stencil testing
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<4, 3, CompareFunc> func;
|
2015-05-21 14:51:31 +00:00
|
|
|
|
2015-08-20 15:10:35 +00:00
|
|
|
// Mask used to control writing to the stencil buffer
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<8, 8, u32> write_mask;
|
2015-05-21 14:51:31 +00:00
|
|
|
|
|
|
|
// Value to compare against for stencil testing
|
|
|
|
BitField<16, 8, u32> reference_value;
|
|
|
|
|
|
|
|
// Mask to apply on stencil test inputs
|
2015-08-20 15:10:35 +00:00
|
|
|
BitField<24, 8, u32> input_mask;
|
2015-05-21 14:51:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
2015-08-20 15:10:35 +00:00
|
|
|
// Raw value of this register
|
|
|
|
u32 raw_op;
|
|
|
|
|
2015-05-21 14:51:31 +00:00
|
|
|
// Action to perform when the stencil test fails
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 3, StencilAction> action_stencil_fail;
|
2015-05-21 14:51:31 +00:00
|
|
|
|
|
|
|
// Action to perform when stencil testing passed but depth testing fails
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<4, 3, StencilAction> action_depth_fail;
|
2015-05-21 14:51:31 +00:00
|
|
|
|
|
|
|
// Action to perform when both stencil and depth testing pass
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<8, 3, StencilAction> action_depth_pass;
|
2015-05-21 14:51:31 +00:00
|
|
|
};
|
|
|
|
} stencil_test;
|
2014-12-21 01:55:51 +00:00
|
|
|
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 1, u32> depth_test_enable;
|
|
|
|
BitField<4, 3, CompareFunc> depth_test_func;
|
|
|
|
BitField<8, 1, u32> red_enable;
|
|
|
|
BitField<9, 1, u32> green_enable;
|
2015-01-27 22:26:09 +00:00
|
|
|
BitField<10, 1, u32> blue_enable;
|
|
|
|
BitField<11, 1, u32> alpha_enable;
|
2014-12-21 01:55:51 +00:00
|
|
|
BitField<12, 1, u32> depth_write_enable;
|
|
|
|
};
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x8);
|
|
|
|
} output_merger;
|
|
|
|
|
2015-05-14 03:29:27 +00:00
|
|
|
// Components are laid out in reverse byte order, most significant bits first.
|
|
|
|
enum class ColorFormat : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
RGBA8 = 0,
|
|
|
|
RGB8 = 1,
|
2015-05-14 03:29:27 +00:00
|
|
|
RGB5A1 = 2,
|
|
|
|
RGB565 = 3,
|
2016-09-18 00:38:01 +00:00
|
|
|
RGBA4 = 4,
|
2015-03-09 02:31:15 +00:00
|
|
|
};
|
|
|
|
|
2015-05-14 03:29:27 +00:00
|
|
|
enum class DepthFormat : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
D16 = 0,
|
|
|
|
D24 = 2,
|
2015-05-14 03:29:27 +00:00
|
|
|
D24S8 = 3,
|
2015-05-19 04:21:33 +00:00
|
|
|
};
|
2014-07-27 16:02:35 +00:00
|
|
|
|
2015-05-19 04:21:33 +00:00
|
|
|
// Returns the number of bytes in the specified color format
|
|
|
|
static unsigned BytesPerColorPixel(ColorFormat format) {
|
|
|
|
switch (format) {
|
|
|
|
case ColorFormat::RGBA8:
|
|
|
|
return 4;
|
|
|
|
case ColorFormat::RGB8:
|
|
|
|
return 3;
|
|
|
|
case ColorFormat::RGB5A1:
|
|
|
|
case ColorFormat::RGB565:
|
|
|
|
case ColorFormat::RGBA4:
|
|
|
|
return 2;
|
|
|
|
default:
|
|
|
|
LOG_CRITICAL(HW_GPU, "Unknown color format %u", format);
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-16 22:57:57 +00:00
|
|
|
struct FramebufferConfig {
|
2016-04-01 13:44:42 +00:00
|
|
|
INSERT_PADDING_WORDS(0x3);
|
|
|
|
|
|
|
|
union {
|
|
|
|
BitField<0, 4, u32> allow_color_write; // 0 = disable, else enable
|
|
|
|
};
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x1);
|
|
|
|
|
|
|
|
union {
|
|
|
|
BitField<0, 2, u32> allow_depth_stencil_write; // 0 = disable, else enable
|
|
|
|
};
|
2014-07-27 16:02:35 +00:00
|
|
|
|
2015-05-21 14:51:31 +00:00
|
|
|
DepthFormat depth_format; // TODO: Should be a BitField!
|
2015-05-19 04:21:33 +00:00
|
|
|
BitField<16, 3, ColorFormat> color_format;
|
2014-07-27 16:02:35 +00:00
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x4);
|
|
|
|
|
|
|
|
u32 depth_buffer_address;
|
|
|
|
u32 color_buffer_address;
|
|
|
|
|
|
|
|
union {
|
|
|
|
// Apparently, the framebuffer width is stored as expected,
|
|
|
|
// while the height is stored as the actual height minus one.
|
|
|
|
// Hence, don't access these fields directly but use the accessors
|
|
|
|
// GetWidth() and GetHeight() instead.
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 11, u32> width;
|
2014-07-27 16:02:35 +00:00
|
|
|
BitField<12, 10, u32> height;
|
|
|
|
};
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x1);
|
|
|
|
|
2014-12-15 20:28:45 +00:00
|
|
|
inline u32 GetColorBufferPhysicalAddress() const {
|
|
|
|
return DecodeAddressRegister(color_buffer_address);
|
2014-07-27 16:02:35 +00:00
|
|
|
}
|
2014-12-15 20:28:45 +00:00
|
|
|
inline u32 GetDepthBufferPhysicalAddress() const {
|
|
|
|
return DecodeAddressRegister(depth_buffer_address);
|
2014-07-27 16:02:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline u32 GetWidth() const {
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline u32 GetHeight() const {
|
|
|
|
return height + 1;
|
|
|
|
}
|
|
|
|
} framebuffer;
|
|
|
|
|
2015-05-14 03:29:27 +00:00
|
|
|
// Returns the number of bytes in the specified depth format
|
|
|
|
static u32 BytesPerDepthPixel(DepthFormat format) {
|
|
|
|
switch (format) {
|
|
|
|
case DepthFormat::D16:
|
|
|
|
return 2;
|
|
|
|
case DepthFormat::D24:
|
|
|
|
return 3;
|
|
|
|
case DepthFormat::D24S8:
|
|
|
|
return 4;
|
|
|
|
default:
|
|
|
|
LOG_CRITICAL(HW_GPU, "Unknown depth format %u", format);
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the number of bits per depth component of the specified depth format
|
|
|
|
static u32 DepthBitsPerPixel(DepthFormat format) {
|
|
|
|
switch (format) {
|
|
|
|
case DepthFormat::D16:
|
|
|
|
return 16;
|
|
|
|
case DepthFormat::D24:
|
|
|
|
case DepthFormat::D24S8:
|
|
|
|
return 24;
|
|
|
|
default:
|
|
|
|
LOG_CRITICAL(HW_GPU, "Unknown depth format %u", format);
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-12 22:47:15 +00:00
|
|
|
INSERT_PADDING_WORDS(0x20);
|
|
|
|
|
2015-09-10 02:39:43 +00:00
|
|
|
enum class LightingSampler {
|
|
|
|
Distribution0 = 0,
|
|
|
|
Distribution1 = 1,
|
|
|
|
Fresnel = 3,
|
2015-11-26 01:25:02 +00:00
|
|
|
ReflectBlue = 4,
|
|
|
|
ReflectGreen = 5,
|
|
|
|
ReflectRed = 6,
|
2015-09-10 02:39:43 +00:00
|
|
|
SpotlightAttenuation = 8,
|
|
|
|
DistanceAttenuation = 16,
|
|
|
|
};
|
|
|
|
|
2015-11-20 00:00:42 +00:00
|
|
|
/**
|
|
|
|
* Pica fragment lighting supports using different LUTs for each lighting component:
|
|
|
|
* Reflectance R, G, and B channels, distribution function for specular components 0 and 1,
|
|
|
|
* fresnel factor, and spotlight attenuation. Furthermore, which LUTs are used for each channel
|
|
|
|
* (or whether a channel is enabled at all) is specified by various pre-defined lighting
|
|
|
|
* configurations. With configurations that require more LUTs, more cycles are required on HW to
|
|
|
|
* perform lighting computations.
|
|
|
|
*/
|
|
|
|
enum class LightingConfig {
|
|
|
|
Config0 = 0, ///< Reflect Red, Distribution 0, Spotlight
|
|
|
|
Config1 = 1, ///< Reflect Red, Fresnel, Spotlight
|
|
|
|
Config2 = 2, ///< Reflect Red, Distribution 0/1
|
|
|
|
Config3 = 3, ///< Distribution 0/1, Fresnel
|
|
|
|
Config4 = 4, ///< Reflect Red/Green/Blue, Distribution 0/1, Spotlight
|
|
|
|
Config5 = 5, ///< Reflect Red/Green/Blue, Distribution 0, Fresnel, Spotlight
|
|
|
|
Config6 = 6, ///< Reflect Red, Distribution 0/1, Fresnel, Spotlight
|
|
|
|
Config7 = 8, ///< Reflect Red/Green/Blue, Distribution 0/1, Fresnel, Spotlight
|
|
|
|
///< NOTE: '8' is intentional, '7' does not appear to be a valid configuration
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Selects which lighting components are affected by fresnel
|
|
|
|
enum class LightingFresnelSelector {
|
2016-09-18 00:38:01 +00:00
|
|
|
None = 0, ///< Fresnel is disabled
|
|
|
|
PrimaryAlpha = 1, ///< Primary (diffuse) lighting alpha is affected by fresnel
|
|
|
|
SecondaryAlpha = 2, ///< Secondary (specular) lighting alpha is affected by fresnel
|
|
|
|
Both =
|
|
|
|
PrimaryAlpha |
|
|
|
|
SecondaryAlpha, ///< Both primary and secondary lighting alphas are affected by fresnel
|
2015-11-20 00:00:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Factor used to scale the output of a lighting LUT
|
|
|
|
enum class LightingScale {
|
|
|
|
Scale1 = 0, ///< Scale is 1x
|
|
|
|
Scale2 = 1, ///< Scale is 2x
|
|
|
|
Scale4 = 2, ///< Scale is 4x
|
|
|
|
Scale8 = 3, ///< Scale is 8x
|
|
|
|
Scale1_4 = 6, ///< Scale is 0.25x
|
|
|
|
Scale1_2 = 7, ///< Scale is 0.5x
|
|
|
|
};
|
|
|
|
|
2015-09-10 02:39:43 +00:00
|
|
|
enum class LightingLutInput {
|
|
|
|
NH = 0, // Cosine of the angle between the normal and half-angle vectors
|
2015-11-15 04:23:08 +00:00
|
|
|
VH = 1, // Cosine of the angle between the view and half-angle vectors
|
|
|
|
NV = 2, // Cosine of the angle between the normal and the view vector
|
2015-09-10 02:39:43 +00:00
|
|
|
LN = 3, // Cosine of the angle between the light and the normal vectors
|
|
|
|
};
|
|
|
|
|
2015-11-26 01:49:48 +00:00
|
|
|
enum class LightingBumpMode : u32 {
|
|
|
|
None = 0,
|
|
|
|
NormalMap = 1,
|
|
|
|
TangentMap = 2,
|
|
|
|
};
|
|
|
|
|
2015-11-12 22:33:21 +00:00
|
|
|
union LightColor {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 10, u32> b;
|
2015-11-12 22:33:21 +00:00
|
|
|
BitField<10, 10, u32> g;
|
|
|
|
BitField<20, 10, u32> r;
|
|
|
|
|
|
|
|
Math::Vec3f ToVec3f() const {
|
2016-09-18 00:38:01 +00:00
|
|
|
// These fields are 10 bits wide, however 255 corresponds to 1.0f for each color
|
|
|
|
// component
|
2015-11-12 22:33:21 +00:00
|
|
|
return Math::MakeVec((f32)r / 255.f, (f32)g / 255.f, (f32)b / 255.f);
|
|
|
|
}
|
|
|
|
};
|
2015-09-12 22:47:15 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
/// Returns true if the specified lighting sampler is supported by the current Pica lighting
|
|
|
|
/// configuration
|
2015-11-20 03:42:06 +00:00
|
|
|
static bool IsLightingSamplerSupported(LightingConfig config, LightingSampler sampler) {
|
|
|
|
switch (sampler) {
|
|
|
|
case LightingSampler::Distribution0:
|
|
|
|
return (config != LightingConfig::Config1);
|
2015-11-26 01:25:02 +00:00
|
|
|
|
2015-11-20 03:42:06 +00:00
|
|
|
case LightingSampler::Distribution1:
|
2016-09-18 00:38:01 +00:00
|
|
|
return (config != LightingConfig::Config0) && (config != LightingConfig::Config1) &&
|
|
|
|
(config != LightingConfig::Config5);
|
2015-11-26 01:25:02 +00:00
|
|
|
|
2015-11-24 01:26:09 +00:00
|
|
|
case LightingSampler::Fresnel:
|
2016-09-18 00:38:01 +00:00
|
|
|
return (config != LightingConfig::Config0) && (config != LightingConfig::Config2) &&
|
|
|
|
(config != LightingConfig::Config4);
|
2015-11-26 01:25:02 +00:00
|
|
|
|
|
|
|
case LightingSampler::ReflectRed:
|
|
|
|
return (config != LightingConfig::Config3);
|
|
|
|
|
|
|
|
case LightingSampler::ReflectGreen:
|
|
|
|
case LightingSampler::ReflectBlue:
|
2016-09-18 00:38:01 +00:00
|
|
|
return (config == LightingConfig::Config4) || (config == LightingConfig::Config5) ||
|
|
|
|
(config == LightingConfig::Config7);
|
2016-03-27 04:04:16 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE_MSG("Regs::IsLightingSamplerSupported: Reached "
|
|
|
|
"unreachable section, sampler should be one "
|
|
|
|
"of Distribution0, Distribution1, Fresnel, "
|
|
|
|
"ReflectRed, ReflectGreen or ReflectBlue, instead "
|
2016-09-18 00:38:01 +00:00
|
|
|
"got %i",
|
|
|
|
static_cast<int>(config));
|
2015-11-20 03:42:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-12 22:33:21 +00:00
|
|
|
struct {
|
2015-09-12 22:47:15 +00:00
|
|
|
struct LightSrc {
|
2016-09-18 00:38:01 +00:00
|
|
|
LightColor specular_0; // material.specular_0 * light.specular_0
|
|
|
|
LightColor specular_1; // material.specular_1 * light.specular_1
|
|
|
|
LightColor diffuse; // material.diffuse * light.diffuse
|
|
|
|
LightColor ambient; // material.ambient * light.ambient
|
2015-09-12 22:47:15 +00:00
|
|
|
|
2016-05-23 21:11:06 +00:00
|
|
|
// Encoded as 16-bit floating point
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 16, u32> x;
|
2016-05-23 21:11:06 +00:00
|
|
|
BitField<16, 16, u32> y;
|
|
|
|
};
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 16, u32> z;
|
2015-09-10 02:39:43 +00:00
|
|
|
};
|
2015-09-12 22:47:15 +00:00
|
|
|
|
2016-05-23 21:11:06 +00:00
|
|
|
INSERT_PADDING_WORDS(0x3);
|
|
|
|
|
|
|
|
union {
|
|
|
|
BitField<0, 1, u32> directional;
|
|
|
|
BitField<1, 1, u32> two_sided_diffuse; // When disabled, clamp dot-product to 0
|
|
|
|
} config;
|
|
|
|
|
2015-09-12 22:47:15 +00:00
|
|
|
BitField<0, 20, u32> dist_atten_bias;
|
|
|
|
BitField<0, 20, u32> dist_atten_scale;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x4);
|
|
|
|
};
|
2016-09-18 00:38:01 +00:00
|
|
|
static_assert(sizeof(LightSrc) == 0x10 * sizeof(u32),
|
|
|
|
"LightSrc structure must be 0x10 words");
|
2015-09-12 22:47:15 +00:00
|
|
|
|
|
|
|
LightSrc light[8];
|
2016-02-05 02:51:56 +00:00
|
|
|
LightColor global_ambient; // Emission + (material.ambient * lighting.ambient)
|
2015-09-12 22:47:15 +00:00
|
|
|
INSERT_PADDING_WORDS(0x1);
|
2016-12-18 23:39:56 +00:00
|
|
|
BitField<0, 3, u32> max_light_index; // Number of enabled lights - 1
|
2015-11-15 04:23:08 +00:00
|
|
|
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<2, 2, LightingFresnelSelector> fresnel_selector;
|
|
|
|
BitField<4, 4, LightingConfig> config;
|
2015-11-26 01:49:48 +00:00
|
|
|
BitField<22, 2, u32> bump_selector; // 0: Texture 0, 1: Texture 1, 2: Texture 2
|
2016-02-05 02:51:56 +00:00
|
|
|
BitField<27, 1, u32> clamp_highlights;
|
|
|
|
BitField<28, 2, LightingBumpMode> bump_mode;
|
|
|
|
BitField<30, 1, u32> disable_bump_renorm;
|
2016-05-23 21:06:31 +00:00
|
|
|
} config0;
|
2015-09-12 22:47:15 +00:00
|
|
|
|
|
|
|
union {
|
2016-02-05 02:51:56 +00:00
|
|
|
BitField<16, 1, u32> disable_lut_d0;
|
|
|
|
BitField<17, 1, u32> disable_lut_d1;
|
|
|
|
BitField<19, 1, u32> disable_lut_fr;
|
|
|
|
BitField<20, 1, u32> disable_lut_rr;
|
|
|
|
BitField<21, 1, u32> disable_lut_rg;
|
|
|
|
BitField<22, 1, u32> disable_lut_rb;
|
2015-11-19 04:40:18 +00:00
|
|
|
|
2015-09-12 22:47:15 +00:00
|
|
|
// Each bit specifies whether distance attenuation should be applied for the
|
|
|
|
// corresponding light
|
|
|
|
|
2016-02-05 02:51:56 +00:00
|
|
|
BitField<24, 1, u32> disable_dist_atten_light_0;
|
|
|
|
BitField<25, 1, u32> disable_dist_atten_light_1;
|
|
|
|
BitField<26, 1, u32> disable_dist_atten_light_2;
|
|
|
|
BitField<27, 1, u32> disable_dist_atten_light_3;
|
|
|
|
BitField<28, 1, u32> disable_dist_atten_light_4;
|
|
|
|
BitField<29, 1, u32> disable_dist_atten_light_5;
|
|
|
|
BitField<30, 1, u32> disable_dist_atten_light_6;
|
|
|
|
BitField<31, 1, u32> disable_dist_atten_light_7;
|
2016-05-23 21:06:31 +00:00
|
|
|
} config1;
|
2015-11-19 03:55:24 +00:00
|
|
|
|
2016-02-05 02:51:56 +00:00
|
|
|
bool IsDistAttenDisabled(unsigned index) const {
|
2016-09-18 00:38:01 +00:00
|
|
|
const unsigned disable[] = {
|
|
|
|
config1.disable_dist_atten_light_0, config1.disable_dist_atten_light_1,
|
|
|
|
config1.disable_dist_atten_light_2, config1.disable_dist_atten_light_3,
|
|
|
|
config1.disable_dist_atten_light_4, config1.disable_dist_atten_light_5,
|
|
|
|
config1.disable_dist_atten_light_6, config1.disable_dist_atten_light_7};
|
2016-02-05 02:51:56 +00:00
|
|
|
return disable[index] != 0;
|
2015-11-19 03:55:24 +00:00
|
|
|
}
|
2015-09-12 22:47:15 +00:00
|
|
|
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 8, u32> index; ///< Index at which to set data in the LUT
|
|
|
|
BitField<8, 5, u32> type; ///< Type of LUT for which to set data
|
2015-09-12 22:47:15 +00:00
|
|
|
} lut_config;
|
|
|
|
|
|
|
|
BitField<0, 1, u32> disable;
|
|
|
|
INSERT_PADDING_WORDS(0x1);
|
|
|
|
|
|
|
|
// When data is written to any of these registers, it gets written to the lookup table of
|
|
|
|
// the selected type at the selected index, specified above in the `lut_config` register.
|
|
|
|
// With each write, `lut_config.index` is incremented. It does not matter which of these
|
|
|
|
// registers is written to, the behavior will be the same.
|
|
|
|
u32 lut_data[8];
|
|
|
|
|
2016-02-05 02:51:56 +00:00
|
|
|
// These are used to specify if absolute (abs) value should be used for each LUT index. When
|
|
|
|
// abs mode is disabled, LUT indexes are in the range of (-1.0, 1.0). Otherwise, they are in
|
|
|
|
// the range of (0.0, 1.0).
|
2015-09-10 02:39:43 +00:00
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<1, 1, u32> disable_d0;
|
|
|
|
BitField<5, 1, u32> disable_d1;
|
|
|
|
BitField<9, 1, u32> disable_sp;
|
2016-02-05 02:51:56 +00:00
|
|
|
BitField<13, 1, u32> disable_fr;
|
|
|
|
BitField<17, 1, u32> disable_rb;
|
|
|
|
BitField<21, 1, u32> disable_rg;
|
|
|
|
BitField<25, 1, u32> disable_rr;
|
2015-09-10 02:39:43 +00:00
|
|
|
} abs_lut_input;
|
|
|
|
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 3, LightingLutInput> d0;
|
|
|
|
BitField<4, 3, LightingLutInput> d1;
|
|
|
|
BitField<8, 3, LightingLutInput> sp;
|
2015-11-20 03:42:06 +00:00
|
|
|
BitField<12, 3, LightingLutInput> fr;
|
|
|
|
BitField<16, 3, LightingLutInput> rb;
|
|
|
|
BitField<20, 3, LightingLutInput> rg;
|
|
|
|
BitField<24, 3, LightingLutInput> rr;
|
2015-09-10 02:39:43 +00:00
|
|
|
} lut_input;
|
|
|
|
|
2015-11-20 00:00:42 +00:00
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 3, LightingScale> d0;
|
|
|
|
BitField<4, 3, LightingScale> d1;
|
|
|
|
BitField<8, 3, LightingScale> sp;
|
2015-11-20 00:00:42 +00:00
|
|
|
BitField<12, 3, LightingScale> fr;
|
|
|
|
BitField<16, 3, LightingScale> rb;
|
|
|
|
BitField<20, 3, LightingScale> rg;
|
|
|
|
BitField<24, 3, LightingScale> rr;
|
|
|
|
|
|
|
|
static float GetScale(LightingScale scale) {
|
|
|
|
switch (scale) {
|
|
|
|
case LightingScale::Scale1:
|
|
|
|
return 1.0f;
|
|
|
|
case LightingScale::Scale2:
|
|
|
|
return 2.0f;
|
|
|
|
case LightingScale::Scale4:
|
|
|
|
return 4.0f;
|
|
|
|
case LightingScale::Scale8:
|
|
|
|
return 8.0f;
|
|
|
|
case LightingScale::Scale1_4:
|
|
|
|
return 0.25f;
|
|
|
|
case LightingScale::Scale1_2:
|
|
|
|
return 0.5f;
|
|
|
|
}
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
} lut_scale;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x6);
|
2015-09-12 22:47:15 +00:00
|
|
|
|
|
|
|
union {
|
|
|
|
// There are 8 light enable "slots", corresponding to the total number of lights
|
|
|
|
// supported by Pica. For N enabled lights (specified by register 0x1c2, or 'src_num'
|
|
|
|
// above), the first N slots below will be set to integers within the range of 0-7,
|
|
|
|
// corresponding to the actual light that is enabled for each slot.
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 3, u32> slot_0;
|
|
|
|
BitField<4, 3, u32> slot_1;
|
|
|
|
BitField<8, 3, u32> slot_2;
|
2015-09-12 22:47:15 +00:00
|
|
|
BitField<12, 3, u32> slot_3;
|
|
|
|
BitField<16, 3, u32> slot_4;
|
|
|
|
BitField<20, 3, u32> slot_5;
|
|
|
|
BitField<24, 3, u32> slot_6;
|
|
|
|
BitField<28, 3, u32> slot_7;
|
|
|
|
|
|
|
|
unsigned GetNum(unsigned index) const {
|
2016-09-18 00:38:01 +00:00
|
|
|
const unsigned enable_slots[] = {slot_0, slot_1, slot_2, slot_3,
|
|
|
|
slot_4, slot_5, slot_6, slot_7};
|
2015-09-12 22:47:15 +00:00
|
|
|
return enable_slots[index];
|
|
|
|
}
|
|
|
|
} light_enable;
|
|
|
|
} lighting;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x26);
|
2014-08-03 14:00:52 +00:00
|
|
|
|
2015-04-11 18:53:35 +00:00
|
|
|
enum class VertexAttributeFormat : u64 {
|
|
|
|
BYTE = 0,
|
|
|
|
UBYTE = 1,
|
|
|
|
SHORT = 2,
|
|
|
|
FLOAT = 3,
|
|
|
|
};
|
2014-08-03 14:00:52 +00:00
|
|
|
|
2015-04-11 18:53:35 +00:00
|
|
|
struct {
|
2014-07-26 13:17:37 +00:00
|
|
|
BitField<0, 29, u32> base_address;
|
|
|
|
|
2014-12-15 20:28:45 +00:00
|
|
|
u32 GetPhysicalBaseAddress() const {
|
|
|
|
return DecodeAddressRegister(base_address);
|
2014-07-26 13:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Descriptor for internal vertex attributes
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 2, VertexAttributeFormat> format0; // size of one element
|
|
|
|
BitField<2, 2, u64> size0; // number of elements minus 1
|
|
|
|
BitField<4, 2, VertexAttributeFormat> format1;
|
|
|
|
BitField<6, 2, u64> size1;
|
|
|
|
BitField<8, 2, VertexAttributeFormat> format2;
|
|
|
|
BitField<10, 2, u64> size2;
|
|
|
|
BitField<12, 2, VertexAttributeFormat> format3;
|
|
|
|
BitField<14, 2, u64> size3;
|
|
|
|
BitField<16, 2, VertexAttributeFormat> format4;
|
|
|
|
BitField<18, 2, u64> size4;
|
|
|
|
BitField<20, 2, VertexAttributeFormat> format5;
|
|
|
|
BitField<22, 2, u64> size5;
|
|
|
|
BitField<24, 2, VertexAttributeFormat> format6;
|
|
|
|
BitField<26, 2, u64> size6;
|
|
|
|
BitField<28, 2, VertexAttributeFormat> format7;
|
|
|
|
BitField<30, 2, u64> size7;
|
|
|
|
BitField<32, 2, VertexAttributeFormat> format8;
|
|
|
|
BitField<34, 2, u64> size8;
|
|
|
|
BitField<36, 2, VertexAttributeFormat> format9;
|
|
|
|
BitField<38, 2, u64> size9;
|
|
|
|
BitField<40, 2, VertexAttributeFormat> format10;
|
|
|
|
BitField<42, 2, u64> size10;
|
|
|
|
BitField<44, 2, VertexAttributeFormat> format11;
|
|
|
|
BitField<46, 2, u64> size11;
|
2014-07-26 13:17:37 +00:00
|
|
|
|
|
|
|
BitField<48, 12, u64> attribute_mask;
|
|
|
|
|
|
|
|
// number of total attributes minus 1
|
2016-12-18 23:39:56 +00:00
|
|
|
BitField<60, 4, u64> max_attribute_index;
|
2014-07-26 13:17:37 +00:00
|
|
|
};
|
|
|
|
|
2015-04-11 18:53:35 +00:00
|
|
|
inline VertexAttributeFormat GetFormat(int n) const {
|
2016-09-18 00:38:01 +00:00
|
|
|
VertexAttributeFormat formats[] = {format0, format1, format2, format3,
|
|
|
|
format4, format5, format6, format7,
|
|
|
|
format8, format9, format10, format11};
|
2014-07-26 13:17:37 +00:00
|
|
|
return formats[n];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int GetNumElements(int n) const {
|
2016-09-18 00:38:01 +00:00
|
|
|
u64 sizes[] = {size0, size1, size2, size3, size4, size5,
|
|
|
|
size6, size7, size8, size9, size10, size11};
|
|
|
|
return (int)sizes[n] + 1;
|
2014-07-26 13:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline int GetElementSizeInBytes(int n) const {
|
2016-09-18 00:38:01 +00:00
|
|
|
return (GetFormat(n) == VertexAttributeFormat::FLOAT)
|
|
|
|
? 4
|
|
|
|
: (GetFormat(n) == VertexAttributeFormat::SHORT) ? 2 : 1;
|
2014-07-26 13:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline int GetStride(int n) const {
|
|
|
|
return GetNumElements(n) * GetElementSizeInBytes(n);
|
|
|
|
}
|
|
|
|
|
2015-04-11 18:53:35 +00:00
|
|
|
inline bool IsDefaultAttribute(int id) const {
|
2015-05-14 18:23:20 +00:00
|
|
|
return (id >= 12) || (attribute_mask & (1ULL << id)) != 0;
|
2015-04-11 18:53:35 +00:00
|
|
|
}
|
|
|
|
|
2014-07-26 13:17:37 +00:00
|
|
|
inline int GetNumTotalAttributes() const {
|
2016-12-18 23:39:56 +00:00
|
|
|
return (int)max_attribute_index + 1;
|
2014-07-26 13:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Attribute loaders map the source vertex data to input attributes
|
|
|
|
// This e.g. allows to load different attributes from different memory locations
|
2014-07-26 17:17:09 +00:00
|
|
|
struct {
|
2014-07-26 13:17:37 +00:00
|
|
|
// Source attribute data offset from the base address
|
|
|
|
u32 data_offset;
|
|
|
|
|
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 4, u64> comp0;
|
|
|
|
BitField<4, 4, u64> comp1;
|
|
|
|
BitField<8, 4, u64> comp2;
|
2014-07-26 13:17:37 +00:00
|
|
|
BitField<12, 4, u64> comp3;
|
|
|
|
BitField<16, 4, u64> comp4;
|
|
|
|
BitField<20, 4, u64> comp5;
|
|
|
|
BitField<24, 4, u64> comp6;
|
|
|
|
BitField<28, 4, u64> comp7;
|
|
|
|
BitField<32, 4, u64> comp8;
|
|
|
|
BitField<36, 4, u64> comp9;
|
|
|
|
BitField<40, 4, u64> comp10;
|
|
|
|
BitField<44, 4, u64> comp11;
|
|
|
|
|
|
|
|
// bytes for a single vertex in this loader
|
|
|
|
BitField<48, 8, u64> byte_count;
|
|
|
|
|
|
|
|
BitField<60, 4, u64> component_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline int GetComponent(int n) const {
|
2016-09-18 00:38:01 +00:00
|
|
|
u64 components[] = {comp0, comp1, comp2, comp3, comp4, comp5,
|
|
|
|
comp6, comp7, comp8, comp9, comp10, comp11};
|
2014-07-26 14:19:11 +00:00
|
|
|
return (int)components[n];
|
2014-07-26 13:17:37 +00:00
|
|
|
}
|
|
|
|
} attribute_loaders[12];
|
|
|
|
} vertex_attributes;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
enum IndexFormat : u32 {
|
|
|
|
BYTE = 0,
|
|
|
|
SHORT = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
|
|
|
BitField<0, 31, u32> offset; // relative to base attribute address
|
|
|
|
BitField<31, 1, IndexFormat> format;
|
|
|
|
};
|
|
|
|
} index_array;
|
|
|
|
|
2014-07-26 14:19:11 +00:00
|
|
|
// Number of vertices to render
|
|
|
|
u32 num_vertices;
|
|
|
|
|
2015-08-23 03:09:00 +00:00
|
|
|
INSERT_PADDING_WORDS(0x1);
|
|
|
|
|
|
|
|
// The index of the first vertex to render
|
|
|
|
u32 vertex_offset;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x3);
|
2014-07-26 14:19:11 +00:00
|
|
|
|
|
|
|
// These two trigger rendering of triangles
|
|
|
|
u32 trigger_draw;
|
|
|
|
u32 trigger_draw_indexed;
|
|
|
|
|
2015-04-11 18:53:35 +00:00
|
|
|
INSERT_PADDING_WORDS(0x2);
|
|
|
|
|
|
|
|
// These registers are used to setup the default "fall-back" vertex shader attributes
|
|
|
|
struct {
|
|
|
|
// Index of the current default attribute
|
|
|
|
u32 index;
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2015-04-11 18:53:35 +00:00
|
|
|
// Writing to these registers sets the "current" default attribute.
|
|
|
|
u32 set_value[3];
|
|
|
|
} vs_default_attributes_setup;
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2015-05-24 04:55:35 +00:00
|
|
|
INSERT_PADDING_WORDS(0x2);
|
|
|
|
|
|
|
|
struct {
|
|
|
|
// There are two channels that can be used to configure the next command buffer, which
|
|
|
|
// can be then executed by writing to the "trigger" registers. There are two reasons why a
|
|
|
|
// game might use this feature:
|
|
|
|
// 1) With this, an arbitrary number of additional command buffers may be executed in
|
|
|
|
// sequence without requiring any intervention of the CPU after the initial one is
|
|
|
|
// kicked off.
|
|
|
|
// 2) Games can configure these registers to provide a command list subroutine mechanism.
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 20, u32> size[2]; ///< Size (in bytes / 8) of each channel's command buffer
|
|
|
|
BitField<0, 28, u32> addr[2]; ///< Physical address / 8 of each channel's command buffer
|
2015-05-24 04:55:35 +00:00
|
|
|
u32 trigger[2]; ///< Triggers execution of the channel's command buffer when written to
|
|
|
|
|
|
|
|
unsigned GetSize(unsigned index) const {
|
|
|
|
ASSERT(index < 2);
|
|
|
|
return 8 * size[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
PAddr GetPhysicalAddress(unsigned index) const {
|
|
|
|
ASSERT(index < 2);
|
|
|
|
return (PAddr)(8 * addr[index]);
|
|
|
|
}
|
|
|
|
} command_buffer;
|
|
|
|
|
2016-12-19 00:50:04 +00:00
|
|
|
INSERT_PADDING_WORDS(4);
|
|
|
|
|
|
|
|
/// Number of input attributes to the vertex shader minus 1
|
|
|
|
BitField<0, 4, u32> max_input_attrib_index;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(2);
|
2016-03-03 03:16:38 +00:00
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
enum class GPUMode : u32 {
|
|
|
|
Drawing = 0,
|
|
|
|
Configuring = 1,
|
|
|
|
};
|
2016-03-03 03:16:38 +00:00
|
|
|
|
|
|
|
GPUMode gpu_mode;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x18);
|
2014-07-27 12:58:30 +00:00
|
|
|
|
|
|
|
enum class TriangleTopology : u32 {
|
2016-09-18 00:38:01 +00:00
|
|
|
List = 0,
|
|
|
|
Strip = 1,
|
|
|
|
Fan = 2,
|
2015-03-21 23:31:40 +00:00
|
|
|
Shader = 3, // Programmable setup unit implemented in a geometry shader
|
2014-07-27 12:58:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
BitField<8, 2, TriangleTopology> triangle_topology;
|
|
|
|
|
2015-08-31 14:14:18 +00:00
|
|
|
u32 restart_primitive;
|
|
|
|
|
|
|
|
INSERT_PADDING_WORDS(0x20);
|
2014-12-13 20:20:47 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
struct ShaderConfig {
|
|
|
|
BitField<0, 16, u32> bool_uniforms;
|
2014-12-13 20:20:47 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
union {
|
2016-09-18 00:38:01 +00:00
|
|
|
BitField<0, 8, u32> x;
|
|
|
|
BitField<8, 8, u32> y;
|
2015-03-21 23:31:40 +00:00
|
|
|
BitField<16, 8, u32> z;
|
|
|
|
BitField<24, 8, u32> w;
|
|
|
|
} int_uniforms[4];
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2016-03-05 22:49:23 +00:00
|
|
|
INSERT_PADDING_WORDS(0x4);
|
|
|
|
|
|
|
|
union {
|
|
|
|
// Number of input attributes to shader unit - 1
|
2016-12-18 23:39:56 +00:00
|
|
|
BitField<0, 4, u32> max_input_attribute_index;
|
2016-03-05 22:49:23 +00:00
|
|
|
};
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
// Offset to shader program entry point (in words)
|
|
|
|
BitField<0, 16, u32> main_offset;
|
|
|
|
|
2016-12-19 01:25:03 +00:00
|
|
|
/// Maps input attributes to registers. 4-bits per attribute, specifying a register index
|
|
|
|
u32 input_attribute_to_register_map_low;
|
|
|
|
u32 input_attribute_to_register_map_high;
|
|
|
|
|
|
|
|
unsigned int GetRegisterForAttribute(unsigned int attribute_index) const {
|
|
|
|
u64 map = ((u64)input_attribute_to_register_map_high << 32) |
|
|
|
|
(u64)input_attribute_to_register_map_low;
|
|
|
|
return (map >> (attribute_index * 4)) & 0b1111;
|
|
|
|
}
|
2015-03-21 23:31:40 +00:00
|
|
|
|
2016-03-13 02:06:57 +00:00
|
|
|
BitField<0, 16, u32> output_mask;
|
|
|
|
|
|
|
|
// 0x28E, CODETRANSFER_END
|
|
|
|
INSERT_PADDING_WORDS(0x2);
|
2015-03-21 23:31:40 +00:00
|
|
|
|
|
|
|
struct {
|
2016-09-19 01:01:46 +00:00
|
|
|
enum Format : u32 {
|
|
|
|
FLOAT24 = 0,
|
|
|
|
FLOAT32 = 1,
|
|
|
|
};
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
bool IsFloat32() const {
|
|
|
|
return format == FLOAT32;
|
|
|
|
}
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
union {
|
|
|
|
// Index of the next uniform to write to
|
2016-09-18 00:38:01 +00:00
|
|
|
// TODO: ctrulib uses 8 bits for this, however that seems to yield lots of invalid
|
|
|
|
// indices
|
2015-03-21 23:31:40 +00:00
|
|
|
// TODO: Maybe the uppermost index is for the geometry shader? Investigate!
|
|
|
|
BitField<0, 7, u32> index;
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
BitField<31, 1, Format> format;
|
|
|
|
};
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
// Writing to these registers sets the current uniform.
|
|
|
|
u32 set_value[8];
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
} uniform_setup;
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
INSERT_PADDING_WORDS(0x2);
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
struct {
|
|
|
|
// Offset of the next instruction to write code to.
|
|
|
|
// Incremented with each instruction write.
|
|
|
|
u32 offset;
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
// Writing to these registers sets the "current" word in the shader program.
|
|
|
|
u32 set_word[8];
|
|
|
|
} program;
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
INSERT_PADDING_WORDS(0x1);
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
// This register group is used to load an internal table of swizzling patterns,
|
|
|
|
// which are indexed by each shader instruction to specify vector component swizzling.
|
|
|
|
struct {
|
|
|
|
// Offset of the next swizzle pattern to write code to.
|
|
|
|
// Incremented with each instruction write.
|
|
|
|
u32 offset;
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
// Writing to these registers sets the current swizzle pattern in the table.
|
|
|
|
u32 set_word[8];
|
|
|
|
} swizzle_patterns;
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
INSERT_PADDING_WORDS(0x2);
|
|
|
|
};
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
ShaderConfig gs;
|
|
|
|
ShaderConfig vs;
|
2014-07-26 17:17:09 +00:00
|
|
|
|
2015-03-21 23:31:40 +00:00
|
|
|
INSERT_PADDING_WORDS(0x20);
|
2014-08-03 14:00:52 +00:00
|
|
|
|
|
|
|
// Map register indices to names readable by humans
|
|
|
|
// Used for debugging purposes, so performance is not an issue here
|
2015-07-25 21:26:34 +00:00
|
|
|
static std::string GetCommandName(int index);
|
2014-08-03 14:00:52 +00:00
|
|
|
|
2016-03-17 04:29:47 +00:00
|
|
|
static constexpr size_t NumIds() {
|
2014-08-03 14:00:52 +00:00
|
|
|
return sizeof(Regs) / sizeof(u32);
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
const u32& operator[](int index) const {
|
2016-03-17 04:27:12 +00:00
|
|
|
const u32* content = reinterpret_cast<const u32*>(this);
|
2014-08-03 14:00:52 +00:00
|
|
|
return content[index];
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
u32& operator[](int index) {
|
2016-03-17 04:27:12 +00:00
|
|
|
u32* content = reinterpret_cast<u32*>(this);
|
2014-08-03 14:00:52 +00:00
|
|
|
return content[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/*
|
|
|
|
* Most physical addresses which Pica registers refer to are 8-byte aligned.
|
|
|
|
* This function should be used to get the address from a raw register value.
|
|
|
|
*/
|
|
|
|
static inline u32 DecodeAddressRegister(u32 register_value) {
|
|
|
|
return register_value * 8;
|
|
|
|
}
|
2014-05-17 21:07:51 +00:00
|
|
|
};
|
|
|
|
|
2014-08-03 14:00:52 +00:00
|
|
|
// TODO: MSVC does not support using offsetof() on non-static data members even though this
|
|
|
|
// is technically allowed since C++11. This macro should be enabled once MSVC adds
|
|
|
|
// support for that.
|
|
|
|
#ifndef _MSC_VER
|
2016-09-18 00:38:01 +00:00
|
|
|
#define ASSERT_REG_POSITION(field_name, position) \
|
|
|
|
static_assert(offsetof(Regs, field_name) == position * 4, \
|
|
|
|
"Field " #field_name " has invalid position")
|
2014-08-03 14:00:52 +00:00
|
|
|
|
2014-12-03 06:04:22 +00:00
|
|
|
ASSERT_REG_POSITION(trigger_irq, 0x10);
|
2017-01-28 04:16:36 +00:00
|
|
|
|
|
|
|
ASSERT_REG_POSITION(rasterizer, 0x40);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.cull_mode, 0x40);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.viewport_size_x, 0x41);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.viewport_size_y, 0x43);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.viewport_depth_range, 0x4d);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.viewport_depth_near_plane, 0x4e);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.vs_output_attributes[0], 0x50);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.vs_output_attributes[1], 0x51);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.scissor_test, 0x65);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.viewport_corner, 0x68);
|
|
|
|
ASSERT_REG_POSITION(rasterizer.depthmap_enable, 0x6D);
|
|
|
|
|
2014-12-06 18:10:08 +00:00
|
|
|
ASSERT_REG_POSITION(texture0_enable, 0x80);
|
2014-08-16 12:06:40 +00:00
|
|
|
ASSERT_REG_POSITION(texture0, 0x81);
|
|
|
|
ASSERT_REG_POSITION(texture0_format, 0x8e);
|
2015-09-10 02:39:43 +00:00
|
|
|
ASSERT_REG_POSITION(fragment_lighting_enable, 0x8f);
|
2014-12-06 18:10:08 +00:00
|
|
|
ASSERT_REG_POSITION(texture1, 0x91);
|
|
|
|
ASSERT_REG_POSITION(texture1_format, 0x96);
|
|
|
|
ASSERT_REG_POSITION(texture2, 0x99);
|
|
|
|
ASSERT_REG_POSITION(texture2_format, 0x9e);
|
2014-08-15 14:33:17 +00:00
|
|
|
ASSERT_REG_POSITION(tev_stage0, 0xc0);
|
|
|
|
ASSERT_REG_POSITION(tev_stage1, 0xc8);
|
|
|
|
ASSERT_REG_POSITION(tev_stage2, 0xd0);
|
|
|
|
ASSERT_REG_POSITION(tev_stage3, 0xd8);
|
2015-05-07 02:18:11 +00:00
|
|
|
ASSERT_REG_POSITION(tev_combiner_buffer_input, 0xe0);
|
2016-05-11 11:39:28 +00:00
|
|
|
ASSERT_REG_POSITION(fog_mode, 0xe0);
|
|
|
|
ASSERT_REG_POSITION(fog_color, 0xe1);
|
|
|
|
ASSERT_REG_POSITION(fog_lut_offset, 0xe6);
|
|
|
|
ASSERT_REG_POSITION(fog_lut_data, 0xe8);
|
2014-08-15 14:33:17 +00:00
|
|
|
ASSERT_REG_POSITION(tev_stage4, 0xf0);
|
|
|
|
ASSERT_REG_POSITION(tev_stage5, 0xf8);
|
2015-05-07 02:18:11 +00:00
|
|
|
ASSERT_REG_POSITION(tev_combiner_buffer_color, 0xfd);
|
2014-12-21 01:55:51 +00:00
|
|
|
ASSERT_REG_POSITION(output_merger, 0x100);
|
2014-07-27 16:02:35 +00:00
|
|
|
ASSERT_REG_POSITION(framebuffer, 0x110);
|
2015-09-10 02:39:43 +00:00
|
|
|
ASSERT_REG_POSITION(lighting, 0x140);
|
2014-07-26 13:17:37 +00:00
|
|
|
ASSERT_REG_POSITION(vertex_attributes, 0x200);
|
|
|
|
ASSERT_REG_POSITION(index_array, 0x227);
|
2014-07-26 14:19:11 +00:00
|
|
|
ASSERT_REG_POSITION(num_vertices, 0x228);
|
2015-08-31 12:02:30 +00:00
|
|
|
ASSERT_REG_POSITION(vertex_offset, 0x22a);
|
2014-07-26 14:19:11 +00:00
|
|
|
ASSERT_REG_POSITION(trigger_draw, 0x22e);
|
|
|
|
ASSERT_REG_POSITION(trigger_draw_indexed, 0x22f);
|
2015-04-11 18:53:35 +00:00
|
|
|
ASSERT_REG_POSITION(vs_default_attributes_setup, 0x232);
|
2015-05-24 04:55:35 +00:00
|
|
|
ASSERT_REG_POSITION(command_buffer, 0x238);
|
2016-03-03 03:16:38 +00:00
|
|
|
ASSERT_REG_POSITION(gpu_mode, 0x245);
|
2014-07-27 12:58:30 +00:00
|
|
|
ASSERT_REG_POSITION(triangle_topology, 0x25e);
|
2015-08-31 14:14:18 +00:00
|
|
|
ASSERT_REG_POSITION(restart_primitive, 0x25f);
|
2015-03-21 23:31:40 +00:00
|
|
|
ASSERT_REG_POSITION(gs, 0x280);
|
|
|
|
ASSERT_REG_POSITION(vs, 0x2b0);
|
2014-05-18 20:50:41 +00:00
|
|
|
|
2014-08-03 14:00:52 +00:00
|
|
|
#undef ASSERT_REG_POSITION
|
|
|
|
#endif // !defined(_MSC_VER)
|
2014-05-18 20:50:41 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
static_assert(sizeof(Regs::ShaderConfig) == 0x30 * sizeof(u32),
|
|
|
|
"ShaderConfig structure has incorrect size");
|
2015-03-21 23:31:40 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
// The total number of registers is chosen arbitrarily, but let's make sure it's not some odd value
|
|
|
|
// anyway.
|
|
|
|
static_assert(sizeof(Regs) <= 0x300 * sizeof(u32),
|
|
|
|
"Register set structure larger than it should be");
|
|
|
|
static_assert(sizeof(Regs) >= 0x300 * sizeof(u32),
|
|
|
|
"Register set structure smaller than it should be");
|
2014-05-18 20:50:41 +00:00
|
|
|
|
2015-05-14 03:29:27 +00:00
|
|
|
/// Initialize Pica state
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
/// Shutdown Pica state
|
|
|
|
void Shutdown();
|
|
|
|
|
2014-05-18 20:50:41 +00:00
|
|
|
} // namespace
|