mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 21:12:53 +02:00
Remove const from ApplicationOverlay::renderOverlay
This commit is contained in:
parent
6fd474a1a3
commit
5ac02f66ca
2 changed files with 2 additions and 2 deletions
|
@ -185,7 +185,7 @@ ApplicationOverlay::~ApplicationOverlay() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Renders the overlays either to a texture or to the screen
|
// Renders the overlays either to a texture or to the screen
|
||||||
void ApplicationOverlay::renderOverlay(const RenderArgs& renderArgs) {
|
void ApplicationOverlay::renderOverlay(RenderArgs& renderArgs) {
|
||||||
PerformanceWarning warn(Menu::getInstance()->isOptionChecked(MenuOption::PipelineWarnings), "ApplicationOverlay::displayOverlay()");
|
PerformanceWarning warn(Menu::getInstance()->isOptionChecked(MenuOption::PipelineWarnings), "ApplicationOverlay::displayOverlay()");
|
||||||
Overlays& overlays = qApp->getOverlays();
|
Overlays& overlays = qApp->getOverlays();
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ public:
|
||||||
ApplicationOverlay();
|
ApplicationOverlay();
|
||||||
~ApplicationOverlay();
|
~ApplicationOverlay();
|
||||||
|
|
||||||
void renderOverlay(const RenderArgs& renderArgs);
|
void renderOverlay(RenderArgs& renderArgs);
|
||||||
void displayOverlayTexture();
|
void displayOverlayTexture();
|
||||||
void displayOverlayTextureStereo(Camera& whichCamera, float aspectRatio, float fov);
|
void displayOverlayTextureStereo(Camera& whichCamera, float aspectRatio, float fov);
|
||||||
void displayOverlayTextureHmd(Camera& whichCamera);
|
void displayOverlayTextureHmd(Camera& whichCamera);
|
||||||
|
|
Loading…
Reference in a new issue