mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 22:00:05 +00:00 
			
		
		
		
	Fixed indents
This commit is contained in:
		
							parent
							
								
									948cfe6d37
								
							
						
					
					
						commit
						704075f04a
					
				
					 8 changed files with 66 additions and 68 deletions
				
			
		|  | @ -8,39 +8,37 @@ | |||
| #include "video_core/utils.h" | ||||
| 
 | ||||
| namespace VideoCore { | ||||
| 	 | ||||
| 	/**
 | ||||
| 	 * Dumps a texture to TGA | ||||
| 	 * @param filename String filename to dump texture to | ||||
| 	 * @param width Width of texture in pixels | ||||
| 	 * @param height Height of texture in pixels | ||||
| 	 * @param raw_data Raw RGBA8 texture data to dump | ||||
| 	 * @todo This should be moved to some general purpose/common code | ||||
| 	 */ | ||||
| 	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++) { | ||||
| 			for (int j = 0; j < width; j++) { | ||||
| 				b = raw_data[(3 * (i * width)) + (3 * j) + 0]; | ||||
| 				g = raw_data[(3 * (i * width)) + (3 * j) + 1]; | ||||
| 				r = raw_data[(3 * (i * width)) + (3 * j) + 2]; | ||||
| 				putc(b, fout); | ||||
| 				putc(g, fout); | ||||
| 				putc(r, fout); | ||||
| 			} | ||||
| 		} | ||||
| 		fclose(fout); | ||||
| 	} | ||||
| 	 | ||||
|     /**
 | ||||
|      * Dumps a texture to TGA | ||||
|      * @param filename String filename to dump texture to | ||||
|      * @param width Width of texture in pixels | ||||
|      * @param height Height of texture in pixels | ||||
|      * @param raw_data Raw RGBA8 texture data to dump | ||||
|      * @todo This should be moved to some general purpose/common code | ||||
|      */ | ||||
|     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++) { | ||||
|             for (int j = 0; j < width; j++) { | ||||
|                 b = raw_data[(3 * (i * width)) + (3 * j) + 0]; | ||||
|                 g = raw_data[(3 * (i * width)) + (3 * j) + 1]; | ||||
|                 r = raw_data[(3 * (i * width)) + (3 * j) + 2]; | ||||
|                 putc(b, fout); | ||||
|                 putc(g, fout); | ||||
|                 putc(r, fout); | ||||
|             } | ||||
|         } | ||||
|         fclose(fout); | ||||
|     } | ||||
| } // namespace
 | ||||
|  | @ -30,8 +30,8 @@ void Start() { | |||
| 
 | ||||
| /// Initialize the video core
 | ||||
| void Init(EmuWindow* emu_window) { | ||||
| 	glewExperimental = GL_TRUE; | ||||
| 	 | ||||
|     glewExperimental = GL_TRUE; | ||||
| 
 | ||||
|     g_emu_window = emu_window; | ||||
|     g_emu_window->MakeCurrent(); | ||||
|     g_renderer = new RendererOpenGL(); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue