mirror of
https://github.com/swaywm/sway.git
synced 2026-03-15 05:34:12 -04:00
desktop/output: Do not use commit listener to arrange
The reasoning for using a commit handler is to ensure that all paths for output changes are correctly handled. With the centralized modeset infrastructure in place, we can move the logic there. This allows us to be smarter and avoid extraneous arranges, output manager updates and transaction commits. The side-effect is a minor duplication for the special-case request_state, but the shared path will be relied upon further in future commits to justify this duplication.
This commit is contained in:
parent
be840f730e
commit
b83e5aaa54
3 changed files with 24 additions and 28 deletions
|
|
@ -11,9 +11,12 @@
|
|||
#include <wlr/types/wlr_output.h>
|
||||
#include <wlr/types/wlr_output_swapchain_manager.h>
|
||||
#include "sway/config.h"
|
||||
#include "sway/desktop/transaction.h"
|
||||
#include "sway/input/cursor.h"
|
||||
#include "sway/layers.h"
|
||||
#include "sway/output.h"
|
||||
#include "sway/server.h"
|
||||
#include "sway/tree/arrange.h"
|
||||
#include "sway/tree/root.h"
|
||||
#include "log.h"
|
||||
#include "util.h"
|
||||
|
|
@ -963,8 +966,13 @@ bool apply_output_configs(struct matched_output_config *configs,
|
|||
sway_log(SWAY_DEBUG, "Finalizing config for %s",
|
||||
cfg->output->wlr_output->name);
|
||||
finalize_output_config(cfg->config, cfg->output);
|
||||
arrange_layers(cfg->output);
|
||||
}
|
||||
|
||||
arrange_root();
|
||||
update_output_manager_config(&server);
|
||||
transaction_commit_dirty();
|
||||
|
||||
out:
|
||||
wlr_output_swapchain_manager_finish(&swapchain_mgr);
|
||||
for (size_t idx = 0; idx < configs_len; idx++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue