mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
16 lines
567 B
C
16 lines
567 B
C
#pragma once
|
|
|
|
#include "VR/VRBase.h"
|
|
|
|
void ovrApp_Clear(ovrApp* app);
|
|
void ovrApp_Destroy(ovrApp* app);
|
|
int ovrApp_HandleXrEvents(ovrApp* app);
|
|
|
|
void ovrFramebuffer_Acquire(ovrFramebuffer* frameBuffer);
|
|
void ovrFramebuffer_Resolve(ovrFramebuffer* frameBuffer);
|
|
void ovrFramebuffer_Release(ovrFramebuffer* frameBuffer);
|
|
void ovrFramebuffer_SetCurrent(ovrFramebuffer* frameBuffer);
|
|
void ovrFramebuffer_SetNone();
|
|
|
|
void ovrRenderer_Create(XrSession session, ovrRenderer* renderer, int width, int height, bool multiview);
|
|
void ovrRenderer_Destroy(ovrRenderer* renderer);
|