├── Compat ├── Compat.cs ├── Win32APIs.cs └── WinVerifyTrustAPI.cs ├── FontVal ├── App.ico ├── AssemblyInfo.cs ├── Btn1.ico ├── Btn2.ico ├── Btn3.ico ├── Btn4.ico ├── Btn5.ico ├── Btn6.ico ├── ClassDiagram1.cd ├── ClassDiagram2.cd ├── FontVal.Form1.resources ├── FontVal.Form1.resx ├── FontVal.FormAbout.resources ├── FontVal.FormAbout.resx ├── FontVal.FormReportOptions.resources ├── FontVal.FormReportOptions.resx ├── FontVal.FormTransform.resources ├── FontVal.FormTransform.resx ├── FontVal.ResultsForm.resources ├── FontVal.ResultsForm.resx ├── Form1.cs ├── FormAbout.cs ├── FormReportOptions.cs ├── FormTransform.cs ├── Program.cs ├── Progress.cs ├── ResultsForm.cs ├── Settings.cs ├── WebBrowse.cs ├── app.config ├── fval.xsl └── project.cs ├── FontValidator └── CmdLineInterface.cs ├── GMath ├── AssemblyInfo.cs ├── Bez2D.cs ├── BoxD.cs ├── CNum.cs ├── Component.cs ├── Composite.cs ├── Contour.cs ├── DegenD.cs ├── Equation.cs ├── ExceptionGMath.cs ├── GConsts.cs ├── I_CurveD.cs ├── I_Draw.cs ├── I_Drawable.cs ├── InfoConnect.cs ├── InfoDrawable.cs ├── InfoInters.cs ├── Intersect.cs ├── Knot.cs ├── LineD.cs ├── ListInfoInters.cs ├── MConsts.cs ├── MDrawParam.cs ├── MatrixD.cs ├── Outline.cs ├── PairInt.cs ├── Param.cs ├── RayD.cs ├── SegD.cs └── VecD.cs ├── GenerateFValData ├── GenerateFValData.csproj ├── HelpGen.cs ├── Helpers.cs ├── Index.hhk ├── OurData.xml ├── Properties │ └── AssemblyInfo.cs ├── ValTests.cs ├── help-proj-postamble.txt ├── help-proj-preamble.txt ├── helpitems.xsd ├── interpretinglog.htm ├── introtofv.htm ├── legacy.htm ├── resources.htm ├── startbutton.jpg ├── template-contents.txt ├── template.txt ├── toc-error-postamble.txt ├── toc-error-preamble.txt ├── toc-info-postamble.txt ├── toc-info-preamble.txt ├── toc-postamble.txt ├── toc-preamble.txt ├── toc-warning-postamble.txt ├── toc-warning-preamble.txt ├── tooloverview.htm ├── usingvalidator.htm ├── valstrings-postamble.txt └── valstrings-preamble.txt ├── Glyph ├── AssemblyInfo.cs ├── ClassDiagram1.cd ├── DIWrapper.cs ├── DefsGC.cs ├── DefsGM.cs ├── DefsGV.cs ├── ExceptionGlyph.cs ├── FManager.cs ├── Flags.cs ├── FlagsGV.cs ├── GDrawParam.cs ├── GErr.cs ├── GErrConsts.cs ├── GErrFile.cs ├── GErrList.cs ├── GErrPool.cs ├── GErrSign.cs ├── GRelations.cs ├── GScope.cs ├── GStore.cs ├── Glyph.cs ├── I_IOGlyphs.cs ├── I_ProgressUpdator.cs ├── NS_Glyph.GErrStrings.resources ├── NS_Glyph.GErrStrings.resx └── StatusGV.cs ├── License.md ├── Makefile ├── OTFontFile ├── AssemblyInfo.cs ├── ClassDiagram1.cd ├── ClassDiagram2.cd ├── MBOBuffer.cs ├── OTFile.cs ├── OTFont.cs ├── OTL.cs ├── OTTable.cs ├── TAble_Zapf.cs ├── TTCHeader.cs ├── TableManager.cs ├── Table_BASE.cs ├── Table_CFF.cs ├── Table_DSIG.cs ├── Table_EBDT.cs ├── Table_EBLC.cs ├── Table_EBSC.cs ├── Table_GDEF.cs ├── Table_GPOS.cs ├── Table_GSUB.cs ├── Table_JSTF.cs ├── Table_LTSH.cs ├── Table_OS2.cs ├── Table_PCLT.cs ├── Table_VDMX.cs ├── Table_VORG.cs ├── Table__Unknown.cs ├── Table_cmap.cs ├── Table_cvt.cs ├── Table_fpgm.cs ├── Table_gasp.cs ├── Table_glyf.cs ├── Table_hdmx.cs ├── Table_head.cs ├── Table_hhea.cs ├── Table_hmtx.cs ├── Table_kern.cs ├── Table_loca.cs ├── Table_maxp.cs ├── Table_name.cs ├── Table_post.cs ├── Table_prep.cs ├── Table_vhea.cs ├── Table_vmtx.cs ├── ottypes.cs └── util.cs ├── OTFontFileVal ├── AssemblyInfo.cs ├── CallbVal.cs ├── ClassDiagram2.cd ├── ITableValidate.cs ├── I_IOGlyphsFile.cs ├── OTFileVal.cs ├── OTFontFileVal.ValStrings.resources ├── OTFontVal.cs ├── OTLVal.cs ├── Overlap.cs ├── PostNames.cs ├── RastTest.cs ├── TableManagerVal.cs ├── ValDriver.cs ├── ValidationInfo.cs ├── Validator.cs ├── ValidatorParameters.cs ├── atoms.cs ├── val_BASE.cs ├── val_CFF.cs ├── val_DSIG.cs ├── val_EBDT.cs ├── val_EBLC.cs ├── val_EBSC.cs ├── val_GDEF.cs ├── val_GPOS.cs ├── val_GSUB.cs ├── val_JSTF.cs ├── val_LTSH.cs ├── val_OS2.cs ├── val_PCLT.cs ├── val_VDMX.cs ├── val_VORG.cs ├── val__Unknown.cs ├── val_cmap.cs ├── val_cvt.cs ├── val_fpgm.cs ├── val_gasp.cs ├── val_glyf.cs ├── val_hdmx.cs ├── val_head.cs ├── val_hhea.cs ├── val_hmtx.cs ├── val_kern.cs ├── val_loca.cs ├── val_maxp.cs ├── val_name.cs ├── val_post.cs ├── val_prep.cs ├── val_vhea.cs └── val_vmtx.cs ├── README-extra.txt ├── README.md ├── README.txt ├── SECURITY.md ├── ValCommon ├── AssemblyInfo.cs ├── DIAction.cs ├── DIActionBuilder.cs ├── DIActionContainer.cs ├── DIActionOnCondBuilder.cs ├── DICond.cs ├── DICondBuilder.cs ├── I_TestReader.cs └── ValInfoBasic.cs ├── ValInterface ├── val.cpp └── val.h └── bin ├── FontValidatorHelp.chm └── fval.xsl /Compat/Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Compat/Compat.cs -------------------------------------------------------------------------------- /Compat/Win32APIs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Compat/Win32APIs.cs -------------------------------------------------------------------------------- /Compat/WinVerifyTrustAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Compat/WinVerifyTrustAPI.cs -------------------------------------------------------------------------------- /FontVal/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/App.ico -------------------------------------------------------------------------------- /FontVal/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/AssemblyInfo.cs -------------------------------------------------------------------------------- /FontVal/Btn1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Btn1.ico -------------------------------------------------------------------------------- /FontVal/Btn2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Btn2.ico -------------------------------------------------------------------------------- /FontVal/Btn3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Btn3.ico -------------------------------------------------------------------------------- /FontVal/Btn4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Btn4.ico -------------------------------------------------------------------------------- /FontVal/Btn5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Btn5.ico -------------------------------------------------------------------------------- /FontVal/Btn6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Btn6.ico -------------------------------------------------------------------------------- /FontVal/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/ClassDiagram1.cd -------------------------------------------------------------------------------- /FontVal/ClassDiagram2.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/ClassDiagram2.cd -------------------------------------------------------------------------------- /FontVal/FontVal.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.Form1.resources -------------------------------------------------------------------------------- /FontVal/FontVal.Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.Form1.resx -------------------------------------------------------------------------------- /FontVal/FontVal.FormAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.FormAbout.resources -------------------------------------------------------------------------------- /FontVal/FontVal.FormAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.FormAbout.resx -------------------------------------------------------------------------------- /FontVal/FontVal.FormReportOptions.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.FormReportOptions.resources -------------------------------------------------------------------------------- /FontVal/FontVal.FormReportOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.FormReportOptions.resx -------------------------------------------------------------------------------- /FontVal/FontVal.FormTransform.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.FormTransform.resources -------------------------------------------------------------------------------- /FontVal/FontVal.FormTransform.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.FormTransform.resx -------------------------------------------------------------------------------- /FontVal/FontVal.ResultsForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.ResultsForm.resources -------------------------------------------------------------------------------- /FontVal/FontVal.ResultsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FontVal.ResultsForm.resx -------------------------------------------------------------------------------- /FontVal/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Form1.cs -------------------------------------------------------------------------------- /FontVal/FormAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FormAbout.cs -------------------------------------------------------------------------------- /FontVal/FormReportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FormReportOptions.cs -------------------------------------------------------------------------------- /FontVal/FormTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/FormTransform.cs -------------------------------------------------------------------------------- /FontVal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Program.cs -------------------------------------------------------------------------------- /FontVal/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Progress.cs -------------------------------------------------------------------------------- /FontVal/ResultsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/ResultsForm.cs -------------------------------------------------------------------------------- /FontVal/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/Settings.cs -------------------------------------------------------------------------------- /FontVal/WebBrowse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/WebBrowse.cs -------------------------------------------------------------------------------- /FontVal/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/app.config -------------------------------------------------------------------------------- /FontVal/fval.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/fval.xsl -------------------------------------------------------------------------------- /FontVal/project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontVal/project.cs -------------------------------------------------------------------------------- /FontValidator/CmdLineInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/FontValidator/CmdLineInterface.cs -------------------------------------------------------------------------------- /GMath/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/AssemblyInfo.cs -------------------------------------------------------------------------------- /GMath/Bez2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Bez2D.cs -------------------------------------------------------------------------------- /GMath/BoxD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/BoxD.cs -------------------------------------------------------------------------------- /GMath/CNum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/CNum.cs -------------------------------------------------------------------------------- /GMath/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Component.cs -------------------------------------------------------------------------------- /GMath/Composite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Composite.cs -------------------------------------------------------------------------------- /GMath/Contour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Contour.cs -------------------------------------------------------------------------------- /GMath/DegenD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/DegenD.cs -------------------------------------------------------------------------------- /GMath/Equation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Equation.cs -------------------------------------------------------------------------------- /GMath/ExceptionGMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/ExceptionGMath.cs -------------------------------------------------------------------------------- /GMath/GConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/GConsts.cs -------------------------------------------------------------------------------- /GMath/I_CurveD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/I_CurveD.cs -------------------------------------------------------------------------------- /GMath/I_Draw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/I_Draw.cs -------------------------------------------------------------------------------- /GMath/I_Drawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/I_Drawable.cs -------------------------------------------------------------------------------- /GMath/InfoConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/InfoConnect.cs -------------------------------------------------------------------------------- /GMath/InfoDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/InfoDrawable.cs -------------------------------------------------------------------------------- /GMath/InfoInters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/InfoInters.cs -------------------------------------------------------------------------------- /GMath/Intersect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Intersect.cs -------------------------------------------------------------------------------- /GMath/Knot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Knot.cs -------------------------------------------------------------------------------- /GMath/LineD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/LineD.cs -------------------------------------------------------------------------------- /GMath/ListInfoInters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/ListInfoInters.cs -------------------------------------------------------------------------------- /GMath/MConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/MConsts.cs -------------------------------------------------------------------------------- /GMath/MDrawParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/MDrawParam.cs -------------------------------------------------------------------------------- /GMath/MatrixD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/MatrixD.cs -------------------------------------------------------------------------------- /GMath/Outline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Outline.cs -------------------------------------------------------------------------------- /GMath/PairInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/PairInt.cs -------------------------------------------------------------------------------- /GMath/Param.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/Param.cs -------------------------------------------------------------------------------- /GMath/RayD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/RayD.cs -------------------------------------------------------------------------------- /GMath/SegD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/SegD.cs -------------------------------------------------------------------------------- /GMath/VecD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GMath/VecD.cs -------------------------------------------------------------------------------- /GenerateFValData/GenerateFValData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/GenerateFValData.csproj -------------------------------------------------------------------------------- /GenerateFValData/HelpGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/HelpGen.cs -------------------------------------------------------------------------------- /GenerateFValData/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/Helpers.cs -------------------------------------------------------------------------------- /GenerateFValData/Index.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/Index.hhk -------------------------------------------------------------------------------- /GenerateFValData/OurData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/OurData.xml -------------------------------------------------------------------------------- /GenerateFValData/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GenerateFValData/ValTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/ValTests.cs -------------------------------------------------------------------------------- /GenerateFValData/help-proj-postamble.txt: -------------------------------------------------------------------------------- 1 | 2 | [INFOTYPES] 3 | -------------------------------------------------------------------------------- /GenerateFValData/help-proj-preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/help-proj-preamble.txt -------------------------------------------------------------------------------- /GenerateFValData/helpitems.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/helpitems.xsd -------------------------------------------------------------------------------- /GenerateFValData/interpretinglog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/interpretinglog.htm -------------------------------------------------------------------------------- /GenerateFValData/introtofv.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/introtofv.htm -------------------------------------------------------------------------------- /GenerateFValData/legacy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/legacy.htm -------------------------------------------------------------------------------- /GenerateFValData/resources.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/resources.htm -------------------------------------------------------------------------------- /GenerateFValData/startbutton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/startbutton.jpg -------------------------------------------------------------------------------- /GenerateFValData/template-contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/template-contents.txt -------------------------------------------------------------------------------- /GenerateFValData/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/template.txt -------------------------------------------------------------------------------- /GenerateFValData/toc-error-postamble.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GenerateFValData/toc-error-preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/toc-error-preamble.txt -------------------------------------------------------------------------------- /GenerateFValData/toc-info-postamble.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GenerateFValData/toc-info-preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/toc-info-preamble.txt -------------------------------------------------------------------------------- /GenerateFValData/toc-postamble.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /GenerateFValData/toc-preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/toc-preamble.txt -------------------------------------------------------------------------------- /GenerateFValData/toc-warning-postamble.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GenerateFValData/toc-warning-preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/toc-warning-preamble.txt -------------------------------------------------------------------------------- /GenerateFValData/tooloverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/tooloverview.htm -------------------------------------------------------------------------------- /GenerateFValData/usingvalidator.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/usingvalidator.htm -------------------------------------------------------------------------------- /GenerateFValData/valstrings-postamble.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GenerateFValData/valstrings-preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/GenerateFValData/valstrings-preamble.txt -------------------------------------------------------------------------------- /Glyph/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/AssemblyInfo.cs -------------------------------------------------------------------------------- /Glyph/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/ClassDiagram1.cd -------------------------------------------------------------------------------- /Glyph/DIWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/DIWrapper.cs -------------------------------------------------------------------------------- /Glyph/DefsGC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/DefsGC.cs -------------------------------------------------------------------------------- /Glyph/DefsGM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/DefsGM.cs -------------------------------------------------------------------------------- /Glyph/DefsGV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/DefsGV.cs -------------------------------------------------------------------------------- /Glyph/ExceptionGlyph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/ExceptionGlyph.cs -------------------------------------------------------------------------------- /Glyph/FManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/FManager.cs -------------------------------------------------------------------------------- /Glyph/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/Flags.cs -------------------------------------------------------------------------------- /Glyph/FlagsGV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/FlagsGV.cs -------------------------------------------------------------------------------- /Glyph/GDrawParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GDrawParam.cs -------------------------------------------------------------------------------- /Glyph/GErr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GErr.cs -------------------------------------------------------------------------------- /Glyph/GErrConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GErrConsts.cs -------------------------------------------------------------------------------- /Glyph/GErrFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GErrFile.cs -------------------------------------------------------------------------------- /Glyph/GErrList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GErrList.cs -------------------------------------------------------------------------------- /Glyph/GErrPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GErrPool.cs -------------------------------------------------------------------------------- /Glyph/GErrSign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GErrSign.cs -------------------------------------------------------------------------------- /Glyph/GRelations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GRelations.cs -------------------------------------------------------------------------------- /Glyph/GScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GScope.cs -------------------------------------------------------------------------------- /Glyph/GStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/GStore.cs -------------------------------------------------------------------------------- /Glyph/Glyph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/Glyph.cs -------------------------------------------------------------------------------- /Glyph/I_IOGlyphs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/I_IOGlyphs.cs -------------------------------------------------------------------------------- /Glyph/I_ProgressUpdator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/I_ProgressUpdator.cs -------------------------------------------------------------------------------- /Glyph/NS_Glyph.GErrStrings.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/NS_Glyph.GErrStrings.resources -------------------------------------------------------------------------------- /Glyph/NS_Glyph.GErrStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/NS_Glyph.GErrStrings.resx -------------------------------------------------------------------------------- /Glyph/StatusGV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Glyph/StatusGV.cs -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/License.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/Makefile -------------------------------------------------------------------------------- /OTFontFile/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/AssemblyInfo.cs -------------------------------------------------------------------------------- /OTFontFile/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OTFontFile/ClassDiagram2.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OTFontFile/MBOBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/MBOBuffer.cs -------------------------------------------------------------------------------- /OTFontFile/OTFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/OTFile.cs -------------------------------------------------------------------------------- /OTFontFile/OTFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/OTFont.cs -------------------------------------------------------------------------------- /OTFontFile/OTL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/OTL.cs -------------------------------------------------------------------------------- /OTFontFile/OTTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/OTTable.cs -------------------------------------------------------------------------------- /OTFontFile/TAble_Zapf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/TAble_Zapf.cs -------------------------------------------------------------------------------- /OTFontFile/TTCHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/TTCHeader.cs -------------------------------------------------------------------------------- /OTFontFile/TableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/TableManager.cs -------------------------------------------------------------------------------- /OTFontFile/Table_BASE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_BASE.cs -------------------------------------------------------------------------------- /OTFontFile/Table_CFF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_CFF.cs -------------------------------------------------------------------------------- /OTFontFile/Table_DSIG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_DSIG.cs -------------------------------------------------------------------------------- /OTFontFile/Table_EBDT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_EBDT.cs -------------------------------------------------------------------------------- /OTFontFile/Table_EBLC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_EBLC.cs -------------------------------------------------------------------------------- /OTFontFile/Table_EBSC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_EBSC.cs -------------------------------------------------------------------------------- /OTFontFile/Table_GDEF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_GDEF.cs -------------------------------------------------------------------------------- /OTFontFile/Table_GPOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_GPOS.cs -------------------------------------------------------------------------------- /OTFontFile/Table_GSUB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_GSUB.cs -------------------------------------------------------------------------------- /OTFontFile/Table_JSTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_JSTF.cs -------------------------------------------------------------------------------- /OTFontFile/Table_LTSH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_LTSH.cs -------------------------------------------------------------------------------- /OTFontFile/Table_OS2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_OS2.cs -------------------------------------------------------------------------------- /OTFontFile/Table_PCLT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_PCLT.cs -------------------------------------------------------------------------------- /OTFontFile/Table_VDMX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_VDMX.cs -------------------------------------------------------------------------------- /OTFontFile/Table_VORG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_VORG.cs -------------------------------------------------------------------------------- /OTFontFile/Table__Unknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table__Unknown.cs -------------------------------------------------------------------------------- /OTFontFile/Table_cmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_cmap.cs -------------------------------------------------------------------------------- /OTFontFile/Table_cvt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_cvt.cs -------------------------------------------------------------------------------- /OTFontFile/Table_fpgm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_fpgm.cs -------------------------------------------------------------------------------- /OTFontFile/Table_gasp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_gasp.cs -------------------------------------------------------------------------------- /OTFontFile/Table_glyf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_glyf.cs -------------------------------------------------------------------------------- /OTFontFile/Table_hdmx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_hdmx.cs -------------------------------------------------------------------------------- /OTFontFile/Table_head.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_head.cs -------------------------------------------------------------------------------- /OTFontFile/Table_hhea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_hhea.cs -------------------------------------------------------------------------------- /OTFontFile/Table_hmtx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_hmtx.cs -------------------------------------------------------------------------------- /OTFontFile/Table_kern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_kern.cs -------------------------------------------------------------------------------- /OTFontFile/Table_loca.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_loca.cs -------------------------------------------------------------------------------- /OTFontFile/Table_maxp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_maxp.cs -------------------------------------------------------------------------------- /OTFontFile/Table_name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_name.cs -------------------------------------------------------------------------------- /OTFontFile/Table_post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_post.cs -------------------------------------------------------------------------------- /OTFontFile/Table_prep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_prep.cs -------------------------------------------------------------------------------- /OTFontFile/Table_vhea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_vhea.cs -------------------------------------------------------------------------------- /OTFontFile/Table_vmtx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/Table_vmtx.cs -------------------------------------------------------------------------------- /OTFontFile/ottypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/ottypes.cs -------------------------------------------------------------------------------- /OTFontFile/util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFile/util.cs -------------------------------------------------------------------------------- /OTFontFileVal/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/AssemblyInfo.cs -------------------------------------------------------------------------------- /OTFontFileVal/CallbVal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/CallbVal.cs -------------------------------------------------------------------------------- /OTFontFileVal/ClassDiagram2.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OTFontFileVal/ITableValidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/ITableValidate.cs -------------------------------------------------------------------------------- /OTFontFileVal/I_IOGlyphsFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/I_IOGlyphsFile.cs -------------------------------------------------------------------------------- /OTFontFileVal/OTFileVal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/OTFileVal.cs -------------------------------------------------------------------------------- /OTFontFileVal/OTFontFileVal.ValStrings.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/OTFontFileVal.ValStrings.resources -------------------------------------------------------------------------------- /OTFontFileVal/OTFontVal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/OTFontVal.cs -------------------------------------------------------------------------------- /OTFontFileVal/OTLVal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/OTLVal.cs -------------------------------------------------------------------------------- /OTFontFileVal/Overlap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/Overlap.cs -------------------------------------------------------------------------------- /OTFontFileVal/PostNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/PostNames.cs -------------------------------------------------------------------------------- /OTFontFileVal/RastTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/RastTest.cs -------------------------------------------------------------------------------- /OTFontFileVal/TableManagerVal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/TableManagerVal.cs -------------------------------------------------------------------------------- /OTFontFileVal/ValDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/ValDriver.cs -------------------------------------------------------------------------------- /OTFontFileVal/ValidationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/ValidationInfo.cs -------------------------------------------------------------------------------- /OTFontFileVal/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/Validator.cs -------------------------------------------------------------------------------- /OTFontFileVal/ValidatorParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/ValidatorParameters.cs -------------------------------------------------------------------------------- /OTFontFileVal/atoms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/atoms.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_BASE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_BASE.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_CFF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_CFF.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_DSIG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_DSIG.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_EBDT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_EBDT.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_EBLC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_EBLC.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_EBSC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_EBSC.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_GDEF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_GDEF.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_GPOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_GPOS.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_GSUB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_GSUB.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_JSTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_JSTF.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_LTSH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_LTSH.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_OS2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_OS2.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_PCLT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_PCLT.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_VDMX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_VDMX.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_VORG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_VORG.cs -------------------------------------------------------------------------------- /OTFontFileVal/val__Unknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val__Unknown.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_cmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_cmap.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_cvt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_cvt.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_fpgm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_fpgm.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_gasp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_gasp.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_glyf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_glyf.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_hdmx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_hdmx.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_head.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_head.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_hhea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_hhea.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_hmtx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_hmtx.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_kern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_kern.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_loca.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_loca.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_maxp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_maxp.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_name.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_post.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_prep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_prep.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_vhea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_vhea.cs -------------------------------------------------------------------------------- /OTFontFileVal/val_vmtx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/OTFontFileVal/val_vmtx.cs -------------------------------------------------------------------------------- /README-extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/README-extra.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/README.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ValCommon/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/AssemblyInfo.cs -------------------------------------------------------------------------------- /ValCommon/DIAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/DIAction.cs -------------------------------------------------------------------------------- /ValCommon/DIActionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/DIActionBuilder.cs -------------------------------------------------------------------------------- /ValCommon/DIActionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/DIActionContainer.cs -------------------------------------------------------------------------------- /ValCommon/DIActionOnCondBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/DIActionOnCondBuilder.cs -------------------------------------------------------------------------------- /ValCommon/DICond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/DICond.cs -------------------------------------------------------------------------------- /ValCommon/DICondBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/DICondBuilder.cs -------------------------------------------------------------------------------- /ValCommon/I_TestReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/I_TestReader.cs -------------------------------------------------------------------------------- /ValCommon/ValInfoBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValCommon/ValInfoBasic.cs -------------------------------------------------------------------------------- /ValInterface/val.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValInterface/val.cpp -------------------------------------------------------------------------------- /ValInterface/val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/ValInterface/val.h -------------------------------------------------------------------------------- /bin/FontValidatorHelp.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/bin/FontValidatorHelp.chm -------------------------------------------------------------------------------- /bin/fval.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Font-Validator/HEAD/bin/fval.xsl --------------------------------------------------------------------------------