mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-08 21:25:14 +01:00
10 lines
198 B
C
10 lines
198 B
C
typedef struct NvGpu NvGpu;
|
|
|
|
typedef struct {
|
|
NvGpu* parent;
|
|
u64 obj_id;
|
|
} Nv3DContext;
|
|
|
|
Result nv3DContextCreate(Nv3DContext* t, NvGpu* parent);
|
|
void nv3DContextClose(Nv3DContext* t);
|