Changeset 39415 in vbox
- Timestamp:
- Nov 25, 2011 8:11:23 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75039
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_wgl.c
r39412 r39415 320 320 } 321 321 322 323 322 static void renderspuAtiQuirk_ChkApply() 324 323 { … … 333 332 crInfo("This is an ATI card, taking care of fullscreen.."); 334 333 334 /* 335 * ATI WDDM-based graphics have an issue with rendering fullscreen. 336 * See public tickets #9775 & #9267 . 337 * Namely ATI drivers check whether ogl window is foreground and fullscreen 338 * and if so - do D3DKMTSetDisplayMode for ogl surface, 339 * which prevented any other data from being displayed, no matter what. 340 * 341 * Here we check whether we're using an ATI card and if so, patch the ogl ICD driver's IAT 342 * to replace GetForegroundWindow reference with our renderspuAtiQuirk_GetForegroundWindow, 343 * which always returns NULL. 344 */ 335 345 renderspuAtiQuirk_Apply(); 336 346 }
Note:
See TracChangeset
for help on using the changeset viewer.