bootstrap: change size of screenshot.
authorHosang Kim <hosang12.kim@samsung.com>
Fri, 11 Jun 2021 05:02:14 +0000 (14:02 +0900)
committerHosang Kim <hosang12.kim@samsung.com>
Fri, 11 Jun 2021 05:02:14 +0000 (14:02 +0900)
org.tizen.aurum-bootstrap/src/Commands/TakeScreenshotCommand.cc

index ad199b1..3206029 100644 (file)
@@ -21,7 +21,7 @@ TakeScreenshotCommand::TakeScreenshotCommand(
 
     std::ifstream ifs(path, std::ifstream::binary);
     ::aurum::RspTakeScreenshot rsp;
-    int size = 1024 * 1024;
+    int size = 1920 * 1080;
     char buf[size];
 
     while (!ifs.eof()) {