Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license | |
| 5 * that can be found in the LICENSE file in the root of the source | |
| 6 * tree. An additional intellectual property rights grant can be found | |
| 7 * in the file PATENTS. All contributing project authors may | |
| 8 * be found in the AUTHORS file in the root of the source tree. | |
| 9 */ | |
| 10 | |
| 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_TEST_UTILS_H_ | |
| 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_TEST_UTILS_H_ | |
| 13 | |
| 14 #include "webrtc/modules/desktop_capture/desktop_frame.h" | |
| 15 #include "webrtc/modules/desktop_capture/desktop_geometry.h" | |
| 16 #include "webrtc/modules/desktop_capture/rgba_color.h" | |
| 17 | |
| 18 namespace webrtc { | |
| 19 | |
| 20 // Paints a pixel at |pos| on DesktopFrame |frame| to |color|. This function | |
| 21 // triggers assertain failure if |pos| is out of |frame|. | |
| 22 void PaintDesktopFrame(DesktopFrame* frame, DesktopVector pos, RgbaColor color); | |
|
Sergey Ulanov
2016/11/17 02:07:39
Do you still need this function?
Hzj_jie
2016/11/17 07:14:55
Yes, it uses in test_utils_unittest.cc.
Sergey Ulanov
2016/11/19 02:11:40
Maybe put it in test_utils_unittest.cc. But I thin
Hzj_jie
2016/11/19 05:10:59
Moved to test_utils_unittest.cc. Using 2D array ca
| |
| 23 | |
| 24 // Clears a DesktopFrame |frame| by setting its data() into 0. | |
| 25 void ClearDesktopFrame(DesktopFrame* frame); | |
| 26 | |
| 27 // Compares size() and data() of two DesktopFrames |left| and |right|. | |
| 28 bool DesktopFrameDataEquals(const DesktopFrame& left, | |
| 29 const DesktopFrame& right); | |
| 30 | |
| 31 } // namespace webrtc | |
| 32 | |
| 33 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_TEST_UTILS_H_ | |
| OLD | NEW |