LibGfx: Slap an -O3 optimization #pragma on Gfx::AntiAliasingPainter

We're already doing this for Gfx::Painter, so let's do it here as well.
This commit is contained in:
Andreas Kling 2022-04-10 18:43:39 +02:00
parent 908d42d0ba
commit c6e79124c7
Notes: sideshowbarker 2024-07-17 12:07:58 +09:00

View file

@ -5,6 +5,10 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#if defined(__GNUC__) && !defined(__clang__)
# pragma GCC optimize("O3")
#endif
#include "FillPathImplementation.h"
#include <AK/Function.h>
#include <LibGfx/AntiAliasingPainter.h>