Changeset 521 in vbox
- Timestamp:
- Feb 1, 2007 8:47:56 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18130
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r494 r521 779 779 #ifdef VBOX 780 780 #ifdef IN_RING3 781 /* LFB video mode is either disabled or changed.782 * This notification is used by the display to783 *disable VBVA.784 */785 s->pDrv->pfnLFBModeChange(s->pDrv, (val & VBE_DISPI_ENABLED) != 0);781 /* 782 * LFB video mode is either disabled or changed. This notification 783 * is used by the display to disable VBVA. 784 */ 785 s->pDrv->pfnLFBModeChange(s->pDrv, (val & VBE_DISPI_ENABLED) != 0); 786 786 #endif /* IN_RING3 */ 787 787 #endif /* VBOX */ … … 1741 1741 const unsigned cBits = s->get_bpp(s); 1742 1742 #if 0 /** @todo kill the nasty resize deadlocks! */ 1743 int rc = s->pDrv->pfnResize(s->pDrv, cBits, s->CTXSUFF(vram_ptr), cx * ((cBits + 7) / 8), cx, cy);1743 int rc = s->pDrv->pfnResize(s->pDrv, cBits, s->CTXSUFF(vram_ptr), s->line_offset, cx, cy); 1744 1744 if (rc == VINF_VGA_RESIZE_IN_PROGRESS) 1745 1745 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.