| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 namespace { | 25 namespace { |
| 26 | 26 |
| 27 bool IsValidRect(const RECT& rect) { | 27 bool IsValidRect(const RECT& rect) { |
| 28 return rect.left >= 0 && rect.top >= 0 && rect.right > rect.left && | 28 return rect.left >= 0 && rect.top >= 0 && rect.right > rect.left && |
| 29 rect.bottom > rect.top; | 29 rect.bottom > rect.top; |
| 30 } | 30 } |
| 31 | 31 |
| 32 } // namespace | 32 } // namespace |
| 33 | 33 |
| 34 DxgiAdapterDuplicator::Context::Context() = default; | |
| 35 DxgiAdapterDuplicator::Context::Context(const Context& other) = default; | |
| 36 DxgiAdapterDuplicator::Context::~Context() = default; | |
| 37 | |
| 38 DxgiAdapterDuplicator::DxgiAdapterDuplicator(const D3dDevice& device) | 34 DxgiAdapterDuplicator::DxgiAdapterDuplicator(const D3dDevice& device) |
| 39 : device_(device) {} | 35 : device_(device) {} |
| 40 DxgiAdapterDuplicator::DxgiAdapterDuplicator(DxgiAdapterDuplicator&&) = default; | 36 DxgiAdapterDuplicator::DxgiAdapterDuplicator(DxgiAdapterDuplicator&&) = default; |
| 41 DxgiAdapterDuplicator::~DxgiAdapterDuplicator() = default; | 37 DxgiAdapterDuplicator::~DxgiAdapterDuplicator() = default; |
| 42 | 38 |
| 43 bool DxgiAdapterDuplicator::Initialize() { | 39 bool DxgiAdapterDuplicator::Initialize() { |
| 44 if (DoInitialize()) { | 40 if (DoInitialize()) { |
| 45 return true; | 41 return true; |
| 46 } | 42 } |
| 47 duplicators_.clear(); | 43 duplicators_.clear(); |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 int64_t DxgiAdapterDuplicator::GetNumFramesCaptured() const { | 147 int64_t DxgiAdapterDuplicator::GetNumFramesCaptured() const { |
| 152 int64_t min = INT64_MAX; | 148 int64_t min = INT64_MAX; |
| 153 for (const auto& duplicator : duplicators_) { | 149 for (const auto& duplicator : duplicators_) { |
| 154 min = std::min(min, duplicator.num_frames_captured()); | 150 min = std::min(min, duplicator.num_frames_captured()); |
| 155 } | 151 } |
| 156 | 152 |
| 157 return min; | 153 return min; |
| 158 } | 154 } |
| 159 | 155 |
| 160 } // namespace webrtc | 156 } // namespace webrtc |
| OLD | NEW |