File: 0034-output-layout-add-a-helper-for-setting-committing-ou.patch

package info (click to toggle)
wayfire 0.9.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,732 kB
  • sloc: cpp: 49,708; xml: 2,783; ansic: 699; makefile: 161
file content (256 lines) | stat: -rw-r--r-- 9,138 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
From 158ff3e17302397ec8e54728e006469627096777 Mon Sep 17 00:00:00 2001
From: Ilia Bozhinov <ammen99@gmail.com>
Date: Mon, 18 Nov 2024 18:04:24 +0100
Subject: [PATCH 34/34] output-layout: add a helper for setting/committing
 output state

---
 src/core/output-layout.cpp    | 119 +++++++++++++++++++++++-----------
 src/view/wlr-surface-node.cpp |   2 +-
 2 files changed, 83 insertions(+), 38 deletions(-)

diff --git a/src/core/output-layout.cpp b/src/core/output-layout.cpp
index dcaf23f5..95da7cde 100644
--- a/src/core/output-layout.cpp
+++ b/src/core/output-layout.cpp
@@ -21,6 +21,71 @@
 
 static void*const WF_NOOP_OUTPUT_MAGIC = (void*)0x1234;
 
+// wlroots wrappers
+namespace wf
+{
+class wlr_output_state_setter_t
+{
+  public:
+    wlr_output_state_setter_t()
+    {
+        wlr_output_state_init(&pending);
+    }
+
+    ~wlr_output_state_setter_t()
+    {
+        wlr_output_state_finish(&pending);
+    }
+
+    wlr_output_state_setter_t(const wlr_output_state_setter_t&) = delete;
+    wlr_output_state_setter_t(wlr_output_state_setter_t&&) = delete;
+    wlr_output_state_setter_t& operator =(const wlr_output_state_setter_t&) = delete;
+    wlr_output_state_setter_t& operator =(wlr_output_state_setter_t&&) = delete;
+
+    void reset()
+    {
+        wlr_output_state_finish(&pending);
+        wlr_output_state_init(&pending);
+    }
+
+    // Commit all pending changes on the output.
+    // Returns true if the output was successfully committed.
+    //
+    // After this operation, the pending output state (@pending) is reset.
+    bool commit(wlr_output *output)
+    {
+        bool r = wlr_output_commit_state(output, &pending);
+        reset();
+        return r;
+    }
+
+    // Test whether the pending state can be applied on the output.
+    bool test(wlr_output *output)
+    {
+        return wlr_output_test_state(output, &pending);
+    }
+
+    // Test whether the pending state can be applied on the output.
+    // If so, commit the state.
+    //
+    // In both cases, reset @pending.
+    bool test_and_commit(wlr_output *output)
+    {
+        if (test(output))
+        {
+            commit(output);
+            return true;
+        } else
+        {
+            reset();
+            return false;
+        }
+    }
+
+    wlr_output_state pending;
+};
+}
+
 static wl_output_transform get_transform_from_string(std::string transform)
 {
     if (transform == "normal")
@@ -258,7 +323,7 @@ static const char *get_format_name(uint32_t format)
 struct output_layout_output_t
 {
     wlr_output *handle;
-    wlr_output_state state;
+    wlr_output_state_setter_t pending_state;
     output_state_t current_state{};
     bool is_externally_managed = false;
     bool is_nested_compositor  = false;
@@ -295,7 +360,6 @@ struct output_layout_output_t
     output_layout_output_t(wlr_output *handle)
     {
         this->handle = handle;
-        wlr_output_state_init(&this->state);
         on_destroy.connect(&handle->events.destroy);
         initialize_config_options();
 
@@ -620,10 +684,7 @@ struct output_layout_output_t
                 (current_bit_depth == current_state.depth))
             {
                 /* Commit the enabling of the output */
-                wlr_output_commit_state(handle, &state);
-                wlr_output_state_finish(&state);
-                wlr_output_state_init(&state);
-
+                pending_state.commit(handle);
                 return;
             }
         }
@@ -632,7 +693,7 @@ struct output_layout_output_t
         auto built_in = find_matching_mode(handle, mode, custom_mode);
         if (built_in)
         {
-            wlr_output_state_set_mode(&state, built_in);
+            wlr_output_state_set_mode(&pending_state.pending, built_in);
         } else
         {
             LOGI("Couldn't find matching mode ",
@@ -640,21 +701,18 @@ struct output_layout_output_t
                 " for output ", handle->name, ". Trying to use custom mode",
                 "(might not work)");
 
-            wlr_output_state_set_custom_mode(&state, mode.width, mode.height, mode.refresh);
+            wlr_output_state_set_custom_mode(&pending_state.pending, mode.width, mode.height, mode.refresh);
         }
 
-        wlr_output_commit_state(handle, &state);
-        wlr_output_state_finish(&state);
-        wlr_output_state_init(&state);
+        pending_state.commit(handle);
 
         const bool adaptive_sync_enabled = (handle->adaptive_sync_status == WLR_OUTPUT_ADAPTIVE_SYNC_ENABLED);
 
         if (adaptive_sync_enabled != current_state.vrr)
         {
-            wlr_output_state_set_adaptive_sync_enabled(&state, current_state.vrr);
-            if (wlr_output_test_state(handle, &state))
+            wlr_output_state_set_adaptive_sync_enabled(&pending_state.pending, current_state.vrr);
+            if (pending_state.test_and_commit(handle))
             {
-                wlr_output_commit_state(handle, &state);
                 LOGD("Changed adaptive sync on output: ", handle->name, " to ", current_state.vrr);
             } else
             {
@@ -662,18 +720,13 @@ struct output_layout_output_t
             }
         }
 
-        wlr_output_state_finish(&state);
-        wlr_output_state_init(&state);
-
         if (current_state.depth != current_bit_depth)
         {
             for (auto fmt : formats_for_depth[current_state.depth])
             {
-                wlr_output_state_set_render_format(&state, fmt);
-                if (wlr_output_test_state(handle, &state))
+                wlr_output_state_set_render_format(&pending_state.pending, fmt);
+                if (pending_state.test_and_commit(handle))
                 {
-                    wlr_output_state_set_render_format(&state, fmt);
-                    wlr_output_commit_state(handle, &state);
                     current_bit_depth = current_state.depth;
                     LOGD("Set output format to ", get_format_name(fmt), " on output ", handle->name);
                     break;
@@ -682,9 +735,6 @@ struct output_layout_output_t
                 LOGD("Failed to set output format ", get_format_name(fmt), " on output ", handle->name);
             }
         }
-
-        wlr_output_state_finish(&state);
-        wlr_output_state_init(&state);
     }
 
     /* Mirroring implementation */
@@ -696,7 +746,8 @@ struct output_layout_output_t
     void render_output(wlr_texture *texture)
     {
         int buffer_age;
-        struct wlr_render_pass *pass = wlr_output_begin_render_pass(handle, &state, &buffer_age, NULL);
+        struct wlr_render_pass *pass = wlr_output_begin_render_pass(handle, &pending_state.pending,
+            &buffer_age, NULL);
         if (pass == NULL)
         {
             return;
@@ -706,9 +757,7 @@ struct output_layout_output_t
         OpenGL::render_transformed_texture(tex, {-1, -1, 2, 2});
 
         wlr_render_pass_submit(pass);
-        wlr_output_commit_state(handle, &state);
-        wlr_output_state_finish(&state);
-        wlr_output_state_init(&state);
+        pending_state.commit(handle);
     }
 
     /* Load output contents and render them */
@@ -745,12 +794,10 @@ struct output_layout_output_t
 
     void set_enabled(bool enabled)
     {
-        wlr_output_state_set_enabled(&state, enabled);
+        wlr_output_state_set_enabled(&pending_state.pending, enabled);
         if (!enabled)
         {
-            wlr_output_commit_state(handle, &state);
-            wlr_output_state_finish(&state);
-            wlr_output_state_init(&state);
+            pending_state.commit(handle);
         }
     }
 
@@ -922,17 +969,15 @@ struct output_layout_output_t
         {
             if (handle->transform != state.transform)
             {
-                wlr_output_state_set_transform(&this->state, state.transform);
+                wlr_output_state_set_transform(&pending_state.pending, state.transform);
             }
 
             if (handle->scale != state.scale)
             {
-                wlr_output_state_set_scale(&this->state, state.scale);
+                wlr_output_state_set_scale(&pending_state.pending, state.scale);
             }
 
-            wlr_output_commit_state(handle, &this->state);
-            wlr_output_state_finish(&this->state);
-            wlr_output_state_init(&this->state);
+            pending_state.commit(handle);
 
             ensure_wayfire_output(get_effective_size());
             output->render->damage_whole();
diff --git a/src/view/wlr-surface-node.cpp b/src/view/wlr-surface-node.cpp
index d1af8e24..ffac4806 100644
--- a/src/view/wlr-surface-node.cpp
+++ b/src/view/wlr-surface-node.cpp
@@ -395,8 +395,8 @@ class wf::scene::wlr_surface_node_t::wlr_surface_render_instance_t : public rend
 
         wlr_output_state state;
         wlr_output_state_init(&state);
-        wlr_presentation_surface_scanned_out_on_output(wlr_surf, output->handle);
         wlr_output_state_set_buffer(&state, &wlr_surf->buffer->base);
+        wlr_presentation_surface_scanned_out_on_output(wlr_surf, output->handle);
 
         if (wlr_output_commit_state(output->handle, &state))
         {
-- 
2.45.2