mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-08 21:25:14 +01:00
12 lines
262 B
C
12 lines
262 B
C
typedef struct NvGpu {
|
|
NvAddressSpace addr_space;
|
|
NvChannel gpu_channel;
|
|
NvGpfifo gpfifo;
|
|
NvZcullContext zcull_ctx;
|
|
Nv3DContext _3d_ctx;
|
|
NvErrorNotifier error_notifier;
|
|
} NvGpu;
|
|
|
|
Result nvGpuCreate(NvGpu* g);
|
|
void nvGpuClose(NvGpu* g);
|