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

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

Issue 2682913002: [DesktopCapture] Detect screen resolution changes in DirectX capturer (Closed)
Patch Set: Resolve review comments 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_texture_mapping.cc
diff --git a/webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc b/webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc
index dbe494850671db1394e1ac66c090acc62e7feecf..f60edc775e562411171edb5b76890ddc91d2ef2d 100644
--- a/webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc
+++ b/webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc
@@ -19,21 +19,21 @@
namespace webrtc {
-DxgiTextureMapping::DxgiTextureMapping(const DesktopSize& desktop_size,
- IDXGIOutputDuplication* duplication)
- : DxgiTexture(desktop_size), duplication_(duplication) {
+DxgiTextureMapping::DxgiTextureMapping(IDXGIOutputDuplication* duplication)
+ : duplication_(duplication) {
RTC_DCHECK(duplication_);
}
DxgiTextureMapping::~DxgiTextureMapping() = default;
-bool DxgiTextureMapping::CopyFrom(const DXGI_OUTDUPL_FRAME_INFO& frame_info,
- IDXGIResource* resource) {
- RTC_DCHECK(resource && frame_info.AccumulatedFrames > 0);
- rect_ = {0};
- _com_error error = duplication_->MapDesktopSurface(&rect_);
+bool DxgiTextureMapping::CopyFromTexture(
+ const DXGI_OUTDUPL_FRAME_INFO& frame_info,
+ ID3D11Texture2D* texture) {
+ RTC_DCHECK(texture && frame_info.AccumulatedFrames > 0);
+ *rect() = {0};
+ _com_error error = duplication_->MapDesktopSurface(rect());
if (error.Error() != S_OK) {
- rect_ = {0};
+ *rect() = {0};
LOG(LS_ERROR) << "Failed to map the IDXGIOutputDuplication to a bitmap, "
"error "
<< error.ErrorMessage() << ", code " << error.Error();
« no previous file with comments | « webrtc/modules/desktop_capture/win/dxgi_texture_mapping.h ('k') | webrtc/modules/desktop_capture/win/dxgi_texture_staging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698