Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Oversampling parameter is now in resample filter
  • Loading branch information
mhugent committed Oct 19, 2012
1 parent 7e5435c commit d0eb151
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterrenderer.cpp
Expand Up @@ -40,7 +40,7 @@ const QRgb QgsRasterRenderer::NODATA_COLOR = qRgba( 0, 0, 0, 0 );
QgsRasterRenderer::QgsRasterRenderer( QgsRasterInterface* input, const QString& type )
: QgsRasterInterface( input )
, mType( type ), mOpacity( 1.0 ), mRasterTransparency( 0 )
, mAlphaBand( -1 ), mInvertColor( false ), mMaxOversampling( 2.0 )
, mAlphaBand( -1 ), mInvertColor( false )
{
}

Expand Down
3 changes: 0 additions & 3 deletions src/core/raster/qgsrasterrenderer.h
Expand Up @@ -125,9 +125,6 @@ class CORE_EXPORT QgsRasterRenderer : public QgsRasterInterface
int mAlphaBand;

bool mInvertColor;

/**Maximum boundary for oversampling (to avoid too much data traffic). Default: 2.0*/
double mMaxOversampling;
};

#endif // QGSRASTERRENDERER_H

0 comments on commit d0eb151

Please sign in to comment.