Files
cup_edit/dart_filament/native/include/material/image.h
2024-05-11 22:38:52 +08:00

19 lines
315 B
C

#ifndef IMAGE_H_
#define IMAGE_H_
#include <stdint.h>
#if defined(__cplusplus)
extern "C"
{
#endif
extern const uint8_t IMAGE_PACKAGE[];
extern int IMAGE_IMAGE_OFFSET;
extern int IMAGE_IMAGE_SIZE;
#if defined(__cplusplus)
}
#endif
#define IMAGE_IMAGE_DATA (IMAGE_PACKAGE + IMAGE_IMAGE_OFFSET)
#endif