Render Dönerfisch for the GTE test

This commit is contained in:
2024-01-23 12:11:57 -05:00
parent 40c86eea0e
commit c33f6e8c1e
4 changed files with 54 additions and 6 deletions

View File

@@ -5,8 +5,16 @@ namespace Assets {
using namespace JabyEngine;
namespace Main {
static constexpr auto PacoTIM = SimpleTIM(896, 0, 960, 510);
static constexpr auto DoenerFishTIM = SimpleTIM(896 + 30, 0, 960 + 16, 510);
struct ImageInfo {
SimpleTIM tim;
GPU::SizeI16 size;
};
static constexpr auto PacoTIM = SimpleTIM(896, 0, 960, 510);
static constexpr auto DoenerFishInfo = ImageInfo{
.tim = SimpleTIM(896 + 30, 0, 960 + 16, 510),
.size = GPU::SizeI16::create(128, 64)
};
void load();
}