Support original GPU test

This commit is contained in:
2024-01-03 22:07:39 -06:00
parent 4723126af2
commit 21efede7cb
4 changed files with 155 additions and 193 deletions

View File

@@ -127,6 +127,9 @@ namespace JabyEngine {
static constexpr GPU::TPage TPage(uint16_t x, uint16_t y, GPU::SemiTransparency transparency, GPU::TexturePageColor clut_color) {
return creator_template<GPU::TPage>(x, y, transparency, clut_color);
}
static constexpr GPU::TPage TPage(const GPU::PositionU16& tex_pos, GPU::SemiTransparency transparency, GPU::TexturePageColor clut_color) {
return creator_template<GPU::TPage>(tex_pos, transparency, clut_color);
}
// ###################################################################