mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-28 00:29:34 +00:00
Goes and replaces the references/names that use Prepass to be Deferred, since we're actually using deferred.
This commit is contained in:
parent
b052a1f970
commit
af8fbf0e3a
122 changed files with 641 additions and 641 deletions
|
|
@ -79,11 +79,11 @@ public:
|
|||
/// Gets the global warning material instance, callers should not free this copy
|
||||
BaseMatInstance * getWarningMatInstance();
|
||||
|
||||
/// Set the prepass enabled state.
|
||||
void setPrePassEnabled( bool enabled ) { mUsingPrePass = enabled; }
|
||||
/// Set the deferred enabled state.
|
||||
void setDeferredEnabled( bool enabled ) { mUsingDeferred = enabled; }
|
||||
|
||||
/// Get the prepass enabled state.
|
||||
bool getPrePassEnabled() const { return mUsingPrePass; }
|
||||
/// Get the deferred enabled state.
|
||||
bool getDeferredEnabled() const { return mUsingDeferred; }
|
||||
|
||||
#ifndef TORQUE_SHIPPING
|
||||
|
||||
|
|
@ -153,7 +153,7 @@ protected:
|
|||
typedef Map<String, String> MaterialMap;
|
||||
MaterialMap mMaterialMap;
|
||||
|
||||
bool mUsingPrePass;
|
||||
bool mUsingDeferred;
|
||||
|
||||
// time tracking
|
||||
F32 mDt;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue