citra/src/video_core/utils.cpp

37 lines
1.1 KiB
C++
Raw Normal View History

2014-04-09 01:04:25 +02:00
// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// Licensed under GPLv2 or any later version
2014-04-09 01:04:25 +02:00
// Refer to the license.txt file included.
2014-04-05 22:04:25 +02:00
#include <stdio.h>
#include <string.h>
#include "video_core/utils.h"
2014-04-05 22:04:25 +02:00
namespace VideoCore {
2014-05-19 22:51:59 +02:00
/**
* 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, short width, short height, u8* raw_data) {
TGAHeader hdr = {0, 0, 2, 0, 0, 0, 0, width, height, 24, 0};
FILE* fout = fopen(filename.c_str(), "wb");
2014-05-19 22:51:59 +02:00
fwrite(&hdr, sizeof(TGAHeader), 1, fout);
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
putc(raw_data[(3 * (y * width)) + (3 * x) + 0], fout); // b
putc(raw_data[(3 * (y * width)) + (3 * x) + 1], fout); // g
putc(raw_data[(3 * (y * width)) + (3 * x) + 2], fout); // r
2014-05-01 05:12:01 +02:00
}
}
2014-05-19 22:51:59 +02:00
fclose(fout);
}
} // namespace