You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							1001 B
						
					
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							1001 B
						
					
					
				| /////////////////////////////////////////////////////////////////////////////////////////////////// | |
| // OpenGL Image Copyright (c) 2008 - 2011 G-Truc Creation (www.g-truc.net) | |
| /////////////////////////////////////////////////////////////////////////////////////////////////// | |
| // Created : 2008-12-19 | |
| // Updated : 2010-09-29 | |
| // Licence : This source is under MIT License | |
| // File    : gli/gli.hpp | |
| /////////////////////////////////////////////////////////////////////////////////////////////////// | |
|  | |
| /*! \mainpage OpenGL Image | |
|  * | |
|  */ | |
| 
 | |
| #ifndef GLI_GLI_INCLUDED | |
| #define GLI_GLI_INCLUDED | |
|  | |
| #define GLI_VERSION					31 | |
| #define GLI_VERSION_MAJOR			0 | |
| #define GLI_VERSION_MINOR			3 | |
| #define GLI_VERSION_PATCH			1 | |
| #define GLI_VERSION_REVISION		0 | |
|  | |
| #include "./core/texture2d.hpp" | |
| #include "./core/texture2d_array.hpp" | |
| #include "./core/texture_cube.hpp" | |
| #include "./core/texture_cube_array.hpp" | |
| #include "./core/size.hpp" | |
| #include "./core/operation.hpp" | |
| #include "./core/generate_mipmaps.hpp" | |
|  | |
| #endif//GLI_GLI_INCLUDED
 | |
| 
 |