1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 23:38:12 +00:00

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

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>