Changeset 62139 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jul 8, 2016 1:32:43 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108628
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DisplayImpl.h
r61564 r62139 95 95 } pendingViewportInfo; 96 96 #endif /* VBOX_WITH_CROGL */ 97 98 #ifdef VBOX_WITH_VPX 99 struct 100 { 101 ComPtr<IDisplaySourceBitmap> pSourceBitmap; 102 } videoCapture; 103 #endif 97 104 } DISPLAYFBINFO; 98 105 … … 195 202 void i_VideoCaptureStop(); 196 203 int i_VideoCaptureEnableScreens(ComSafeArrayIn(BOOL, aScreens)); 204 #ifdef VBOX_WITH_VPX 205 void videoCaptureScreenChanged(unsigned uScreenId); 206 #endif 197 207 198 208 void i_notifyPowerDown(void); … … 449 459 /* Serializes access to mVideoAccelLegacy and mfVideoAccelVRDP, etc between VRDP and Display. */ 450 460 RTCRITSECT mVideoAccelLock; 461 #ifdef VBOX_WITH_VPX 462 /* Serializes access to video capture source bitmaps. */ 463 RTCRITSECT mVideoCaptureLock; 464 #endif 451 465 452 466 public:
Note:
See TracChangeset
for help on using the changeset viewer.