root/samples/hajimete/sample01.php

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


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

//o͂

printf("Vendor:%s\n",glGetString(GL_VENDOR));
printf("GPU:%s\n",glGetString(GL_RENDERER));
printf("OpenGL ver. %s\n",glGetString(GL_VERSION));

exit (0);


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