You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 1. set a window content scale callback
glfwSetWindowContentScaleCallback(fWindow, callbacks::onContentScaleChange);
// here we assume content scale is 2.0
// 2. change HiDPI awareness
glfwSetWindowAttrib(fWindow, GLFW_SCALE_FRAMEBUFFER, GLFW_FALSE);
// here content scale is 1.0 but callback is not called
The callback is not called.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
The callback is not called.
The text was updated successfully, but these errors were encountered: