Changeset 53802 in vbox
- Timestamp:
- Jan 14, 2015 1:47:04 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97610
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp
r53799 r53802 7490 7490 { 7491 7491 /* If host reports minimal OpenGL capabilities. */ 7492 if (VBoxMpCrGetHostCaps() & CR_VBOX_CAP_ MINIMAL_HOST_CAPS)7492 if (VBoxMpCrGetHostCaps() & CR_VBOX_CAP_HOST_CAPS_NOT_SUFFICIENT) 7493 7493 { 7494 7494 LOGREL(("Host reported minimal OpenGL capabilities. Rolling back.")); -
trunk/src/VBox/GuestHost/OpenGL/include/cr_protocol.h
r53799 r53802 54 54 #define CR_VBOX_CAP_CMDBLOCKS_FLUSH 0x00000010 55 55 /* Notify guest if host reports minimal OpenGL capabilities. */ 56 #define CR_VBOX_CAP_ MINIMAL_HOST_CAPS0x0000002056 #define CR_VBOX_CAP_HOST_CAPS_NOT_SUFFICIENT 0x00000020 57 57 58 58 #define CR_VBOX_CAPS_ALL 0x0000003f -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_config.c
r53799 r53802 181 181 { 182 182 crDebug("Cfg: report minimal OpenGL capabilities"); 183 cr_server.u32Caps |= CR_VBOX_CAP_ MINIMAL_HOST_CAPS;183 cr_server.u32Caps |= CR_VBOX_CAP_HOST_CAPS_NOT_SUFFICIENT; 184 184 } 185 185 … … 339 339 { 340 340 crDebug("Cfg: report minimal OpenGL capabilities"); 341 cr_server.u32Caps |= CR_VBOX_CAP_ MINIMAL_HOST_CAPS;341 cr_server.u32Caps |= CR_VBOX_CAP_HOST_CAPS_NOT_SUFFICIENT; 342 342 } 343 343
Note:
See TracChangeset
for help on using the changeset viewer.