mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Merge pull request #1984 from FooBarbarians/fix-1912
Reordering initialization methods #1912
This commit is contained in:
commit
124ecb2fe0
70 changed files with 207 additions and 205 deletions
|
|
@ -83,12 +83,12 @@ GFX_ImplementTextureProfile( ShadowMapZProfile,
|
|||
|
||||
LightShadowMap::LightShadowMap( LightInfo *light )
|
||||
: mWorldToLightProj( true ),
|
||||
mLight( light ),
|
||||
mTexSize( 0 ),
|
||||
mLastShader( NULL ),
|
||||
mLight( light ),
|
||||
mLastUpdate( 0 ),
|
||||
mLastCull( 0 ),
|
||||
mLastShader( NULL ),
|
||||
mIsViewDependent( false ),
|
||||
mLastCull( 0 ),
|
||||
mLastScreenSize( 0.0f ),
|
||||
mLastPriority( 0.0f ),
|
||||
mIsDynamic( false )
|
||||
|
|
@ -580,8 +580,8 @@ MODULE_END;
|
|||
LightInfoExType ShadowMapParams::Type( "" );
|
||||
|
||||
ShadowMapParams::ShadowMapParams( LightInfo *light )
|
||||
: mLight( light ),
|
||||
mShadowMap( NULL ),
|
||||
: mShadowMap( NULL ),
|
||||
mLight( light ),
|
||||
mDynamicShadowMap ( NULL ),
|
||||
isDynamic ( true )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue