| 65 | } |
| 66 | |
| 67 | void Recorder::fullScrennShot() { |
| 68 | BString fileName(this->directory); |
| 69 | |
| 70 | this->screenShotCount++; |
| 71 | fileName.append(Fs::nativePathSeperator); |
| 72 | fileName.append("screenshot"); |
| 73 | fileName.append(BString::valueOf(this->screenShotCount)); |
| 74 | fileName.append(".bmp"); |
| 75 | KNativeSystem::getScreen()->screenShot(fileName, nullptr, 0); |
| 76 | out("SCREENSHOT="); |
| 77 | out(Fs::getFileNameFromNativePath(fileName).c_str()); |
| 78 | out("\r\n"); |
| 79 | } |
| 80 | |
| 81 | void Recorder::partialScreenShot(U32 x, U32 y, U32 w, U32 h) { |
| 82 | BString fileName(this->directory); |
nothing calls this directly
no test coverage detected