fix ResourceBuffer going out of scope before texture callbacks

This commit is contained in:
Nick Fisher
2023-10-03 12:46:14 +11:00
parent 4a9bf91fae
commit 4492a9fa8f
168 changed files with 36980 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
#ifndef IMAGE_H_
#define IMAGE_H_
#include <stdint.h>
extern "C" {
extern const uint8_t IMAGE_PACKAGE[];
extern int IMAGE_IMAGE_OFFSET;
extern int IMAGE_IMAGE_SIZE;
}
#define IMAGE_IMAGE_DATA (IMAGE_PACKAGE + IMAGE_IMAGE_OFFSET)
#endif