Skip to content

Commit

Permalink
Implement Point Light Shadows (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
datacrystals committed Jun 14, 2022
1 parent 1d1dfe0 commit 558e5c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ ERS_STRUCT_DepthMap ERS_CLASS_DepthMaps::GenerateDepthMap(int Number, bool LogEn
ERS_STRUCT_DepthMap Output;

// Iterate Over Total Quantity To Be Generated
for (unsigned int i = 0; i < Number; i++) {
for (unsigned int i = 0; i < (unsigned int)Number; i++) {

// Generate FBO
SystemUtils_->Logger_->Log("Generating Framebuffer Object", 4, LogEnable);
Expand Down

0 comments on commit 558e5c9

Please sign in to comment.