mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
14 lines
276 B
C
14 lines
276 B
C
#pragma once
|
|
|
|
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);
|