Changeset 32974 in vbox
- Timestamp:
- Oct 7, 2010 11:25:32 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r32950 r32974 2026 2026 if (cx_max_upd < cx_max) 2027 2027 cx_max_upd = cx_max; 2028 } else if (cy_start >= 0) 2028 } else if (cy_start >= 0) { 2029 2029 /* Flush updates to display. */ 2030 2030 s->pDrv->pfnUpdateRect(s->pDrv, cx_min_upd * cw, cy_start * cheight, 2031 2031 (cx_max_upd - cx_min_upd + 1) * cw, (cy - cy_start) * cheight); 2032 cy_start = -1; 2033 cx_max_upd = -1; 2034 cx_min_upd = width; 2035 } 2032 2036 #endif 2033 2037 dest += linesize * cheight;
Note:
See TracChangeset
for help on using the changeset viewer.