Integrate all the progress into master #6

Merged
jaby merged 595 commits from ToolBox into main 2025-01-01 13:17:44 +00:00
1 changed files with 7 additions and 1 deletions
Showing only changes of commit c535b96ccb - Show all commits

View File

@ -5,14 +5,21 @@
#include <PSX/GPU/gpu.hpp>
#include <PSX/GPU/gpu_primitives.hpp>
#include <PSX/Timer/frame_timer.hpp>
#include <FontWriter/default_font.hpp>
#include <FontWriter/font_writer.hpp>
#include <stdio.h>
using namespace JabyEngine;
using NewFontWriter = ::JabyEngine::FontWriter;
static object::Paco paco;
static void setup() {
static constexpr auto VRAMFontDst = GPU::PositionU16::create(320, 0);
DefaultFont::load(VRAMFontDst);
NewFontWriter::setup(VRAMFontDst, DefaultFont::Info);
Assets::load_for_main();
FontWriter::FontWriter::setup();
@ -35,7 +42,6 @@ static void render() {
}
void main() {
test();
setup();
Overlay::TimerTest::mesaure_busy_loop();