summaryrefslogtreecommitdiffstats
path: root/gfx/layers
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-06-07 15:53:37 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-06-07 15:53:37 +0200
commitcd4da92df48738574c832d9badefd9c542fc6149 (patch)
tree645f48ad2b1892ed64bb9b1eeacd61e5a23994b6 /gfx/layers
parentf3657d6b4d4b30574a43a886bed6945590bf1508 (diff)
downloadUXP-cd4da92df48738574c832d9badefd9c542fc6149.tar
UXP-cd4da92df48738574c832d9badefd9c542fc6149.tar.gz
UXP-cd4da92df48738574c832d9badefd9c542fc6149.tar.lz
UXP-cd4da92df48738574c832d9badefd9c542fc6149.tar.xz
UXP-cd4da92df48738574c832d9badefd9c542fc6149.zip
Improve the SSSE3 scaler.
Diffstat (limited to 'gfx/layers')
-rw-r--r--gfx/layers/basic/BasicCompositor.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/gfx/layers/basic/BasicCompositor.cpp b/gfx/layers/basic/BasicCompositor.cpp
index 1ff27f795..634d9e340 100644
--- a/gfx/layers/basic/BasicCompositor.cpp
+++ b/gfx/layers/basic/BasicCompositor.cpp
@@ -470,15 +470,15 @@ AttemptVideoScale(TextureSourceBasic* aSource, const SourceSurface* aSourceMask,
RefPtr<DataSourceSurface> srcSource = aSource->GetSurface(aDest)->GetDataSurface();
DataSourceSurface::ScopedMap mapSrc(srcSource, DataSourceSurface::READ);
- ssse3_scale_data((uint32_t*)mapSrc.GetData(), srcSource->GetSize().width, srcSource->GetSize().height,
- mapSrc.GetStride()/4,
- ((uint32_t*)dstData) + fillRect.x + (dstStride / 4) * fillRect.y, dstRect.width, dstRect.height,
- dstStride / 4,
- offset.x, offset.y,
- fillRect.width, fillRect.height);
+ bool success = ssse3_scale_data((uint32_t*)mapSrc.GetData(), srcSource->GetSize().width, srcSource->GetSize().height,
+ mapSrc.GetStride()/4,
+ ((uint32_t*)dstData) + fillRect.x + (dstStride / 4) * fillRect.y, dstRect.width, dstRect.height,
+ dstStride / 4,
+ offset.x, offset.y,
+ fillRect.width, fillRect.height);
aDest->ReleaseBits(dstData);
- return true;
+ return success;
} else
#endif // MOZILLA_SSE_HAVE_CPUID_DETECTION
return false;