Changeset 2900 for trunk


Ignore:
Timestamp:
Apr 1, 2012 10:59:55 AM (12 years ago)
Author:
ldelgass
Message:

Style fix (underscores to camel case)

Location:
trunk/packages/vizservers/nanovis
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanovis/Texture1D.cpp

    r2857 r2900  
    100100}
    101101
    102 void Texture1D::check_max_size()
     102void Texture1D::checkMaxSize()
    103103{
    104104    GLint max = 0;
     
    108108}
    109109
    110 void Texture1D::check_max_unit()
     110void Texture1D::checkMaxUnit()
    111111{
    112112    int max;
  • trunk/packages/vizservers/nanovis/Texture1D.h

    r2857 r2900  
    5252    void setWrapS(GLuint wrapMode);
    5353
    54     static void check_max_size();
     54    static void checkMaxSize();
    5555
    56     static void check_max_unit();
     56    static void checkMaxUnit();
    5757
    5858private:
  • trunk/packages/vizservers/nanovis/Texture2D.cpp

    r2877 r2900  
    130130}
    131131
    132 void Texture2D::check_max_size()
     132void Texture2D::checkMaxSize()
    133133{
    134134    GLint max = 0;
     
    138138}
    139139
    140 void Texture2D::check_max_unit()
     140void Texture2D::checkMaxUnit()
    141141{
    142142    int max = 0;
  • trunk/packages/vizservers/nanovis/Texture2D.h

    r2857 r2900  
    5959    void setWrapT(GLuint wrapMode);
    6060
    61     static void check_max_size();
     61    static void checkMaxSize();
    6262
    63     static void check_max_unit();
     63    static void checkMaxUnit();
    6464
    6565private:
  • trunk/packages/vizservers/nanovis/Texture3D.cpp

    r2877 r2900  
    152152}
    153153
    154 void Texture3D::check_max_size()
     154void Texture3D::checkMaxSize()
    155155{
    156156    GLint max = 0;
     
    160160}
    161161
    162 void Texture3D::check_max_unit()
     162void Texture3D::checkMaxUnit()
    163163{
    164164    int max;
  • trunk/packages/vizservers/nanovis/Texture3D.h

    r2857 r2900  
    5555    }
    5656
     57    /// Always 1
    5758    double aspectRatioWidth() const
    5859    {
     
    6061    }
    6162
     63    /// height / width
    6264    double aspectRatioHeight() const
    6365    {
     
    6567    }
    6668
     69    /// depth / width
    6770    double aspectRatioDepth() const
    6871    {
     
    8184    void setWrapR(GLuint wrapMode);
    8285
    83     static void check_max_size();
     86    static void checkMaxSize();
    8487
    85     static void check_max_unit();
     88    static void checkMaxUnit();
    8689
    8790private:
Note: See TracChangeset for help on using the changeset viewer.