- Timestamp:
- 09/06/06 00:48:55 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Groups/Light/Shadow/Base/OSGShadowMapEngineBase.cpp
r2 r54 284 284 } 285 285 286 #ifdef OSG_1_COMPAT 287 SFInt32 *ShadowMapEngineBase::getSFWidth(void) 288 { 289 return this->editSFWidth(); 290 } 291 #endif 292 286 293 SFInt32 *ShadowMapEngineBase::editSFHeight(void) 287 294 { … … 296 303 } 297 304 305 #ifdef OSG_1_COMPAT 306 SFInt32 *ShadowMapEngineBase::getSFHeight(void) 307 { 308 return this->editSFHeight(); 309 } 310 #endif 311 298 312 SFColor4f *ShadowMapEngineBase::editSFShadowColor(void) 299 313 { … … 308 322 } 309 323 324 #ifdef OSG_1_COMPAT 325 SFColor4f *ShadowMapEngineBase::getSFShadowColor(void) 326 { 327 return this->editSFShadowColor(); 328 } 329 #endif 330 310 331 SFReal32 *ShadowMapEngineBase::editSFOffsetBias(void) 311 332 { … … 320 341 } 321 342 343 #ifdef OSG_1_COMPAT 344 SFReal32 *ShadowMapEngineBase::getSFOffsetBias(void) 345 { 346 return this->editSFOffsetBias(); 347 } 348 #endif 349 322 350 SFReal32 *ShadowMapEngineBase::editSFOffsetFactor(void) 323 351 { … … 332 360 } 333 361 362 #ifdef OSG_1_COMPAT 363 SFReal32 *ShadowMapEngineBase::getSFOffsetFactor(void) 364 { 365 return this->editSFOffsetFactor(); 366 } 367 #endif 368 334 369 SFUInt32 *ShadowMapEngineBase::editSFUpdateMode(void) 335 370 { … … 343 378 return &_sfUpdateMode; 344 379 } 380 381 #ifdef OSG_1_COMPAT 382 SFUInt32 *ShadowMapEngineBase::getSFUpdateMode(void) 383 { 384 return this->editSFUpdateMode(); 385 } 386 #endif 345 387 346 388 … … 645 687 namespace 646 688 { 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: $"; 648 690 static Char8 cvsid_hpp [] = OSGSHADOWMAPENGINEBASE_HEADER_CVSID; 649 691 static Char8 cvsid_inl [] = OSGSHADOWMAPENGINEBASE_INLINE_CVSID;
