Skip to content
Snippets Groups Projects
Commit ba25f0a4 authored by Julien Malik's avatar Julien Malik
Browse files

ENH: provide a default parameter value for Automatic streaming methods

parent e3381348
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ public:
* by estimating the memory consumption of the pipeline.
* Setting the availableRAM parameter to 0 means that the available RAM
* is set from the CMake configuration option */
void SetAutomaticStrippedStreaming(unsigned int availableRAM, double bias = 1.0);
void SetAutomaticStrippedStreaming(unsigned int availableRAM = 0, double bias = 1.0);
/** Set the streaming mode to 'tiled' and configure the dimension of the tiles
* in pixels for each dimension (square tiles will be generated) */
......@@ -123,7 +123,7 @@ public:
* Tiles will be square.
* Setting the availableRAM parameter to 0 means that the available RAM
* is set from the CMake configuration option */
void SetAutomaticTiledStreaming(unsigned int availableRAM, double bias = 1.0);
void SetAutomaticTiledStreaming(unsigned int availableRAM = 0, double bias = 1.0);
protected:
StreamingImageVirtualWriter();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment