mirror of
https://github.com/glfw/glfw.git
synced 2024-11-14 02:31:46 +00:00
Wayland: Fix missing error reporting
(cherry picked from commit 9ad9f5c52a
)
This commit is contained in:
parent
35fd90aff1
commit
498a4d0635
@ -715,7 +715,10 @@ static GLFWbool createNativeSurface(_GLFWwindow* window,
|
|||||||
{
|
{
|
||||||
window->wl.surface = wl_compositor_create_surface(_glfw.wl.compositor);
|
window->wl.surface = wl_compositor_create_surface(_glfw.wl.compositor);
|
||||||
if (!window->wl.surface)
|
if (!window->wl.surface)
|
||||||
|
{
|
||||||
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Wayland: Failed to create window surface");
|
||||||
return GLFW_FALSE;
|
return GLFW_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
wl_surface_add_listener(window->wl.surface,
|
wl_surface_add_listener(window->wl.surface,
|
||||||
&surfaceListener,
|
&surfaceListener,
|
||||||
@ -727,7 +730,10 @@ static GLFWbool createNativeSurface(_GLFWwindow* window,
|
|||||||
wndconfig->width,
|
wndconfig->width,
|
||||||
wndconfig->height);
|
wndconfig->height);
|
||||||
if (!window->wl.egl.window)
|
if (!window->wl.egl.window)
|
||||||
|
{
|
||||||
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Wayland: Failed to create EGL window");
|
||||||
return GLFW_FALSE;
|
return GLFW_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
window->wl.width = wndconfig->width;
|
window->wl.width = wndconfig->width;
|
||||||
window->wl.height = wndconfig->height;
|
window->wl.height = wndconfig->height;
|
||||||
|
Loading…
Reference in New Issue
Block a user