diff options
author | Giacomo Travaglini <giacomo.travaglini@arm.com> | 2017-09-29 11:49:40 +0100 |
---|---|---|
committer | Giacomo Travaglini <giacomo.travaglini@arm.com> | 2017-10-31 11:17:29 +0000 |
commit | c4d1ae831f66e5a4ef237ed2c44893e7d0a6b5c4 (patch) | |
tree | 4fef6584bdb496d642a89df5bb5a9f4b08943aad | |
parent | 12fb1ca0b5f4ba139889e6005a4aed6d03467864 (diff) | |
download | gem5-c4d1ae831f66e5a4ef237ed2c44893e7d0a6b5c4.tar.xz |
vnc: Default image writer type set to Auto
This commit modifies the default behaviour of the vnc frame dumping
process: rather than using 'Bitmap' as a default parameter value, it is
using 'Auto'. Auto parameter is letting gem5 to choose the most
efficient image format among the available ones.
Change-Id: I3c8e2b5a34a5925d24892880ac362dfe38de36e3
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/5182
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
-rw-r--r-- | src/base/vnc/Vnc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/vnc/Vnc.py b/src/base/vnc/Vnc.py index 0aed0dc84..e440d101e 100644 --- a/src/base/vnc/Vnc.py +++ b/src/base/vnc/Vnc.py @@ -45,7 +45,7 @@ class VncInput(SimObject): cxx_header = "base/vnc/vncinput.hh" frame_capture = Param.Bool(False, "capture changed frames to files") img_format = Param.ImageFormat( - "Bitmap", "Format of the dumped Framebuffer" + "Auto", "Format of the dumped Framebuffer" ) class VncServer(VncInput): |