mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
SW/Tev: Use TevColorRef/TevAlphaRef instead of raw s16 pointers
This commit is contained in:
@ -3,10 +3,90 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
|
||||
#include "Common/EnumMap.h"
|
||||
#include "VideoCommon/BPMemory.h"
|
||||
|
||||
class Tev
|
||||
{
|
||||
struct TevColor
|
||||
{
|
||||
constexpr TevColor() = default;
|
||||
constexpr explicit TevColor(s16 a, s16 b, s16 g, s16 r) : a(a), b(b), g(g), r(r) {}
|
||||
|
||||
s16 a = 0;
|
||||
s16 b = 0;
|
||||
s16 g = 0;
|
||||
s16 r = 0;
|
||||
|
||||
constexpr static TevColor All(s16 value) { return TevColor(value, value, value, value); }
|
||||
|
||||
constexpr s16& operator[](int index)
|
||||
{
|
||||
switch (index)
|
||||
{
|
||||
case ALP_C:
|
||||
return a;
|
||||
case BLU_C:
|
||||
return b;
|
||||
case GRN_C:
|
||||
return g;
|
||||
case RED_C:
|
||||
return r;
|
||||
default:
|
||||
// invalid
|
||||
return a;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
struct TevColorRef
|
||||
{
|
||||
constexpr explicit TevColorRef(const s16& r, const s16& g, const s16& b) : r(r), g(g), b(b) {}
|
||||
|
||||
const s16& r;
|
||||
const s16& g;
|
||||
const s16& b;
|
||||
|
||||
constexpr static TevColorRef Color(const TevColor& color)
|
||||
{
|
||||
return TevColorRef(color.r, color.g, color.b);
|
||||
}
|
||||
constexpr static TevColorRef All(const s16& value) { return TevColorRef(value, value, value); }
|
||||
constexpr static TevColorRef Alpha(const TevColor& color) { return All(color.a); }
|
||||
};
|
||||
|
||||
struct TevAlphaRef
|
||||
{
|
||||
constexpr explicit TevAlphaRef(const TevColor& color) : a(color.a) {}
|
||||
constexpr explicit TevAlphaRef(const s16& a) : a(a) {}
|
||||
|
||||
const s16& a;
|
||||
};
|
||||
|
||||
struct TevKonstRef
|
||||
{
|
||||
constexpr explicit TevKonstRef(const s16& a, const s16& r, const s16& g, const s16& b)
|
||||
: a(a), r(r), g(g), b(b)
|
||||
{
|
||||
}
|
||||
|
||||
const s16& a;
|
||||
const s16& r;
|
||||
const s16& g;
|
||||
const s16& b;
|
||||
|
||||
constexpr static TevKonstRef Value(const s16& value)
|
||||
{
|
||||
return TevKonstRef(value, value, value, value);
|
||||
}
|
||||
constexpr static TevKonstRef Konst(const s16& alpha, const TevColor& color)
|
||||
{
|
||||
return TevKonstRef(alpha, color.r, color.g, color.b);
|
||||
}
|
||||
};
|
||||
|
||||
struct InputRegType
|
||||
{
|
||||
unsigned a : 8;
|
||||
@ -22,33 +102,97 @@ class Tev
|
||||
};
|
||||
|
||||
// color order: ABGR
|
||||
s16 Reg[4][4];
|
||||
s16 KonstantColors[4][4];
|
||||
s16 TexColor[4];
|
||||
s16 RasColor[4];
|
||||
s16 StageKonst[4];
|
||||
s16 Zero16[4];
|
||||
std::array<TevColor, 4> Reg;
|
||||
std::array<TevColor, 4> KonstantColors;
|
||||
TevColor TexColor;
|
||||
TevColor RasColor;
|
||||
TevColor StageKonst;
|
||||
|
||||
// Fixed constants, corresponding to KonstSel
|
||||
static constexpr s16 V0 = 0;
|
||||
static constexpr s16 V1_8 = 32;
|
||||
static constexpr s16 V1_4 = 64;
|
||||
static constexpr s16 V3_8 = 96;
|
||||
static constexpr s16 V1_2 = 128;
|
||||
static constexpr s16 V5_8 = 159;
|
||||
static constexpr s16 V3_4 = 191;
|
||||
static constexpr s16 V7_8 = 223;
|
||||
static constexpr s16 V1 = 255;
|
||||
|
||||
s16 FixedConstants[9];
|
||||
u8 AlphaBump;
|
||||
u8 IndirectTex[4][4];
|
||||
TextureCoordinateType TexCoord;
|
||||
|
||||
s16* m_ColorInputLUT[16][3];
|
||||
s16* m_AlphaInputLUT[8]; // values must point to ABGR color
|
||||
s16* m_KonstLUT[32][4];
|
||||
const Common::EnumMap<TevColorRef, TevColorArg::Zero> m_ColorInputLUT{
|
||||
TevColorRef::Color(Reg[0]), // prev.rgb
|
||||
TevColorRef::Alpha(Reg[0]), // prev.aaa
|
||||
TevColorRef::Color(Reg[1]), // c0.rgb
|
||||
TevColorRef::Alpha(Reg[1]), // c0.aaa
|
||||
TevColorRef::Color(Reg[2]), // c1.rgb
|
||||
TevColorRef::Alpha(Reg[2]), // c1.aaa
|
||||
TevColorRef::Color(Reg[3]), // c2.rgb
|
||||
TevColorRef::Alpha(Reg[3]), // c2.aaa
|
||||
TevColorRef::Color(TexColor), // tex.rgb
|
||||
TevColorRef::Alpha(TexColor), // tex.aaa
|
||||
TevColorRef::Color(RasColor), // ras.rgb
|
||||
TevColorRef::Alpha(RasColor), // ras.aaa
|
||||
TevColorRef::All(V1), // one
|
||||
TevColorRef::All(V1_2), // half
|
||||
TevColorRef::Color(StageKonst), // konst
|
||||
TevColorRef::All(V0), // zero
|
||||
};
|
||||
const Common::EnumMap<TevAlphaRef, TevAlphaArg::Zero> m_AlphaInputLUT{
|
||||
TevAlphaRef(Reg[0]), // prev
|
||||
TevAlphaRef(Reg[1]), // c0
|
||||
TevAlphaRef(Reg[2]), // c1
|
||||
TevAlphaRef(Reg[3]), // c2
|
||||
TevAlphaRef(TexColor), // tex
|
||||
TevAlphaRef(RasColor), // ras
|
||||
TevAlphaRef(StageKonst), // konst
|
||||
TevAlphaRef(V0), // zero
|
||||
};
|
||||
const Common::EnumMap<TevKonstRef, KonstSel::K3_A> m_KonstLUT{
|
||||
TevKonstRef::Value(V1), // 1
|
||||
TevKonstRef::Value(V7_8), // 7/8
|
||||
TevKonstRef::Value(V3_4), // 3/4
|
||||
TevKonstRef::Value(V5_8), // 5/8
|
||||
TevKonstRef::Value(V1_2), // 1/2
|
||||
TevKonstRef::Value(V3_8), // 3/8
|
||||
TevKonstRef::Value(V1_4), // 1/4
|
||||
TevKonstRef::Value(V1_8), // 1/8
|
||||
|
||||
// These are "invalid" values, not meant to be used. On hardware,
|
||||
// they all output zero.
|
||||
TevKonstRef::Value(V0), TevKonstRef::Value(V0), TevKonstRef::Value(V0),
|
||||
TevKonstRef::Value(V0),
|
||||
|
||||
// These values are valid for RGB only; they're invalid for alpha
|
||||
TevKonstRef::Konst(V0, KonstantColors[0]), // Konst 0 RGB
|
||||
TevKonstRef::Konst(V0, KonstantColors[1]), // Konst 1 RGB
|
||||
TevKonstRef::Konst(V0, KonstantColors[2]), // Konst 2 RGB
|
||||
TevKonstRef::Konst(V0, KonstantColors[3]), // Konst 3 RGB
|
||||
|
||||
TevKonstRef::Value(KonstantColors[0].r), // Konst 0 Red
|
||||
TevKonstRef::Value(KonstantColors[1].r), // Konst 1 Red
|
||||
TevKonstRef::Value(KonstantColors[2].r), // Konst 2 Red
|
||||
TevKonstRef::Value(KonstantColors[3].r), // Konst 3 Red
|
||||
TevKonstRef::Value(KonstantColors[0].g), // Konst 0 Green
|
||||
TevKonstRef::Value(KonstantColors[1].g), // Konst 1 Green
|
||||
TevKonstRef::Value(KonstantColors[2].g), // Konst 2 Green
|
||||
TevKonstRef::Value(KonstantColors[3].g), // Konst 3 Green
|
||||
TevKonstRef::Value(KonstantColors[0].b), // Konst 0 Blue
|
||||
TevKonstRef::Value(KonstantColors[1].b), // Konst 1 Blue
|
||||
TevKonstRef::Value(KonstantColors[2].b), // Konst 2 Blue
|
||||
TevKonstRef::Value(KonstantColors[3].b), // Konst 3 Blue
|
||||
TevKonstRef::Value(KonstantColors[0].a), // Konst 0 Alpha
|
||||
TevKonstRef::Value(KonstantColors[1].a), // Konst 1 Alpha
|
||||
TevKonstRef::Value(KonstantColors[2].a), // Konst 2 Alpha
|
||||
TevKonstRef::Value(KonstantColors[3].a), // Konst 3 Alpha
|
||||
};
|
||||
s16 m_BiasLUT[4];
|
||||
u8 m_ScaleLShiftLUT[4];
|
||||
u8 m_ScaleRShiftLUT[4];
|
||||
|
||||
// enumeration for color input LUT
|
||||
enum
|
||||
{
|
||||
BLU_INP,
|
||||
GRN_INP,
|
||||
RED_INP
|
||||
};
|
||||
|
||||
enum BufferBase
|
||||
{
|
||||
DIRECT = 0,
|
||||
|
Reference in New Issue
Block a user