Skip to content
Snippets Groups Projects
Commit 769dfff6 authored by Julien Michel's avatar Julien Michel
Browse files

DOC: Add missing function doc

parent 5925bb77
No related branches found
No related tags found
No related merge requests found
...@@ -136,7 +136,12 @@ public: ...@@ -136,7 +136,12 @@ public:
* composite filters for example */ * composite filters for example */
void SetAutomaticTiledStreaming(unsigned int availableRAM = 0, double bias = 1.0); void SetAutomaticTiledStreaming(unsigned int availableRAM = 0, double bias = 1.0);
/** TODO */ /** Set the streaming mode to 'adaptative' and configure the number of MB
* available. The actual number of divisions is computed automatically
* by estimating the memory consumption of the pipeline.
* Tiles will try to match the input file tile scheme.
* Setting the availableRAM parameter to 0 means that the available RAM
* is set from the CMake configuration option */
void SetAutomaticAdaptativeStreaming(unsigned int availableRAM = 0, double bias = 1.0); void SetAutomaticAdaptativeStreaming(unsigned int availableRAM = 0, double bias = 1.0);
/** Set buffer memory size (in bytes) use to calculate the number of stream divisions */ /** Set buffer memory size (in bytes) use to calculate the number of stream divisions */
......
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