Daijiro Fukuda

Results 519 comments of Daijiro Fukuda

Hmm, can we really purge v4 safely? If a user upgrades to v5 from v4, I suppose that the v4 package should not be purged. The focal environment where the...

I confirmed we can purge td-agent v4 without the error if we stop the service in advance. However, as I am concerned, files are deleted unexpectedly, corrupting the environment. The...

I am not familiar with the behavior of multiple monitors, but I have recently touched on the fullscreen specifications of GLFW and raylib. I understand that it is raylib's specification...

@bitRAKE @raysan5 I have confirmed that the fullscreen toggling without changing the resolution does not work as expected in a multiple-display environment. I'd be happy too if we could fix...

Sorry for the delay. I am checking this problem, and I do not see any problem with the implementation of raylib. `GetCurrentMonitor` can select the correct monitor, and `glfwSetWindowMonitor` is...

I'm unsure of the root cause, but I found out why this problem is occurring. The monitor logic of GLFW is not working as expected. * https://github.com/glfw/glfw/blob/dd8a678a66f1967372e5a5e3deac41ebf65ee127/src/win32_monitor.c#L257-L260 If the window...

Here are my conclusions. * This seems to be a platform-specific issue. (Win32) * This seems to be a issue to be handled in GLFW. * If we can find...

Oh, I can set the refresh rate of the display in the detailed setting of the display. My second display's refresh rate was 59.7. When I set it `60`, this...

@Shalindor So your problem is a little different from @bitRAKE? > Switching a fullscreen window from primary display (2560x1440) to secondary display (1920x1080) How do you do this? I thought...

こんばんは! @Shalindor Thanks for the explanation! I understand `glfwGetWindowMonitor` returns not the monitor of the current display but the monitor of the initial display. However, the raylib function `GetCurrentMonitor` has...