diff options
author | red031000 <rubenru09@aol.com> | 2020-06-22 18:34:26 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-06-22 18:34:26 +0100 |
commit | 49a400ceeb43a32108e4ab1cf8a1726b04ef3ddf (patch) | |
tree | e6bf1bf7072b46ce1a03b22783baead3eebb940f /tools/nitrogfx/gfx.h | |
parent | c9a26fd84fad7ba98035c22d13233e0bc4c429f6 (diff) |
nitrogfx NCGR support
Diffstat (limited to 'tools/nitrogfx/gfx.h')
-rw-r--r-- | tools/nitrogfx/gfx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/nitrogfx/gfx.h b/tools/nitrogfx/gfx.h index 9835021e..da56c5c5 100644 --- a/tools/nitrogfx/gfx.h +++ b/tools/nitrogfx/gfx.h @@ -31,6 +31,7 @@ struct Image { void ReadImage(char *path, int tilesWidth, int bitDepth, int metatileWidth, int metatileHeight, struct Image *image, bool invertColors); void ReadNtrImage(char *path, int tilesWidth, int bitDepth, int metatileWidth, int metatileHeight, struct Image *image, bool invertColors); void WriteImage(char *path, int numTiles, int bitDepth, int metatileWidth, int metatileHeight, struct Image *image, bool invertColors); +void WriteNtrImage(char *path, int numTiles, int bitDepth, int metatileWidth, int metatileHeight, struct Image *image, bool invertColors, bool clobberSize, bool byteOrder); void FreeImage(struct Image *image); void ReadGbaPalette(char *path, struct Palette *palette); void ReadNtrPalette(char *path, struct Palette *palette); |