mirror of
https://github.com/AntonioND/nitro-engine.git
synced 2025-06-19 09:05:50 -04:00

img2ds is still required for the clear bitmap example because grit doesn't support the clear depth format.
26 lines
586 B
C
26 lines
586 B
C
|
|
//{{BLOCK(texture)
|
|
|
|
//======================================================================
|
|
//
|
|
// texture, 256x256@16,
|
|
// Alphabit on.
|
|
// + bitmap not compressed
|
|
// Total size: 131072 = 131072
|
|
//
|
|
// Time-stamp: 2024-01-27, 18:13:28
|
|
// Exported by Cearn's GBA Image Transmogrifier, v0.9.2
|
|
// ( http://www.coranac.com/projects/#grit )
|
|
//
|
|
//======================================================================
|
|
|
|
#ifndef GRIT_TEXTURE_H
|
|
#define GRIT_TEXTURE_H
|
|
|
|
#define textureBitmapLen 131072
|
|
extern const unsigned int textureBitmap[32768];
|
|
|
|
#endif // GRIT_TEXTURE_H
|
|
|
|
//}}BLOCK(texture)
|