Update C headers to be C++

This commit is contained in:
2024-04-07 10:46:35 -05:00
parent 6702e60864
commit 3ef946ad4b
58 changed files with 153 additions and 225 deletions

View File

@@ -1,6 +1,6 @@
#pragma once
#include "Type/types.hpp"
#include <stdarg.h>
#include <stdarg.hpp>
namespace JabyEngine {
class FontWriter {

View File

@@ -2,7 +2,7 @@
#include <FontWriter/fonts.hpp>
#include <PSX/File/Processor/file_processor.hpp>
#include <PSX/Auxiliary/lz4_decompressor.hpp>
#include <stdio.h>
#include <stdio.hpp>
namespace JabyEngine {
static size_t decompress_font(uint32_t* work_area) {

View File

@@ -2,7 +2,6 @@
#include <PSX/GPU/gpu.hpp>
#include <PSX/GPU/make_gpu_primitives.hpp>
#include <FontWriter/font_writer.hpp>
#include <stdio.h>
namespace JabyEngine {
static constexpr auto ITOABufferSize = 32;