LibWeb: Remove setting the Skia backend context in Navigable
Some checks are pending
CI / macOS, arm64, Sanitizer, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer, Clang (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run

This is unused. The backend context is also referenced in the Skia
player, which we move to the rendering thread.
This commit is contained in:
Jelle Raaijmakers 2025-07-10 13:48:22 +02:00 committed by Alexander Kalenik
parent bd6581fe22
commit d822b96786
Notes: github-actions[bot] 2025-07-10 13:29:06 +00:00
2 changed files with 0 additions and 3 deletions

View file

@ -150,7 +150,6 @@ Navigable::Navigable(GC::Ref<Page> page, bool is_svg_page)
}
m_rendering_thread.set_skia_player(move(skia_player));
m_rendering_thread.set_skia_backend_context(m_skia_backend_context);
m_rendering_thread.start(display_list_player_type);
}
}