Support proper scaling and other MATRIX operations

This commit is contained in:
Jaby
2024-04-23 23:04:17 +02:00
committed by Jaby
parent 91addb8a50
commit a5e5a42611
5 changed files with 133 additions and 32 deletions

View File

@@ -2,4 +2,9 @@
#include "PSX/jabyengine_defines.hpp"
int strncmp(const char* s1, const char* s2, size_t n);
size_t strlen(const char* str);
size_t strlen(const char* str);
extern "C" {
// Needs to be provided for GCC optimizations
void* memset(void* dest, int val, size_t len);
}