Show
Ignore:
Timestamp:
05/05/08 07:12:19 (4 months ago)
Author:
vossg
Message:

changed: interface cleanup, removed ptr typedefs, nullfc

these will be needed for the 1.x compat stuff

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/Action/RenderAction/OSGRenderPartition.cpp

    r1177 r1198  
    170170 
    171171    _pMaterial               (     NULL), 
    172     _pMaterialNode           (   NullFC), 
     172    _pMaterialNode           (     NULL), 
    173173 
    174174    _pRenderTarget           (     NULL), 
     
    260260         
    261261        _pMaterial        = NULL; 
    262         _pMaterialNode    = NullFC
     262        _pMaterialNode    = NULL
    263263         
    264264         
     
    528528    RenderAction *rt = dynamic_cast<RenderAction *>(_oDrawEnv.getAction()); 
    529529 
    530     NodePtr actNode = rt->getActNode(); 
     530    Node         *actNode = rt->getActNode(); 
    531531     
    532532    // Add Stats 
    533     DrawableStatsAttachmentPtr st; 
     533    DrawableStatsAttachment *st; 
     534 
    534535    st = DrawableStatsAttachment::get(actNode); 
    535     if(st == NullFC) 
     536 
     537    if(st == NULL) 
    536538    { 
    537539        DrawableStatsAttachment::addTo(actNode); 
     
    814816     
    815817// visibility levels 
    816 bool RenderPartition::pushVisibility(const NodePtr pNode) 
     818bool RenderPartition::pushVisibility(Node * const pNode) 
    817819{ 
    818820    if(getFrustumCulling() == false)