mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Use lutID instead of lutIndex
This commit is contained in:
parent
90abf8a376
commit
25098082c7
1 changed files with 3 additions and 3 deletions
|
@ -631,9 +631,9 @@ void FragmentGenerator::compileLUTLookup(std::string& shader, const PICA::Fragme
|
|||
const u32 lutScale = regs[InternalRegs::LightLUTScale];
|
||||
|
||||
// The way these bitfields are encoded is so cursed
|
||||
float scale = scales[(lutScale >> (4 * lutIndex)) & 0x7];
|
||||
uint inputID = (lutSelect >> (4 * lutIndex)) & 0x7;
|
||||
bool absEnabled = ((lutAbs >> (4 * lutIndex + 1)) & 0x1) == 0; // 0 = enabled...
|
||||
float scale = scales[(lutScale >> (4 * lutID)) & 0x7];
|
||||
uint inputID = (lutSelect >> (4 * lutID)) & 0x7;
|
||||
bool absEnabled = ((lutAbs >> (4 * lutID + 1)) & 0x1) == 0; // 0 = enabled...
|
||||
|
||||
switch (inputID) {
|
||||
case 0: shader += "lut_lookup_delta = dot(normal, normalize(half_vector));\n"; break;
|
||||
|
|
Loading…
Add table
Reference in a new issue