Changeset 40489 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/VBoxMPDriver.cpp
- Timestamp:
- Mar 15, 2012 5:14:31 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/VBoxMPDriver.cpp
r38906 r40489 92 92 VBOXMP_WARN_VPS(rc); 93 93 94 /* Call VideoPortGetAccessRanges to ensure interrupt info in ConfigInfo gets set up */ 94 /* Call VideoPortGetAccessRanges to ensure interrupt info in ConfigInfo gets set up 95 * and to get LFB aperture data. 96 */ 95 97 { 96 98 VIDEO_ACCESS_RANGE tmpRanges[4]; … … 114 116 } 115 117 VBOXMP_WARN_VPS(rc); 118 if (rc != NO_ERROR) { 119 return rc; 120 } 121 122 /* The first range is the framebuffer. We require that information. */ 123 pExt->u.primary.physLFBBase = tmpRanges[0].RangeStart; 124 pExt->u.primary.ulApertureSize = tmpRanges[0].RangeLength; 116 125 } 117 126
Note:
See TracChangeset
for help on using the changeset viewer.