mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 23:32:04 +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 SetClearColor(int color);
|
||||||
|
|
||||||
void RenderActorView(AActor *actor, bool dontmaplines = false);
|
|
||||||
void RenderView(player_t *player);
|
void RenderView(player_t *player);
|
||||||
void RenderViewToCanvas(AActor *actor, DCanvas *canvas, int x, int y, int width, int height, bool dontmaplines = false);
|
void RenderViewToCanvas(AActor *actor, DCanvas *canvas, int x, int y, int width, int height, bool dontmaplines = false);
|
||||||
|
|
||||||
bool DontMapLines() const { return dontmaplines; }
|
bool DontMapLines() const { return dontmaplines; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void RenderActorView(AActor *actor, bool dontmaplines = false);
|
||||||
|
|
||||||
bool dontmaplines = false;
|
bool dontmaplines = false;
|
||||||
int clearcolor = 0;
|
int clearcolor = 0;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue