mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
9 lines
241 B
C
9 lines
241 B
C
#pragma once
|
|
#include "../types.h"
|
|
|
|
Result nvgfxInitialize(void);
|
|
void nvgfxExit(void);
|
|
Result nvgfxEventWait(u32 syncpt_id, u32 threshold, s32 timeout);
|
|
Result nvgfxSubmitGpfifo(void);
|
|
Result nvgfxGetFramebuffer(u8 **buffer, size_t *size);
|