Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Feb 2018 02:59:52 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r462558 - head/www/waterfox/files
Message-ID:  <201802220259.w1M2xqN3083346@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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: {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802220259.w1M2xqN3083346>