mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-03-02 07:22:19 +00:00
15 lines
227 B
C
15 lines
227 B
C
|
#ifndef __VR_RENDERER
|
||
|
#define __VR_RENDERER
|
||
|
|
||
|
#if __ANDROID__
|
||
|
|
||
|
#include "vr_types.h"
|
||
|
|
||
|
void VR_InitRenderer( engine_t* engine );
|
||
|
void VR_DestroyRenderer( engine_t* engine );
|
||
|
void VR_DrawFrame( engine_t* engine );
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|