mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
12 lines
212 B
C
12 lines
212 B
C
#pragma once
|
|
|
|
typedef struct NvGpu NvGpu;
|
|
|
|
typedef struct {
|
|
NvGpu* parent;
|
|
u64 obj_id;
|
|
} Nv3DContext;
|
|
|
|
Result nv3DContextCreate(Nv3DContext* t, NvGpu* parent);
|
|
void nv3DContextClose(Nv3DContext* t);
|