mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 04:52:39 +02:00
11 lines
194 B
C
11 lines
194 B
C
#pragma once
|
|
|
|
typedef struct NvGpu NvGpu;
|
|
|
|
typedef struct {
|
|
NvGpu* parent;
|
|
} NvZcullContext;
|
|
|
|
Result nvzcullCreate(NvZcullContext* z, NvGpu* parent);
|
|
void nvzcullClose(NvZcullContext* z);
|