mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Revert "Bug 1388020. r=nical, a=RyanVM"
This reverts commit e7189e33f533f9b974b22c2110b522a13bc4c7f6.
This commit is contained in:
parent
772715c4f4
commit
1524999194
6 changed files with 6 additions and 41 deletions
|
|
@ -149,9 +149,6 @@ BasicTextureImage::DirectUpdate(gfx::DataSourceSurface* aSurf, const nsIntRegion
|
|||
&uploadSize,
|
||||
needInit,
|
||||
aFrom);
|
||||
if (mTextureFormat == SurfaceFormat::UNKNOWN) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (uploadSize > 0) {
|
||||
UpdateUploadSize(uploadSize);
|
||||
|
|
|
|||
|
|
@ -27,23 +27,6 @@ DataOffset(const IntPoint& aPoint, int32_t aStride, SurfaceFormat aFormat)
|
|||
return data;
|
||||
}
|
||||
|
||||
static bool
|
||||
CheckUploadBounds(const IntSize& aDst, const IntSize& aSrc, const IntPoint& aOffset)
|
||||
{
|
||||
if (aOffset.x < 0 || aOffset.y < 0 ||
|
||||
aOffset.x >= aSrc.width ||
|
||||
aOffset.y >= aSrc.height) {
|
||||
MOZ_ASSERT_UNREACHABLE("Offset outside source bounds");
|
||||
return false;
|
||||
}
|
||||
if (aDst.width > (aSrc.width - aOffset.x) ||
|
||||
aDst.height > (aSrc.height - aOffset.y)) {
|
||||
MOZ_ASSERT_UNREACHABLE("Source has insufficient data");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static GLint GetAddressAlignment(ptrdiff_t aAddress)
|
||||
{
|
||||
if (!(aAddress & 0x7)) {
|
||||
|
|
@ -392,7 +375,6 @@ TexImage2DHelper(GLContext* gl,
|
|||
SurfaceFormat
|
||||
UploadImageDataToTexture(GLContext* gl,
|
||||
unsigned char* aData,
|
||||
const gfx::IntSize& aDataSize,
|
||||
int32_t aStride,
|
||||
SurfaceFormat aFormat,
|
||||
const nsIntRegion& aDstRegion,
|
||||
|
|
@ -516,10 +498,6 @@ UploadImageDataToTexture(GLContext* gl,
|
|||
// Upload each rect in the region to the texture
|
||||
for (auto iter = aDstRegion.RectIter(); !iter.Done(); iter.Next()) {
|
||||
const IntRect& rect = iter.Get();
|
||||
if (!CheckUploadBounds(rect.Size(), aDataSize, rect.TopLeft())) {
|
||||
return SurfaceFormat::UNKNOWN;
|
||||
}
|
||||
|
||||
const unsigned char* rectData =
|
||||
aData + DataOffset(rect.TopLeft(), aStride, aFormat);
|
||||
|
||||
|
|
@ -556,17 +534,10 @@ UploadSurfaceToTexture(GLContext* gl,
|
|||
|
||||
int32_t stride = aSurface->Stride();
|
||||
SurfaceFormat format = aSurface->GetFormat();
|
||||
gfx::IntSize size = aSurface->GetSize();
|
||||
if (!CheckUploadBounds(aSize, size, aSrcPoint)) {
|
||||
return SurfaceFormat::UNKNOWN;
|
||||
}
|
||||
|
||||
unsigned char* data = aSurface->GetData() +
|
||||
DataOffset(aSrcPoint, stride, format);
|
||||
size.width -= aSrcPoint.x;
|
||||
size.height -= aSrcPoint.y;
|
||||
|
||||
return UploadImageDataToTexture(gl, data, size, stride, format,
|
||||
return UploadImageDataToTexture(gl, data, stride, format,
|
||||
aDstRegion, aTexture, aSize,
|
||||
aOutUploadSize, aNeedInit,
|
||||
aTextureUnit, aTextureTarget);
|
||||
|
|
|
|||
|
|
@ -28,7 +28,6 @@ class GLContext;
|
|||
* \param gl The GL Context to use.
|
||||
* \param aData Start of image data of surface to upload.
|
||||
* Corresponds to the first pixel of the texture.
|
||||
* \param aDataSize The image data's size.
|
||||
* \param aStride The image data's stride.
|
||||
* \param aFormat The image data's format.
|
||||
* \param aDstRegion Region of the texture to upload.
|
||||
|
|
@ -47,7 +46,6 @@ class GLContext;
|
|||
gfx::SurfaceFormat
|
||||
UploadImageDataToTexture(GLContext* gl,
|
||||
unsigned char* aData,
|
||||
const gfx::IntSize& aDataSize,
|
||||
int32_t aStride,
|
||||
gfx::SurfaceFormat aFormat,
|
||||
const nsIntRegion& aDstRegion,
|
||||
|
|
|
|||
|
|
@ -119,10 +119,6 @@ TextureImageEGL::DirectUpdate(gfx::DataSourceSurface* aSurf, const nsIntRegion&
|
|||
&uploadSize,
|
||||
needInit,
|
||||
aFrom);
|
||||
if (mTextureFormat == SurfaceFormat::UNKNOWN) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (uploadSize > 0) {
|
||||
UpdateUploadSize(uploadSize);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -890,7 +890,8 @@ BufferTextureHost::Upload(nsIntRegion *aRegion)
|
|||
mFirstSource = mCompositor->CreateDataTextureSource(mFlags|TextureFlags::RGB_FROM_YCBCR);
|
||||
mFirstSource->SetOwner(this);
|
||||
}
|
||||
return mFirstSource->Update(surf, aRegion);
|
||||
mFirstSource->Update(surf, aRegion);
|
||||
return true;
|
||||
}
|
||||
|
||||
RefPtr<DataTextureSource> srcY;
|
||||
|
|
|
|||
|
|
@ -161,7 +161,9 @@ TextureImageTextureSourceOGL::Update(gfx::DataSourceSurface* aSurface,
|
|||
}
|
||||
}
|
||||
|
||||
return mTexImage->UpdateFromDataSource(aSurface, aDestRegion, aSrcOffset);
|
||||
mTexImage->UpdateFromDataSource(aSurface, aDestRegion, aSrcOffset);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue