mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +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);
|