Changeset 34754 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Dec 6, 2010 2:40:03 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68560
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r33540 r34754 210 210 *aBitsPerPixel = getBitsPerPixel(); 211 211 return S_OK; 212 } 213 214 void Display::getFramebufferDimensions(int32_t *px1, int32_t *py1, 215 int32_t *px2, int32_t *py2) 216 { 217 AssertPtrReturnVoid(px1); 218 AssertPtrReturnVoid(py1); 219 AssertPtrReturnVoid(px2); 220 AssertPtrReturnVoid(py2); 221 *px1 = 0; 222 *py1 = 0; 223 *px2 = getWidth(); 224 *py2 = getHeight(); 212 225 } 213 226 -
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.h
r28800 r34754 55 55 STDMETHODIMP ResizeCompleted(); 56 56 STDMETHODIMP GetScreenResolution(ULONG aScreenId, ULONG *aWidth, ULONG *aHeight, ULONG *aBitsPerPixel); 57 void getFramebufferDimensions(int32_t *px1, int32_t *py1, int32_t *px2, 58 int32_t *py2); 57 59 58 60 void resetFramebuffer();
Note:
See TracChangeset
for help on using the changeset viewer.