Reduce the estimated transform cost of an additional light from 10 to 7 cycles, see #5530.

This commit is contained in:
Henrik Rydgård 2018-07-15 12:13:25 +02:00
parent b37938b061
commit ea1ef9277c

View file

@ -464,7 +464,7 @@ int GPUCommon::EstimatePerVertexCost() {
for (int i = 0; i < 4; i++) {
if (gstate.isLightChanEnabled(i))
cost += 10;
cost += 7;
}
}