document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     while (!glfwGetKey(GLFW_KEY_ESC) &&
  2.         glfwGetWindowParam(GLFW_OPENED))
  3.     {
  4.  
  5.         glClearColor(0.2, 0.2, 0.2, 0);
  6.         //glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  7.         int width, height;
  8.         glfwGetWindowSize(&width, &height);
  9.         glViewport(0, 0, width, height);
  10.  
  11.  
  12.         glMatrixMode(GL_PROJECTION); //wybieram macierz projekcji
  13.  
  14.         glLoadIdentity(); //resetuje ja
  15.         glTranslatef(0, 0, -1); //standardowe polozenie
  16.         glColor4f(1, 0.3, 0.1 , 1.6); //kolorek
  17.         drawTriangle();//rysuje trojkacik
  18.  
  19.         glfwSwapBuffers(); /*reflesh*/
  20.             }
');