Support graphic cards with 2GB+ VRAM

- Fix for issue https://github.com/GarageGames/Torque3D/issues/226
- Also extended the card profile reporting to the console to include the
graphic card's VRAM.
This commit is contained in:
DavidWyand-GG 2013-11-12 01:02:15 -05:00
parent 4717f22916
commit d100bd918e
2 changed files with 13 additions and 1 deletions

View file

@ -106,6 +106,7 @@ void GFXCardProfiler::init()
Con::printf(" o Chipset : '%s'", getChipString().c_str());
Con::printf(" o Card : '%s'", getCardString().c_str());
Con::printf(" o Version : '%s'", getVersionString().c_str());
Con::printf(" o VRAM : %d MB", getVideoMemoryInMB());
// Do card-specific setup...
Con::printf(" - Scanning card capabilities...");