root/samples/function/glGetString.php

/* [<][>][^][v][top][bottom][index][help] */
<?php

glutInit($argv);
glutCreateWindow('Check OpenGL');

echo "Vendor :".glGetString(GL_VENDOR)."\n";
echo "GPU : ".glGetString(GL_RENDERER)."\n";
echo "OpenGL ver. :".glGetString(GL_VERSION)."\n";

exit(0);


/* [<][>][^][v][top][bottom][index][help] */