Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: webrtc/modules/desktop_capture/win/dxgi_adapter_duplicator.cc

Issue 2788863006: Merge ScreenCapturerWinDirectx::frames_ and contexts_ (Closed)
Patch Set: Resolve review comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « webrtc/modules/desktop_capture/win/dxgi_adapter_duplicator.h ('k') | webrtc/modules/desktop_capture/win/dxgi_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698