separate tests, sponza

This commit is contained in:
2025-05-14 15:31:23 +03:00
parent 3800daafab
commit e5cbc4ca5f
8 changed files with 128866 additions and 7 deletions

BIN
assets/models/sponza.glb Normal file

Binary file not shown.

128621
assets/models/sponza.obj Normal file

File diff suppressed because it is too large Load Diff

View File

@ -54,7 +54,7 @@ void main()
float NdotL = max(dot(normal, light), 0.0);
// lightDot += lights[i].color.rgb * light * NdotL;
// lightDot += lights[i].color.rgb * power * NdotL;
lightDot += lights[i].color.rgb * power * lights[i].power;
lightDot += lights[i].color.rgb * power * lights[i].power * NdotL;
}
}