-
-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Window Doesn't Show #598
Comments
Hi @clseibold, I was able to reproduce it on my Fedora machine. It seems like drawing on the window would make it show up. Could you try that to see if that works for you? For example, adding the following after the CreateWindow function:
|
Sorry for the late response. That code doesn't work for me. The window is still hidden. |
I moved some stuff around and got the window to show for a split second, but SDL forbids you from getting a Window surface when you plan to create and use a Renderer. There seems to be some change that happened between 0.4.38 and 0.5.0-alpha.5 that broke things, because 0.4.38 works perfectly fine. |
Hi @clseibold, would you be able to provide the complete but minimal source code that produces the issue? I will try on my Fedora 40 laptop. |
I'm using v0.4.38 Using the nouveau.fc34 driver the code works, but when updated just the video driver to nvidia 560.28.03 then window is created, but nothing is drawed inside (it drags the background). I can upload the program, (I can get a reduced version of the code, if you prefer) It connects to the SDL events, just the drawing is stopped. With nouveau driver, same pc, same kernel, same X.org, same go compiler, it works. I tried also to delete the go.sum file and to recreate it in order to update all the dependencies. Tell me if there is some more debugging informations (or how to put it as verbose). The Fillrect + UpdateSurface was and is already made every frame I draw. |
Hi @pasckosky, could you try putting drawing calls in the main thread? At the very least, putting |
It worked. |
UpdateSurface doesn't work when you are using the Renderer. You cannot use a Window Surface and the Renderer at the same time. SDL forbids this. It will panic your program. So this solution of using |
Hi @clseibold, since you are here I wonder if you have had time to provide the minimal example that reproduces the issue?
|
@veeableful I will write up a minimum example. It will use a Renderer because many programs require Hardware Rendering, not Software Rendering. I will upload it as soon as I can. Btw, you were able to reproduce the bug according to what you said in your first comment. The workaround you provided for it relies on software rendered programs. It does not work for those that need to use hardware rendering with a Renderer. |
Go version: 1.22
Go-SDL2 version: v0.5.0-alpha.5
SDL2 version: 2.28.5
OS: Linux Fedora 39 (Kernel 6.8.4) w/ Wayland
Architecture: x86_64
After updating to the lastest alpha, the window doesn't show, but I can tell that the main loop is still running because it prints stuff in the terminal.
The text was updated successfully, but these errors were encountered: