mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Make RenderActorView private
This commit is contained in:
parent
f6cc75fad5
commit
cd9043fd94
1 changed files with 2 additions and 1 deletions
|
@ -34,13 +34,14 @@ namespace swrenderer
|
|||
|
||||
void SetClearColor(int color);
|
||||
|
||||
void RenderActorView(AActor *actor, bool dontmaplines = false);
|
||||
void RenderView(player_t *player);
|
||||
void RenderViewToCanvas(AActor *actor, DCanvas *canvas, int x, int y, int width, int height, bool dontmaplines = false);
|
||||
|
||||
bool DontMapLines() const { return dontmaplines; }
|
||||
|
||||
private:
|
||||
void RenderActorView(AActor *actor, bool dontmaplines = false);
|
||||
|
||||
bool dontmaplines = false;
|
||||
int clearcolor = 0;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue