Changeset 34754 in vbox for trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
- Timestamp:
- Dec 6, 2010 2:40:03 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68560
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.