Remove const from ApplicationOverlay::renderOverlay

This commit is contained in:
Ryan Huffman 2015-05-22 09:58:20 -07:00
parent 6fd474a1a3
commit 5ac02f66ca
2 changed files with 2 additions and 2 deletions

View file

@ -185,7 +185,7 @@ ApplicationOverlay::~ApplicationOverlay() {
}
// 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()");
Overlays& overlays = qApp->getOverlays();

View file

@ -32,7 +32,7 @@ public:
ApplicationOverlay();
~ApplicationOverlay();
void renderOverlay(const RenderArgs& renderArgs);
void renderOverlay(RenderArgs& renderArgs);
void displayOverlayTexture();
void displayOverlayTextureStereo(Camera& whichCamera, float aspectRatio, float fov);
void displayOverlayTextureHmd(Camera& whichCamera);