Changeset View
Changeset View
Standalone View
Standalone View
source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp
| Context not available. | |||||
| m_window->setSwapInterval(interval); | m_window->setSwapInterval(interval); | ||||
| } | } | ||||
| bool GPG_Canvas::GetSwapInterval(int& intervalOut) | int GPG_Canvas::GetSwapInterval() | ||||
| { | { | ||||
| if (m_window) | if (m_window) | ||||
| return (bool)m_window->getSwapInterval(intervalOut); | return m_window->getSwapInterval(); | ||||
| return false; | return 0; | ||||
| } | } | ||||
| void GPG_Canvas::ResizeWindow(int width, int height) | void GPG_Canvas::ResizeWindow(int width, int height) | ||||
| Context not available. | |||||