fix build
[LibreOffice.git] / external / skia / fix-warnings.patch.1
blob46d55e493bd3beec7bfe652990e286e7ac339fba
1 diff --git a/include/core/SkFontParameters.h b/include/core/SkFontParameters.h
2 index ae4f1d68b6..71263da7c5 100644
3 --- a/include/core/SkFontParameters.h
4 +++ b/include/core/SkFontParameters.h
5 @@ -16,8 +16,8 @@ struct SkFontParameters {
6          // Parameters in a variation font axis.
7          struct Axis {
8              constexpr Axis() : tag(0), min(0), def(0), max(0), flags(0) {}
9 -            constexpr Axis(SkFourByteTag tag, float min, float def, float max, bool hidden) :
10 -                tag(tag), min(min), def(def), max(max), flags(hidden ? HIDDEN : 0) {}
11 +            constexpr Axis(SkFourByteTag _tag, float _min, float _def, float _max, bool hidden) :
12 +                tag(_tag), min(_min), def(_def), max(_max), flags(hidden ? HIDDEN : 0) {}
14              // Four character identifier of the font axis (weight, width, slant, italic...).
15              SkFourByteTag tag;
16 diff --git a/tools/sk_app/WindowContext.h b/tools/sk_app/WindowContext.h
17 index f143dab013..be3cde0f4f 100644
18 --- a/tools/sk_app/WindowContext.h
19 +++ b/tools/sk_app/WindowContext.h
20 @@ -31,7 +31,7 @@ public:
22      virtual void resize(int w, int h) = 0;
24 -    virtual void activate(bool isActive) {}
25 +    virtual void activate(bool /*isActive*/) {}
27      const DisplayParams& getDisplayParams() { return fDisplayParams; }
28      virtual void setDisplayParams(const DisplayParams& params) = 0;
29 --- skia/include/core/SkSamplingOptions.h.orig  2022-05-22 12:25:06.112544528 +0200
30 +++ skia/include/core/SkSamplingOptions.h       2022-05-22 12:25:09.207636134 +0200
31 @@ -97,7 +97,7 @@
32      bool isAniso() const { return maxAniso != 0; }
34  private:
35 -    constexpr SkSamplingOptions(int maxAniso) : maxAniso(maxAniso) {}
36 +    constexpr SkSamplingOptions(int maxAniso_) : maxAniso(maxAniso_) {}
37  };
39  #endif