mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Reduce the estimated transform cost of an additional light from 10 to 7 cycles, see #5530.
This commit is contained in:
parent
b37938b061
commit
ea1ef9277c
1 changed files with 1 additions and 1 deletions
|
@ -464,7 +464,7 @@ int GPUCommon::EstimatePerVertexCost() {
|
|||
|
||||
for (int i = 0; i < 4; i++) {
|
||||
if (gstate.isLightChanEnabled(i))
|
||||
cost += 10;
|
||||
cost += 7;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue