diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-06-23 19:24:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 19:24:10 -0400 |
commit | 615c6579c80a9bcc9482d5ef6e06654bb07494f6 (patch) | |
tree | b684473a897efa5f55103cbaced260cf85a8e057 /tools/nitrogfx/gfx.h | |
parent | 291f2d27d36b5c437c6c1908d5217bb954799402 (diff) | |
parent | 18840a132f3c65a16b811c973616c62312c53091 (diff) |
Merge pull request #185 from red031000/nitrogfx
nitrogfx NCGR
Diffstat (limited to 'tools/nitrogfx/gfx.h')
-rw-r--r-- | tools/nitrogfx/gfx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/nitrogfx/gfx.h b/tools/nitrogfx/gfx.h index fc57380e..da56c5c5 100644 --- a/tools/nitrogfx/gfx.h +++ b/tools/nitrogfx/gfx.h @@ -29,7 +29,9 @@ 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); |