Everywhere: Remove AffineCommandExecutorCPU

No need to have it after introduction of Skia painter that supports
transforms.
This commit is contained in:
Aliaksandr Kalenik
2024-06-19 16:44:42 +03:00
committed by Alexander Kalenik
parent de6d99e940
commit 0b48c1ea3f
17 changed files with 12 additions and 443 deletions

View File

@@ -1205,7 +1205,7 @@ void TraversableNavigable::paint(Web::DevicePixelRect const& content_rect, Gfx::
Painting::CommandExecutorSkia painting_command_executor(target);
painting_commands.execute(painting_command_executor);
} else {
Web::Painting::CommandExecutorCPU painting_command_executor(target, painting_command_executor_type == PaintingCommandExecutorType::CPUWithExperimentalTransformSupport);
Web::Painting::CommandExecutorCPU painting_command_executor(target);
painting_commands.execute(painting_command_executor);
}
}