mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-23 05:12:39 +02:00
12 lines
157 B
C
12 lines
157 B
C
#include <switch.h>
|
|
|
|
Result nv3dCreate(Nv3dContext* t, NvGpu* parent)
|
|
{
|
|
t->parent = parent;
|
|
return 0;
|
|
}
|
|
|
|
void nv3dClose(Nv3dContext* t) {
|
|
/**/
|
|
}
|