Changeset 24694 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 16, 2009 2:06:46 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGLSupportInfo.cpp
r24188 r24694 525 525 { 526 526 /* error occurred while gl info initialization */ 527 VBOXQGLLOGREL(("2D not supported: gl version info not initialized properly\n")); 527 528 return false; 528 529 } … … 532 533 * no sense to report Video Acceleration supported */ 533 534 if(!mglInfo.isFragmentShaderSupported()) 535 { 536 VBOXQGLLOGREL(("2D not supported: fragment shader unsupported\n")); 534 537 return false; 538 } 535 539 #endif 536 540 if(mglInfo.getMultiTexNumSupported() < 2) 541 { 542 VBOXQGLLOGREL(("2D not supported: multitexture unsupported\n")); 537 543 return false; 544 } 538 545 539 546 /* color conversion now supported only GL_TEXTURE_RECTANGLE … … 541 548 * report as unsupported, TODO: probably should report as supported for stretch acceleration */ 542 549 if(!mglInfo.isTextureRectangleSupported()) 550 { 551 VBOXQGLLOGREL(("2D not supported: texture rectangle unsupported\n")); 543 552 return false; 544 553 } 554 555 VBOXQGLLOGREL(("2D is supported!\n")); 545 556 return true; 546 557 }
Note:
See TracChangeset
for help on using the changeset viewer.