Update PoolBox with latest changes
This commit is contained in:
@@ -13,6 +13,24 @@ namespace JabyEngine {
|
||||
|
||||
// ###################################################################
|
||||
|
||||
static constexpr GPU::SizeI8 SizeI8() {
|
||||
return creator_template<GPU::SizeI8>(0_i8, 0_i8);
|
||||
}
|
||||
static constexpr GPU::SizeI8 SizeI8(int8_t x, int8_t y) {
|
||||
return creator_template<GPU::SizeI8>(x, y);
|
||||
}
|
||||
|
||||
// ###################################################################
|
||||
|
||||
static constexpr GPU::SizeU8 SizeU8() {
|
||||
return creator_template<GPU::SizeU8>(0_u8, 0_u8);
|
||||
}
|
||||
static constexpr GPU::SizeU8 SizeU8(uint8_t x, uint8_t y) {
|
||||
return creator_template<GPU::SizeU8>(x, y);
|
||||
}
|
||||
|
||||
// ###################################################################
|
||||
|
||||
static constexpr GPU::SizeI16 SizeI16() {
|
||||
return creator_template<GPU::SizeI16>(0_i16, 0_i16);
|
||||
}
|
||||
|
Reference in New Issue
Block a user