2007-03-03 03:18:34 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-03 03:18:34 +03:00
|
|
|
|
|
|
|
#include "gfxAlphaRecovery.h"
|
|
|
|
|
|
|
|
#include "gfxImageSurface.h"
|
|
|
|
|
2010-08-18 07:43:49 +04:00
|
|
|
#define MOZILLA_SSE_INCLUDE_HEADER_FOR_SSE2
|
|
|
|
#include "mozilla/SSE.h"
|
2007-03-03 03:18:34 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
/* static */ bool
|
2010-08-09 06:19:17 +04:00
|
|
|
gfxAlphaRecovery::RecoverAlpha(gfxImageSurface* blackSurf,
|
2013-10-26 01:25:40 +04:00
|
|
|
const gfxImageSurface* whiteSurf)
|
2007-03-03 03:18:34 +03:00
|
|
|
{
|
2015-06-01 11:26:19 +03:00
|
|
|
mozilla::gfx::IntSize size = blackSurf->GetSize();
|
2010-08-09 06:19:17 +04:00
|
|
|
|
|
|
|
if (size != whiteSurf->GetSize() ||
|
2014-01-23 22:26:40 +04:00
|
|
|
(blackSurf->Format() != gfxImageFormat::ARGB32 &&
|
|
|
|
blackSurf->Format() != gfxImageFormat::RGB24) ||
|
|
|
|
(whiteSurf->Format() != gfxImageFormat::ARGB32 &&
|
|
|
|
whiteSurf->Format() != gfxImageFormat::RGB24))
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-08-09 06:19:17 +04:00
|
|
|
|
2010-12-05 11:38:53 +03:00
|
|
|
#ifdef MOZILLA_MAY_SUPPORT_SSE2
|
2013-10-26 01:25:40 +04:00
|
|
|
if (mozilla::supports_sse2() &&
|
2010-12-05 11:38:53 +03:00
|
|
|
RecoverAlphaSSE2(blackSurf, whiteSurf)) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2010-08-18 07:43:49 +04:00
|
|
|
}
|
2010-12-05 11:38:53 +03:00
|
|
|
#endif
|
2010-08-18 07:43:49 +04:00
|
|
|
|
2010-08-09 06:22:56 +04:00
|
|
|
blackSurf->Flush();
|
|
|
|
whiteSurf->Flush();
|
|
|
|
|
2010-08-09 06:19:17 +04:00
|
|
|
unsigned char* blackData = blackSurf->Data();
|
|
|
|
unsigned char* whiteData = whiteSurf->Data();
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
for (int32_t i = 0; i < size.height; ++i) {
|
|
|
|
uint32_t* blackPixel = reinterpret_cast<uint32_t*>(blackData);
|
|
|
|
const uint32_t* whitePixel = reinterpret_cast<uint32_t*>(whiteData);
|
|
|
|
for (int32_t j = 0; j < size.width; ++j) {
|
|
|
|
uint32_t recovered = RecoverPixel(blackPixel[j], whitePixel[j]);
|
2010-08-09 06:22:56 +04:00
|
|
|
blackPixel[j] = recovered;
|
2010-08-09 06:19:17 +04:00
|
|
|
}
|
|
|
|
blackData += blackSurf->Stride();
|
|
|
|
whiteData += whiteSurf->Stride();
|
2007-03-03 03:18:34 +03:00
|
|
|
}
|
2010-08-09 06:19:17 +04:00
|
|
|
|
|
|
|
blackSurf->MarkDirty();
|
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2007-03-03 03:18:34 +03:00
|
|
|
}
|