define STBI_NEON on android but disable x86 that's not compatible with the flag on clang

This commit is contained in:
2019-02-27 11:40:46 +01:00
parent 2108441e77
commit d6501293e9
4 changed files with 5 additions and 3 deletions

View File

@@ -195,7 +195,7 @@ std::vector<std::shared_ptr<Brush>> ABR::compute_brushes(const std::string& path
if (auto roundness = p->get<Descriptor>("roundnessDynamics"))
{
b->m_jitter_aspect = (1.f - roundness->value<UnitFloat>("jitter") * 0.01) * 0.5f + 0.5f;
b->m_jitter_aspect = roundness->value<UnitFloat>("jitter") * 0.01;
}
b->m_tip_randflipx = p->value<Boolean>("flipX");