1
0
mirror of https://github.com/switchbrew/libnx.git synced 2025-07-26 03:52:24 +02:00
libnx/nx/include/switch/nvidia/gpu/gpu.h
2018-08-31 13:05:21 +02:00

12 lines
215 B
C

#pragma once
typedef struct NvGpu {
NvAddressSpace addr_space;
NvChannel gpu_channel;
NvGpfifo gpfifo;
NvZcullContext zcull_ctx;
} NvGpu;
Result nvgpuCreate(NvGpu* g);
void nvgpuClose(NvGpu* g);