Changeset 8515 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Apr 30, 2008 3:37:03 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30410
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
r8433 r8515 1922 1922 /** @todo read from the port to see if the mode switch was successful */ 1923 1923 1924 /* Tell the host that we now support graphics in the additions */ 1925 VBoxVideoSetGraphicsCap(TRUE); 1924 /* Tell the host that we now support graphics in the additions. 1925 * @todo: Keep old behaviour, because VBoxVideoResetDevice is called on every graphics 1926 * mode switch and causes an OFF/ON sequence which is not handled by frontends 1927 * (for example Qt GUI debug build asserts when seamless is being enabled). 1928 */ 1929 // VBoxVideoSetGraphicsCap(TRUE); 1926 1930 return TRUE; 1927 1931 } … … 1956 1960 #endif 1957 1961 1958 /* Tell the host that we no longer support graphics in the additions */ 1959 VBoxVideoSetGraphicsCap(FALSE); 1962 /* Tell the host that we no longer support graphics in the additions 1963 * @todo: Keep old behaviour, see similar comment in VBoxVideoSetCurrentMode for details. 1964 */ 1965 // VBoxVideoSetGraphicsCap(FALSE); 1960 1966 return TRUE; 1961 1967 }
Note:
See TracChangeset
for help on using the changeset viewer.