Ignore:
Timestamp:
Apr 2, 2013, 8:02:50 PM (12 years ago)
Author:
ldelgass
Message:

Use nv namespace for classes in nanovis rather than prefixing class names with
Nv (still need to convert shader classes).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanovis/nanovis.h

    r3605 r3611  
    4949    class Fonts;
    5050}
     51
     52class Camera;
     53class Flow;
     54class Grid;
     55class HeightMap;
     56class LIC;
    5157class OrientationIndicator;
    52 }
    53 
    54 class VolumeRenderer;
    55 class NvParticleRenderer;
    56 class VelocityArrowsSlice;
    57 class NvLIC;
    5858class PlaneRenderer;
    5959class Texture2D;
    60 class HeightMap;
    61 class Grid;
    62 class NvCamera;
    6360class TransferFunction;
     61class VelocityArrowsSlice;
    6462class Volume;
    65 class Flow;
     63class VolumeRenderer;
    6664
    6765class NanoVis
     
    10199    static void removeAllData();
    102100
    103     static const NvCamera *getCamera()
     101    static const Camera *getCamera()
    104102    {
    105103        return cam;
     
    161159    static unsigned char *screenBuffer;
    162160    static Texture2D *legendTexture;
    163     static nv::util::Fonts *fonts;
     161    static util::Fonts *fonts;
    164162    static int updir;
    165     static NvCamera *cam;
    166     static nv::graphics::RenderContext *renderContext;
     163    static Camera *cam;
     164    static graphics::RenderContext *renderContext;
    167165
    168166    static TransferFunctionHashmap tfTable; ///< maps transfunc name to TransferFunction object
     
    177175    static VolumeRenderer *volRenderer;
    178176    static VelocityArrowsSlice *velocityArrowsSlice;
    179     static NvLIC *licRenderer;
     177    static LIC *licRenderer;
    180178    static PlaneRenderer *planeRenderer;
    181     static nv::OrientationIndicator *orientationIndicator;
     179    static OrientationIndicator *orientationIndicator;
    182180    static Grid *grid;
    183181
     
    192190};
    193191
     192}
     193
    194194#endif
Note: See TracChangeset for help on using the changeset viewer.