Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Graphics
Krita
Commits
ca927d0b
Commit
ca927d0b
authored
May 01, 2019
by
Dmitry Kazakov
Browse files
Fix operator priority
CCBUG:407062
parent
5a298aa2
Changes
1
Hide whitespace changes
Inline
Side-by-side
libs/image/kis_convolution_painter.cc
View file @
ca927d0b
...
...
@@ -68,8 +68,8 @@ bool KisConvolutionPainter::useFFTImplemenation(const KisConvolutionKernelSP ker
result
=
m_enginePreference
==
FFTW
||
(
m_enginePreference
==
NONE
&&
kernel
->
width
()
>
THRESHOLD_SIZE
||
kernel
->
height
()
>
THRESHOLD_SIZE
);
(
kernel
->
width
()
>
THRESHOLD_SIZE
||
kernel
->
height
()
>
THRESHOLD_SIZE
)
)
;
#else
Q_UNUSED
(
kernel
);
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment