mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 23:59:27 +01:00
SW/Tev: Remove Tev::Init
This commit is contained in:
parent
c9936f8c1c
commit
bae0f21f74
@ -108,8 +108,6 @@ static std::vector<BPFunctions::ScissorRect> scissors;
|
|||||||
|
|
||||||
void Init()
|
void Init()
|
||||||
{
|
{
|
||||||
tev.Init();
|
|
||||||
|
|
||||||
// The other slopes are set each for each primitive drawn, but zfreeze means that the z slope
|
// The other slopes are set each for each primitive drawn, but zfreeze means that the z slope
|
||||||
// needs to be set to an (untested) default value.
|
// needs to be set to an (untested) default value.
|
||||||
ZSlope = Slope();
|
ZSlope = Slope();
|
||||||
|
@ -27,10 +27,6 @@
|
|||||||
#define ALLOW_TEV_DUMPS 0
|
#define ALLOW_TEV_DUMPS 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void Tev::Init()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline s16 Clamp255(s16 in)
|
static inline s16 Clamp255(s16 in)
|
||||||
{
|
{
|
||||||
return in > 255 ? 255 : (in < 0 ? 0 : in);
|
return in > 255 ? 255 : (in < 0 ? 0 : in);
|
||||||
|
@ -226,8 +226,6 @@ public:
|
|||||||
RED_C
|
RED_C
|
||||||
};
|
};
|
||||||
|
|
||||||
void Init();
|
|
||||||
|
|
||||||
void Draw();
|
void Draw();
|
||||||
|
|
||||||
void SetRegColor(int reg, int comp, s16 color);
|
void SetRegColor(int reg, int comp, s16 color);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user