diff options
author | Show Liu <show.liu@linaro.org> | 2020-09-11 16:55:14 +0800 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-09-15 05:53:59 +0300 |
commit | 219cbfe76b5a7d9d8206c71aa6115ff8befcff9b (patch) | |
tree | 0dfe49d71cbb53567b5f13b6f8c56a8819c38b9f /src/qcam/main_window.h | |
parent | 9db6ce0ba499eba53db236558d783a4ff7aa3896 (diff) |
qcam: Add additional command line option to select the renderer type
Add new option "--renderer=qt|gles" to select the renderer type,
"--renderer=gles" to accelerate format conversion and rendering
"--renderer=qt" is the original Qt rendering.
Signed-off-by: Show Liu <show.liu@linaro.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/qcam/main_window.h')
-rw-r--r-- | src/qcam/main_window.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qcam/main_window.h b/src/qcam/main_window.h index 3d21779e..5c61a4df 100644 --- a/src/qcam/main_window.h +++ b/src/qcam/main_window.h @@ -37,6 +37,7 @@ class HotplugEvent; enum { OptCamera = 'c', OptHelp = 'h', + OptRenderer = 'r', OptStream = 's', }; |