mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
13 lines
247 B
C
13 lines
247 B
C
#ifndef __VR_BASE
|
|
#define __VR_BASE
|
|
|
|
#include "VRFramebuffer.h"
|
|
|
|
void VR_Init( ovrJava java );
|
|
void VR_Destroy( engine_t* engine );
|
|
void VR_EnterVR( engine_t* engine );
|
|
void VR_LeaveVR( engine_t* engine );
|
|
|
|
engine_t* VR_GetEngine( void );
|
|
|
|
#endif
|