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

Unified Diff: webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc

Issue 2682913002: [DesktopCapture] Detect screen resolution changes in DirectX capturer (Closed)
Patch Set: Avoid a CaptureFrame failure in first place Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc
diff --git a/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc b/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc
index 9e35b6cdc5df5cbfcbafbff3f04ccaa56df33d1e..e2b2235352d1dd2173c47e9fb05bf583ec1288b9 100644
--- a/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc
+++ b/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc
@@ -85,13 +85,10 @@ DxgiOutputDuplicator::~DxgiOutputDuplicator() {
bool DxgiOutputDuplicator::Initialize() {
if (DuplicateOutput()) {
- DesktopSize unrotated_size =
- RotateSize(desktop_rect().size(), ReverseRotation(rotation_));
if (desc_.DesktopImageInSystemMemory) {
- texture_.reset(
- new DxgiTextureMapping(unrotated_size, duplication_.Get()));
+ texture_.reset(new DxgiTextureMapping(duplication_.Get()));
} else {
- texture_.reset(new DxgiTextureStaging(unrotated_size, device_));
+ texture_.reset(new DxgiTextureStaging(device_));
}
return true;
} else {

Powered by Google App Engine
This is Rietveld 408576698