mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-26 22:11:18 +00:00
b7d89ff02b
- Weapon alignment values courtesy of SkillFur (thanks!) - Lightning gun now renders lightning in the correct direction - Many cvar changes - Rail Gun and Rocket Launcher use newer implementation - Changed projection so that UI elements draw clearer - Made scoreboards easier to read but HUD slightly closer
15 lines
297 B
C
15 lines
297 B
C
#ifndef __VR_RENDERER
|
|
#define __VR_RENDERER
|
|
|
|
#if __ANDROID__
|
|
|
|
#include "vr_types.h"
|
|
|
|
void VR_GetResolution( 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
|