mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
17 lines
384 B
C++
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)
|
|
{
|
|
}
|