Skip to content

Commit

Permalink
Implement Settings To Control Rendering (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
datacrystals committed Jun 21, 2022
1 parent 136daca commit 031da0a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//======================================================================//
// This file is part of the BrainGenix-ERS Environment Rendering System //
//======================================================================//

#include <ERS_ENUM_ShadowUpdateMode.h>
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//======================================================================//
// This file is part of the BrainGenix-ERS Environment Rendering System //
//======================================================================//

#pragma once

// Standard Libraries (BG convention: use <> instead of "")
#include <string>

// Third-Party Libraries (BG convention: use <> instead of "")

// Internal Libraries (BG convention: use <> instead of "")


namespace ERS {

namespace Renderer {

enum ShadowUpdateMode {

ERS_NO_FILTERING,
ERS_PCF_FILTERING,
ERS_POISSON_SAMPLING,
ERS_STRATIFIED_POISSON_SAMPLING

};

}

}

0 comments on commit 031da0a

Please sign in to comment.