chore(profile): update 3.3.5a

This commit is contained in:
phaneron 2024-08-01 01:21:17 -04:00
parent b6fb39c844
commit 063790577d
11 changed files with 2615 additions and 1872 deletions

View file

@ -1,29 +1,30 @@
#ifndef GX_SHADER_H
#define GX_SHADER_H
#include "storm/hash.h"
#include "storm/array/uint8_t.h"
typedef struct CGxShader CGxShader;
STORM_TS_HASH(CGxShader, HASHKEY_STRI);
// class CGxShader : public TSHashObject<CGxShader, HASHKEY_STRI>
struct CGxShader {
TSHashObject_CGxShader_HASHKEY_STRI b_base;
uint32_t refCount;
void* apiSpecific;
int32_t target;
int32_t int28;
int32_t valid;
int32_t loaded;
int32_t int34;
int32_t patched;
int32_t int3C;
int32_t int40;
int16_t int44;
int16_t int46;
TSGrowableArray_uint8_t code;
};
#endif
#ifndef GX_SHADER_H
#define GX_SHADER_H
#include "storm/hash.h"
#include "storm/array/uint8_t.h"
typedef struct CGxShader CGxShader;
STORM_TS_HASH(CGxShader, HASHKEY_STRI);
// class CGxShader : public TSHashObject<CGxShader, HASHKEY_STRI>
struct CGxShader {
TSHashObject_CGxShader_HASHKEY_STRI b_base;
uint32_t refCount;
void* apiSpecific;
int32_t target;
int32_t int28;
int32_t valid;
int32_t loaded;
int32_t int34;
int32_t patched;
int32_t int3C;
int32_t int40;
int16_t int44;
int16_t int46;
TSGrowableArray_uint8_t code;
};
#endif