chore: update gizmo materials
This commit is contained in:
12
thermion_dart/native/include/material/gizmo.S
Normal file
12
thermion_dart/native/include/material/gizmo.S
Normal file
@@ -0,0 +1,12 @@
|
||||
.global GIZMO_GIZMO_OFFSET;
|
||||
.global GIZMO_GIZMO_SIZE;
|
||||
|
||||
.global GIZMO_PACKAGE
|
||||
.section .rodata
|
||||
GIZMO_PACKAGE:
|
||||
.incbin "gizmo.bin"
|
||||
GIZMO_GIZMO_OFFSET:
|
||||
.int 0
|
||||
GIZMO_GIZMO_SIZE:
|
||||
.int 38039
|
||||
|
||||
12
thermion_dart/native/include/material/gizmo.apple.S
Normal file
12
thermion_dart/native/include/material/gizmo.apple.S
Normal file
@@ -0,0 +1,12 @@
|
||||
.global _GIZMO_GIZMO_OFFSET;
|
||||
.global _GIZMO_GIZMO_SIZE;
|
||||
|
||||
.global _GIZMO_PACKAGE
|
||||
.section __TEXT,__const
|
||||
_GIZMO_PACKAGE:
|
||||
.incbin "gizmo.bin"
|
||||
_GIZMO_GIZMO_OFFSET:
|
||||
.int 0
|
||||
_GIZMO_GIZMO_SIZE:
|
||||
.int 38039
|
||||
|
||||
BIN
thermion_dart/native/include/material/gizmo.bin
Normal file
BIN
thermion_dart/native/include/material/gizmo.bin
Normal file
Binary file not shown.
1912
thermion_dart/native/include/material/gizmo.c
Normal file
1912
thermion_dart/native/include/material/gizmo.c
Normal file
File diff suppressed because it is too large
Load Diff
13
thermion_dart/native/include/material/gizmo.h
Normal file
13
thermion_dart/native/include/material/gizmo.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef GIZMO_H_
|
||||
#define GIZMO_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
extern "C" {
|
||||
extern const uint8_t GIZMO_PACKAGE[];
|
||||
extern int GIZMO_GIZMO_OFFSET;
|
||||
extern int GIZMO_GIZMO_SIZE;
|
||||
}
|
||||
#define GIZMO_GIZMO_DATA (GIZMO_PACKAGE + GIZMO_GIZMO_OFFSET)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user