diff options
Diffstat (limited to 'core/fpdfapi/page/cpdf_shadingpattern.h')
-rw-r--r-- | core/fpdfapi/page/cpdf_shadingpattern.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/fpdfapi/page/cpdf_shadingpattern.h b/core/fpdfapi/page/cpdf_shadingpattern.h index d0fafef0db..17b6e4bb8c 100644 --- a/core/fpdfapi/page/cpdf_shadingpattern.h +++ b/core/fpdfapi/page/cpdf_shadingpattern.h @@ -61,6 +61,12 @@ class CPDF_ShadingPattern : public CPDF_Pattern { } private: + // Constraints in PDF 1.7 spec, 4.6.3 Shading Patterns, pages 308-331. + bool Validate() const; + bool ValidateFunctions(uint32_t nExpectedNumFunctions, + uint32_t nExpectedNumInputs, + uint32_t nExpectedNumOutputs) const; + ShadingType m_ShadingType; bool m_bShadingObj; UnownedPtr<CPDF_Object> m_pShadingObj; |