mirror of
				https://github.com/nigels-com/glew.git
				synced 2025-11-03 22:04:10 +00:00 
			
		
		
		
	Merge branch 'master' into subset
This commit is contained in:
		
						commit
						1431b290b6
					
				@ -1094,10 +1094,12 @@ GLAPI void GLAPIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei heigh
 | 
			
		||||
 | 
			
		||||
/* ---------------------------------- GLU ---------------------------------- */
 | 
			
		||||
 | 
			
		||||
#ifndef GLEW_NO_GLU
 | 
			
		||||
/* this is where we can safely include GLU */
 | 
			
		||||
#if defined(__APPLE__) && defined(__MACH__)
 | 
			
		||||
#include <OpenGL/glu.h>
 | 
			
		||||
#else
 | 
			
		||||
#include <GL/glu.h>
 | 
			
		||||
#  if defined(__APPLE__) && defined(__MACH__)
 | 
			
		||||
#    include <OpenGL/glu.h>
 | 
			
		||||
#  else
 | 
			
		||||
#    include <GL/glu.h>
 | 
			
		||||
#  endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -161,10 +161,13 @@ main (int argc, char** argv)
 | 
			
		||||
  fprintf(file, "OpenGL version string: %s\n", glGetString(GL_VERSION));
 | 
			
		||||
  fprintf(file, "OpenGL extensions (GL_): \n");
 | 
			
		||||
  PrintExtensions((char*)glGetString(GL_EXTENSIONS));
 | 
			
		||||
 | 
			
		||||
#ifndef GLEW_NO_GLU
 | 
			
		||||
  /* GLU extensions */
 | 
			
		||||
  fprintf(file, "GLU version string: %s\n", gluGetString(GLU_VERSION));
 | 
			
		||||
  fprintf(file, "GLU extensions (GLU_): \n");
 | 
			
		||||
  PrintExtensions((char*)gluGetString(GLU_EXTENSIONS));
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  /* ---------------------------------------------------------------------- */
 | 
			
		||||
  /* extensions string */
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user