Changeset 19798 in vbox for trunk/src/VBox/Main/DisplayImpl.cpp
- Timestamp:
- May 18, 2009 3:50:20 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47438
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r19588 r19798 1990 1990 that->mInternalFramebuffer = aInternal; 1991 1991 that->mSupportedAccelOps = 0; 1992 1993 /* determine which acceleration functions are supported by this framebuffer */1994 if (aFB && !aInternal)1995 {1996 HRESULT rc;1997 BOOL accelSupported = FALSE;1998 rc = aFB->OperationSupported (1999 FramebufferAccelerationOperation_SolidFillAcceleration, &accelSupported);2000 AssertComRC (rc);2001 if (accelSupported)2002 that->mSupportedAccelOps |=2003 FramebufferAccelerationOperation_SolidFillAcceleration;2004 accelSupported = FALSE;2005 rc = aFB->OperationSupported (2006 FramebufferAccelerationOperation_ScreenCopyAcceleration, &accelSupported);2007 AssertComRC (rc);2008 if (accelSupported)2009 that->mSupportedAccelOps |=2010 FramebufferAccelerationOperation_ScreenCopyAcceleration;2011 }2012 1992 2013 1993 that->mParent->consoleVRDPServer()->SendResize ();
Note:
See TracChangeset
for help on using the changeset viewer.