diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-03-25 16:45:02 +0200 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-03-25 16:45:02 +0200 |
| commit | 06eeb997cd2e77c59e49352ab7416c7c2797b6aa (patch) | |
| tree | 1156faf6a99d8a59b5c1e7adcb203e7dfac94324 /Software | |
| parent | 8f57d4962fa84499c8a153ebfff6e7766434ee1c (diff) | |
| download | Tango-06eeb997cd2e77c59e49352ab7416c7c2797b6aa.tar.gz Tango-06eeb997cd2e77c59e49352ab7416c7c2797b6aa.zip | |
Switched ScreenCaptureEngine to use GDI instread of DX.
Diffstat (limited to 'Software')
| -rw-r--r-- | Software/Visual_Studio/Tango.RemoteDesktop/ScreenCaptureEngine.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.RemoteDesktop/ScreenCaptureEngine.cs b/Software/Visual_Studio/Tango.RemoteDesktop/ScreenCaptureEngine.cs index 8920b983b..527b54b7d 100644 --- a/Software/Visual_Studio/Tango.RemoteDesktop/ScreenCaptureEngine.cs +++ b/Software/Visual_Studio/Tango.RemoteDesktop/ScreenCaptureEngine.cs @@ -70,7 +70,7 @@ namespace Tango.RemoteDesktop public ScreenCaptureEngine(IBitmapComparer<TFrame> comparer) { FrameRate = 10; - CaptureMethod = new CaptureMethods.DirectXScreenCapture(); + CaptureMethod = new CaptureMethods.GdiScreenCapture(); CaptureRegion = new CaptureRegion(System.Windows.Forms.Screen.PrimaryScreen.Bounds); Comparer = comparer; CaptureCursor = true; |
