mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
12 lines
232 B
C
12 lines
232 B
C
#pragma once
|
|
|
|
typedef struct NvGpu NvGpu;
|
|
|
|
typedef struct {
|
|
NvGpu* parent;
|
|
NvBuffer ctx_buf;
|
|
} NvZcullContext;
|
|
|
|
Result nvZcullContextCreate(NvZcullContext* z, NvGpu* parent);
|
|
void nvZcullContextClose(NvZcullContext* z);
|