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:
parent
908d42d0ba
commit
c6e79124c7
1 changed files with 4 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue