Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Feb 2018 03:00:30 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r462559 - branches/2018Q1/www/waterfox/files
Message-ID:  <201802220300.w1M30Uvp083542@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Thu Feb 22 03:00:30 2018
New Revision: 462559
URL: https://svnweb.freebsd.org/changeset/ports/462559

Log:
  MFH: r462558
  
  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)
  Approved by:	ports-secteam blanket

Modified:
  branches/2018Q1/www/waterfox/files/patch-bug1388020
Directory Properties:
  branches/2018Q1/   (props changed)

Modified: branches/2018Q1/www/waterfox/files/patch-bug1388020
==============================================================================
--- branches/2018Q1/www/waterfox/files/patch-bug1388020	Thu Feb 22 02:59:52 2018	(r462558)
+++ branches/2018Q1/www/waterfox/files/patch-bug1388020	Thu Feb 22 03:00:30 2018	(r462559)
@@ -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?201802220300.w1M30Uvp083542>