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/Drawables/Geometry/Properties/OSGGeoVectorProperty.h

    r2 r54  
    173173        convertCustomOut(dest, src, scale, offset); 
    174174    } 
     175    template <class ExternalType> 
     176    inline static void convertOut(ExternalType& dest, const Color3fx& src, 
     177                                  Real64 scale = 1, Real64 offset = 0) 
     178    { 
     179        convertCustomOut(dest, src, scale, offset); 
     180    } 
     181    template <class ExternalType> 
     182    inline static void convertOut(ExternalType& dest, const Color4fx& src, 
     183                                  Real64 scale = 1, Real64 offset = 0) 
     184    { 
     185        convertCustomOut(dest, src, scale, offset); 
     186    } 
     187 
    175188}; 
    176189