mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
feat(profile): update 3.3.5a profile
This commit is contained in:
parent
9053d61b6b
commit
e1bab2b375
186 changed files with 1204 additions and 43942 deletions
36
profile/3.3.5a-windows-386/include/texture/texture.h
Normal file
36
profile/3.3.5a-windows-386/include/texture/texture.h
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
#ifndef TEXTURE_TEXTURE_H
|
||||
#define TEXTURE_TEXTURE_H
|
||||
|
||||
#include "common/handle.h"
|
||||
#include "common/status.h"
|
||||
#include "gx/types.h"
|
||||
#include "gx/texture.h"
|
||||
#include "async/object.h"
|
||||
|
||||
DECLARE_STRUCT(CTexture);
|
||||
|
||||
// struct CTexture : CHandleObject
|
||||
struct CTexture {
|
||||
CHandleObject b_base;
|
||||
uint32_t dword8[6];
|
||||
CGxTexFlags unkTexFlags1;
|
||||
uint32_t dword10;
|
||||
uint16_t flags;
|
||||
int8_t bestMip;
|
||||
int8_t alphaBits;
|
||||
CStatus loadStatus;
|
||||
CAsyncObject* asyncObject;
|
||||
CGxTex* gxTex;
|
||||
int32_t gxTexTarget;
|
||||
uint16_t gxWidth;
|
||||
uint16_t gxHeight;
|
||||
EGxTexFormat gxTexFormat;
|
||||
EGxTexFormat dataFormat;
|
||||
CGxTexFlags gxTexFlags;
|
||||
void* atlas;
|
||||
uint32_t atlasBlockIndex;
|
||||
uint32_t dword50[2];
|
||||
char filename[260];
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue