Browse Source

Wayland: Rename function to its purpose

Camilla Löwy 3 years ago
parent
commit
47193f15de
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/wl_window.c

+ 3 - 3
src/wl_window.c

@@ -287,7 +287,7 @@ static const struct zxdg_toplevel_decoration_v1_listener xdgDecorationListener =
 };
 
 // Makes the surface considered as XRGB instead of ARGB.
-static void setOpaqueRegion(_GLFWwindow* window)
+static void setContentAreaOpaque(_GLFWwindow* window)
 {
     struct wl_region* region;
 
@@ -309,7 +309,7 @@ static void resizeWindow(_GLFWwindow* window)
     int scaledHeight = window->wl.height * scale;
     wl_egl_window_resize(window->wl.egl.window, scaledWidth, scaledHeight, 0, 0);
     if (!window->wl.transparent)
-        setOpaqueRegion(window);
+        setContentAreaOpaque(window);
     _glfwInputFramebufferSize(window, scaledWidth, scaledHeight);
 
     if (!window->wl.decorations.top.surface)
@@ -739,7 +739,7 @@ static GLFWbool createNativeSurface(_GLFWwindow* window,
 
     window->wl.transparent = fbconfig->transparent;
     if (!window->wl.transparent)
-        setOpaqueRegion(window);
+        setContentAreaOpaque(window);
 
     if (window->monitor || wndconfig->visible)
     {