mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
12 lines
198 B
C
12 lines
198 B
C
#pragma once
|
|
|
|
typedef struct NvGpu NvGpu;
|
|
|
|
typedef struct {
|
|
NvGpu* parent;
|
|
u64 obj_id;
|
|
} Nv3dContext;
|
|
|
|
Result nv3dCreate(Nv3dContext* t, NvGpu* parent);
|
|
void nv3dClose(Nv3dContext* t);
|