mirror of
https://github.com/ctruLua/ctruLua.git
synced 2025-10-28 08:49:30 +00:00
Updated all the libs, added citro3d, added ctr.swkbd (WIP, untested)
This commit is contained in:
parent
68a44645f7
commit
49c87e5526
97 changed files with 7341 additions and 944 deletions
16
libs/citro3d/include/c3d/attribs.h
Normal file
16
libs/citro3d/include/c3d/attribs.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
#include "types.h"
|
||||
|
||||
typedef struct
|
||||
{
|
||||
u32 flags[2];
|
||||
u64 permutation;
|
||||
int attrCount;
|
||||
} C3D_AttrInfo;
|
||||
|
||||
void AttrInfo_Init(C3D_AttrInfo* info);
|
||||
int AttrInfo_AddLoader(C3D_AttrInfo* info, int regId, GPU_FORMATS format, int count);
|
||||
int AttrInfo_AddFixed(C3D_AttrInfo* info, int regId);
|
||||
|
||||
C3D_AttrInfo* C3D_GetAttrInfo(void);
|
||||
void C3D_SetAttrInfo(C3D_AttrInfo* info);
|
||||
Loading…
Add table
Add a link
Reference in a new issue