mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
13 lines
240 B
C
13 lines
240 B
C
#pragma once
|
|
|
|
typedef struct NvGpu {
|
|
NvAddressSpace addr_space;
|
|
NvChannel gpu_channel;
|
|
NvGpfifo gpfifo;
|
|
NvZcullContext zcull_ctx;
|
|
Nv3dContext _3d_ctx;
|
|
} NvGpu;
|
|
|
|
Result nvgpuCreate(NvGpu* g);
|
|
void nvgpuClose(NvGpu* g);
|