本文整理汇总了C++中Application::Display方法的典型用法代码示例。如果您正苦于以下问题:C++ Application::Display方法的具体用法?C++ Application::Display怎么用?C++ Application::Display使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Application
的用法示例。
在下文中一共展示了Application::Display方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Draw
void Level::Draw(Application &App) {
if(m_exit) {
return;
}
// Clear screen
App.Clear();
// Draw the panels into the buffer
m_gui.Draw(App);
App.Draw(sf::Shape::Rectangle(0, 50.0f, 860.0f, 580.0f, sf::Color(0, 0, 0, 130)));
// If we have a menu pop up, draw it
if(m_active_menu) {
// Tints the background panels using a black transparent rectangle that covers the whole screen
App.Draw(sf::Shape::Rectangle(0, 0, App.GetWidth(), App.GetHeight(), sf::Color(0, 0, 0, 230)));
// draw active menu on top of the tinted panels
m_active_menu->Draw(App);
}
// Finally, display the buffered frame on screen
App.Display();
}