| 19 | |
| 20 | |
| 21 | == Specify a module or mode == |
| 22 | |
| 23 | To choose a specific CSC module, use: |
| 24 | {{{ |
| 25 | XPRA_CSC_TYPE=name xpra ... |
| 26 | }}} |
| 27 | Where `name` is one of the csc modules above. |
| 28 | |
| 29 | One can also force the use a specific CSC mode: |
| 30 | {{{ |
| 31 | XPRA_FORCE_CSC_MODE=cscmode xpra ... |
| 32 | }}} |
| 33 | Where `cscmode` is one of: {{{YUV420P}}}, {{{YUV422P}}}, {{{YUV444P}}}. |
| 34 | |
| 35 | Some modules can be configured further, for example the {{{csc_opencl}}} module can select which device type is used as backend using: |
| 36 | {{{ |
| 37 | XPRA_OPENCL_DEVICE_TYPE=devicetype xpra start ... |
| 38 | }}} |
| 39 | Where `devicetype` is either {{{GPU}}} or {{{CPU}}}. [[BR]] |
| 40 | Or even which specific {{{OpenCL}}} device is used: |
| 41 | {{{ |
| 42 | XPRA_OPENCL_DEVICE_NAME="GeForce GTX 760" xpra ... |
| 43 | }}} |
| 44 | |