mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 22:00:05 +00:00 
			
		
		
		
	Improved clarity and whitespace
Changed QGL version to 3,2 in order to be less restrictive, yet it should still change up to 4,1 on OSX on Qt5.
This commit is contained in:
		
							parent
							
								
									403e4bf837
								
							
						
					
					
						commit
						034e3aabc8
					
				
					 4 changed files with 6 additions and 4 deletions
				
			
		|  | @ -20,13 +20,13 @@ void DumpTGA(std::string filename, int width, int height, u8* raw_data) { | |||
|     TGAHeader hdr; | ||||
|     FILE* fout; | ||||
|     u8 r, g, b; | ||||
|      | ||||
| 
 | ||||
|     memset(&hdr, 0, sizeof(hdr)); | ||||
|     hdr.datatypecode = 2; // uncompressed RGB
 | ||||
|     hdr.bitsperpixel = 24; // 24 bpp
 | ||||
|     hdr.width = width; | ||||
|     hdr.height = height; | ||||
|      | ||||
| 
 | ||||
|     fout = fopen(filename.c_str(), "wb"); | ||||
|     fwrite(&hdr, sizeof(TGAHeader), 1, fout); | ||||
|     for (int i = 0; i < height; i++) { | ||||
|  | @ -41,4 +41,4 @@ void DumpTGA(std::string filename, int width, int height, u8* raw_data) { | |||
|     } | ||||
|     fclose(fout); | ||||
| } | ||||
| } // namespace
 | ||||
| } // namespace
 | ||||
|  |  | |||
|  | @ -30,6 +30,7 @@ void Start() { | |||
| 
 | ||||
| /// Initialize the video core
 | ||||
| void Init(EmuWindow* emu_window) { | ||||
|     // Known problem with GLEW prevents contexts above 2.x on OSX unless glewExperimental is enabled.
 | ||||
|     glewExperimental = GL_TRUE; | ||||
| 
 | ||||
|     g_emu_window = emu_window; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue