#include "glewOutput.h" void glewPrintExt (const char* name, GLboolean def1, GLboolean def2, GLboolean def3){ unsigned int i; cout << "\n" << name << ":"; for (i=0; i<62-strlen(name); i++) cout << " "; cout << ( def1 ? "OK" : "MISSING" ) << " "; if (def1 != def2) cout << "[" << ( def2 ? "OK" : "MISSING" ) << "] "; if (def1 != def3) cout << "[" << ( def3 ? "OK" : "MISSING" ) << "] "; else cout << "\n"; for (i=0; i