mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-12-02 08:53:41 +00:00
15 lines
296 B
C
15 lines
296 B
C
#ifndef __VR_RENDERER
|
|
#define __VR_RENDERER
|
|
|
|
#if __ANDROID__
|
|
|
|
#include "vr_types.h"
|
|
|
|
void VR_GetRsolution( engine_t* engine, int *pWidth, int *pHeight );
|
|
void VR_InitRenderer( engine_t* engine );
|
|
void VR_DestroyRenderer( engine_t* engine );
|
|
void VR_DrawFrame( engine_t* engine );
|
|
|
|
#endif
|
|
|
|
#endif
|