pureikyubu/SRC/DolwinVideo/Tev.cpp
2020-04-01 15:41:10 +03:00

17 lines
384 B
C++

// task of this module is approximate every TEV stage
// to one of following modes : DECAL, MODULATE, BLEND, REPLACE or PASSCLR
// if TEV stage doesnt fits to any of supported modes, use PASSCLR
#include "pch.h"
TEVStage tevs[16];
// in : SU TEV registers.
// out: TEV control block
// called on any changes of TEV regs
void TEVApprox()
{
}
void TEVSelectOutput(int stage)
{
}