summaryrefslogtreecommitdiff
path: root/src/video_core/utils.h
diff options
context:
space:
mode:
authorGravatar linkmauve2016-04-30 13:57:45 +0100
committerGravatar linkmauve2016-04-30 13:57:45 +0100
commitd8aa2460ef92166d337fd20b0e1e3baaf9bd1e9a (patch)
treee22b4de0ca127742e3794587d9ca61a22b0e6ece /src/video_core/utils.h
parentMerge pull request #1729 from MerryMage/null-sink (diff)
parentRemove TGA dumper (diff)
downloadyuzu-d8aa2460ef92166d337fd20b0e1e3baaf9bd1e9a.tar.gz
yuzu-d8aa2460ef92166d337fd20b0e1e3baaf9bd1e9a.tar.xz
yuzu-d8aa2460ef92166d337fd20b0e1e3baaf9bd1e9a.zip
Merge pull request #1735 from JayFoxRox/remove-tga
Remove TGA dumper
Diffstat (limited to 'src/video_core/utils.h')
-rw-r--r--src/video_core/utils.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/video_core/utils.h b/src/video_core/utils.h
index 4fa60a10e..8b007520b 100644
--- a/src/video_core/utils.h
+++ b/src/video_core/utils.h
@@ -10,31 +10,6 @@
10 10
11namespace VideoCore { 11namespace VideoCore {
12 12
13/// Structure for the TGA texture format (for dumping)
14struct TGAHeader {
15 char idlength;
16 char colormaptype;
17 char datatypecode;
18 short int colormaporigin;
19 short int colormaplength;
20 short int x_origin;
21 short int y_origin;
22 short width;
23 short height;
24 char bitsperpixel;
25 char imagedescriptor;
26};
27
28/**
29 * Dumps a texture to TGA
30 * @param filename String filename to dump texture to
31 * @param width Width of texture in pixels
32 * @param height Height of texture in pixels
33 * @param raw_data Raw RGBA8 texture data to dump
34 * @todo This should be moved to some general purpose/common code
35 */
36void DumpTGA(std::string filename, short width, short height, u8* raw_data);
37
38/** 13/**
39 * Interleave the lower 3 bits of each coordinate to get the intra-block offsets, which are 14 * Interleave the lower 3 bits of each coordinate to get the intra-block offsets, which are
40 * arranged in a Z-order curve. More details on the bit manipulation at: 15 * arranged in a Z-order curve. More details on the bit manipulation at: