mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
PixelShaderGen: Use bit shifts instead of multiplications as a small optimization.
This commit is contained in:
@ -101,10 +101,10 @@ static const char *tevKSelTableA[] = // KASEL
|
|||||||
|
|
||||||
static const char *tevScaleTable[] = // CS
|
static const char *tevScaleTable[] = // CS
|
||||||
{
|
{
|
||||||
"*1", // SCALE_1
|
"", // SCALE_1
|
||||||
"*2", // SCALE_2
|
" << 1", // SCALE_2
|
||||||
"*4", // SCALE_4
|
" << 2", // SCALE_4
|
||||||
"/ 2", // DIVIDE_2
|
" >> 1", // DIVIDE_2
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *tevBiasTable[] = // TB
|
static const char *tevBiasTable[] = // TB
|
||||||
|
Reference in New Issue
Block a user