Show
Ignore:
Timestamp:
09/06/06 00:48:55 (2 years ago)
Author:
vossg
Message:

fixed : missing symbols (compat mode)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/NodeCores/Groups/Light/Shadow/Base/OSGShadowMapEngineBase.cpp

    r2 r54  
    284284} 
    285285 
     286#ifdef OSG_1_COMPAT 
     287SFInt32 *ShadowMapEngineBase::getSFWidth(void) 
     288{ 
     289    return this->editSFWidth(); 
     290} 
     291#endif 
     292 
    286293SFInt32 *ShadowMapEngineBase::editSFHeight(void) 
    287294{ 
     
    296303} 
    297304 
     305#ifdef OSG_1_COMPAT 
     306SFInt32 *ShadowMapEngineBase::getSFHeight(void) 
     307{ 
     308    return this->editSFHeight(); 
     309} 
     310#endif 
     311 
    298312SFColor4f *ShadowMapEngineBase::editSFShadowColor(void) 
    299313{ 
     
    308322} 
    309323 
     324#ifdef OSG_1_COMPAT 
     325SFColor4f *ShadowMapEngineBase::getSFShadowColor(void) 
     326{ 
     327    return this->editSFShadowColor(); 
     328} 
     329#endif 
     330 
    310331SFReal32 *ShadowMapEngineBase::editSFOffsetBias(void) 
    311332{ 
     
    320341} 
    321342 
     343#ifdef OSG_1_COMPAT 
     344SFReal32 *ShadowMapEngineBase::getSFOffsetBias(void) 
     345{ 
     346    return this->editSFOffsetBias(); 
     347} 
     348#endif 
     349 
    322350SFReal32 *ShadowMapEngineBase::editSFOffsetFactor(void) 
    323351{ 
     
    332360} 
    333361 
     362#ifdef OSG_1_COMPAT 
     363SFReal32 *ShadowMapEngineBase::getSFOffsetFactor(void) 
     364{ 
     365    return this->editSFOffsetFactor(); 
     366} 
     367#endif 
     368 
    334369SFUInt32 *ShadowMapEngineBase::editSFUpdateMode(void) 
    335370{ 
     
    343378    return &_sfUpdateMode; 
    344379} 
     380 
     381#ifdef OSG_1_COMPAT 
     382SFUInt32 *ShadowMapEngineBase::getSFUpdateMode(void) 
     383{ 
     384    return this->editSFUpdateMode(); 
     385} 
     386#endif 
    345387 
    346388 
     
    645687namespace 
    646688{ 
    647     static Char8 cvsid_cpp       [] = "@(#)$Id: OSGShadowMapEngineBase.cpp,v 1.1.2.3 2006/08/01 08:48:58 vossg Exp $"; 
     689    static Char8 cvsid_cpp       [] = "@(#)$Id: $"; 
    648690    static Char8 cvsid_hpp       [] = OSGSHADOWMAPENGINEBASE_HEADER_CVSID; 
    649691    static Char8 cvsid_inl       [] = OSGSHADOWMAPENGINEBASE_INLINE_CVSID;