renderdl
reads a file containing scene description commands and “executes” them to produce an image. renderdl also has some auxiliary usage as explained in the parameters description below.
In the simplest form, to render a file named file.nsi
, just type:
renderdl file.nsi
Command Line Options
Option | Description |
---|---|
-cloud | Render the file using 3Delight Cloud instead of locally. |
-id | Launch 3Delight Display to display the image while rendering instead of writing images to files (as specified in the NSI file). |
-t n | Specifies the number of threads to use for the rendering. "n" can take any of the following values: n > 0 : Use "n" threads. By default, renderdl use as many threads as there are available cores. |
-stats | Embed statistics in rendered images. This is supported for EXR and TIFF files only. Statistics are explained in more detail in Detailed Statistics. |
-progress | Prints a progress status after each rendered bucket. |
-cat | Print the NSI commands in human readable ascii format instead of processing them for rendering. This can be used to convert a binary (or compressed) NSI file into an human readable ASCII file: renderdl -cat binary.nsi.gz > ascii.nsi |
-cat -binary | Outputs the NSI commands in binary format. For example: renderdl -cat -binary ascii.nsi > binary.nsi |
-cat -gzip | Outputs the NSI file in compressed form. For example: renderdl -cat -gzip ascii.nsi > ascii.nsi.gz |
-cat -callprocedurals | expand all procedurals and archives. This is very useful when packaging an NSI file. |
-cat -o filename | output NSI stream to filename instead of stdout. |
-v | Prints the current version of the renderer. |
-h | Prints the help. |
No File Name Specified
If no file name is specified, renderdl
reads scene description commands from the standard in. This feature enables piping commands directly in renderdl
. For example, to enter scene description commands interactively (which is not really practical), do the following:
renderdl Reading (stdin) <enter commands here>
If you wish to pipe the content of file.nsi
in renderdl
, type:
cat file.nsi | renderdl
Shell Return values
The renderdl
executable will return one of the following values:
Return Value | Description |
---|---|
0 | No error. |
1 | Bad combination of parameters. An error message will explain why. |
199 | Option "licensing" "waitforlicense" 0 was used and no license was available. |
255 | The NSI file specified on the command line could not be read. |