svn commit: r462558 - head/www/waterfox/files
Jan Beich
jbeich at FreeBSD.org
Thu Feb 22 02:59:53 UTC 2018
Author: jbeich
Date: Thu Feb 22 02:59:52 2018
New Revision: 462558
URL: https://svnweb.freebsd.org/changeset/ports/462558
Log:
www/waterfox: unbreak after r462554
In file included from objdir/gfx/layers/Unified_cpp_gfx_layers7.cpp:11:
gfx/layers/composite/TextureHost.cpp:287:82: error: no
member named 'yStride' in 'mozilla::layers::YCbCrDescriptor'
ImageDataSerializer::ComputeYCbCrBufferSize(ycbcr.ySize(), ycbcr.yStride(),
~~~~~ ^
gfx/layers/composite/TextureHost.cpp:288:85: error: no
member named 'cbCrStride' in 'mozilla::layers::YCbCrDescriptor'; did you mean 'cbCrSize'?
ycbcr.cbCrSize(), ycbcr.cbCrStride());
^~~~~~~~~~
cbCrSize
Point hat to: jbeich (last minute fix)
Modified:
head/www/waterfox/files/patch-bug1388020 (contents, props changed)
Modified: head/www/waterfox/files/patch-bug1388020
==============================================================================
--- head/www/waterfox/files/patch-bug1388020 Thu Feb 22 01:01:50 2018 (r462557)
+++ head/www/waterfox/files/patch-bug1388020 Thu Feb 22 02:59:52 2018 (r462558)
@@ -98,8 +98,8 @@ index a48a9081e155..e0a74920fbe5 100644
+ case BufferDescriptor::TYCbCrDescriptor: {
+ const YCbCrDescriptor& ycbcr = desc.get_YCbCrDescriptor();
+ reqSize =
-+ ImageDataSerializer::ComputeYCbCrBufferSize(ycbcr.ySize(), ycbcr.yStride(),
-+ ycbcr.cbCrSize(), ycbcr.cbCrStride());
++ ImageDataSerializer::ComputeYCbCrBufferSize(ycbcr.ySize(), ycbcr.ySize().width,
++ ycbcr.cbCrSize(), ycbcr.cbCrSize().width);
+ break;
+ }
+ case BufferDescriptor::TRGBDescriptor: {
More information about the svn-ports-all
mailing list