mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-17 15:50:58 +00:00
16 lines
324 B
C++
16 lines
324 B
C++
|
|
#pragma once
|
|
|
|
#include "r_portal_segment.h"
|
|
|
|
namespace swrenderer
|
|
{
|
|
extern PortalDrawseg* CurrentPortal;
|
|
extern int CurrentPortalUniq;
|
|
extern bool CurrentPortalInSkybox;
|
|
|
|
void R_DrawPortals();
|
|
void R_DrawWallPortals();
|
|
void R_EnterPortal(PortalDrawseg* pds, int depth);
|
|
void R_HighlightPortal(PortalDrawseg* pds);
|
|
}
|