tiny.filigree.fixtures
Defined in tiny.filigree.
API (75)
Actions
Public operations.
createcreateCollectioncreateFallbackWithOutlinescreateWithAxisVariationscreateWithCffOutlinescreateWithGdefGlyphClassescreateWithGposAboveBaseMarkPositioningcreateWithGposBelowBaseMarkPositioningcreateWithGposChainedClassContextualPairAdjustmentcreateWithGposChainedClassContextualSingleAdjustmentcreateWithGposChainedContextualPairAdjustmentcreateWithGposChainedContextualSingleAdjustmentcreateWithGposChainedSimpleContextualPairAdjustmentcreateWithGposChainedSimpleContextualSingleAdjustmentcreateWithGposClassContextualPairAdjustmentcreateWithGposClassContextualSingleAdjustmentcreateWithGposContextualPairAdjustmentcreateWithGposContextualSingleAdjustmentcreateWithGposCursiveAttachmentcreateWithGposFeatureVariationscreateWithGposMarkToBasecreateWithGposMarkToBaseThenPaircreateWithGposMarkToLigaturecreateWithGposMarkToMarkcreateWithGposPairAdjustmentcreateWithGposPairIgnoreMarkscreateWithGposSimpleContextualPairAdjustmentcreateWithGposSimpleContextualSingleAdjustmentcreateWithGposSingleAdjustmentcreateWithGposSingleVariationAdjustmentcreateWithGposVerticalPairAdjustmentcreateWithGsubAlternateSubstitutioncreateWithGsubArabicJoiningFormscreateWithGsubChainedClassContextualSubstitutioncreateWithGsubChainedContextualSubstitutioncreateWithGsubChainedSimpleContextualSubstitutioncreateWithGsubClassContextualSubstitutioncreateWithGsubContextualAlternatescreateWithGsubContextualLigaturecreateWithGsubContextualSubstitutioncreateWithGsubCoverageContextualSubstitutioncreateWithGsubFeatureVariationscreateWithGsubFractionComponentscreateWithGsubFractionscreateWithGsubLeftToRightAlternatescreateWithGsubLeftToRightMirroredFormscreateWithGsubLigaturecreateWithGsubLigatureAndGdefCaretscreateWithGsubLigatureAndGdefGlyphClassescreateWithGsubLocalizedFormscreateWithGsubMultipleSubstitutioncreateWithGsubRequiredContextualAlternatescreateWithGsubRequiredVariationAlternatescreateWithGsubReverseChainingSingleSubstitutioncreateWithGsubRightToLeftAlternatescreateWithGsubRightToLeftMirroredFormscreateWithGsubSingleIgnoreMarkscreateWithGsubSingleSubstitutioncreateWithGsubVerticalAlternatescreateWithGsubVerticalRotationAlternatescreateWithHorizontalMetricAxisVariationscreateWithHorizontalMetricVariationscreateWithKerncreateWithKernAndGposPairAdjustmentcreateWithMathAssemblycreateWithMetricAxisVariationscreateWithMetricVariationscreateWithOutlinescreateWithVariationSequencescreateWithVariationscreateWithVerticalMetricAxisVariationscreateWithVerticalMetricVariationscreateWithVerticalMetricscreateWithVerticalOrigins
Namespaces
Public namespaces.
Source
Source: lib/filigree/src/fixture/font.zig:25
pub fn create(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{});}Source: lib/filigree/src/fixture/font.zig:109
pub fn createCollection(allocator: std.mem.Allocator) ![]u8 { const first = try create(allocator); defer allocator.free(first); const second = try createWithOptions(allocator, .{ .gsub_single = true }); defer allocator.free(second); const fonts = [_][]const u8{ first, second }; return assembleCollectionBytes(allocator, &fonts);}Source: lib/filigree/src/fixture/font.zig:93
pub fn createFallbackWithOutlines(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .outlines = true, .notdef_outline = true, .fallback_coverage = true, });}Source: lib/filigree/src/fixture/font.zig:41
pub fn createWithAxisVariations(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variations = true, .axis_variations = true });}Source: lib/filigree/src/fixture/font.zig:105
pub fn createWithCffOutlines(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .cff_outlines = true });}Source: lib/filigree/src/fixture/font.zig:77
pub fn createWithGdefGlyphClasses(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .gdef_classes = true });}Source: lib/filigree/src/fixture/font.zig:85
pub fn createWithGsubLigatureAndGdefCarets(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .gsub_ligature = true, .gdef_classes = true, .gdef_carets = true });}Source: lib/filigree/src/fixture/font.zig:81
pub fn createWithGsubLigatureAndGdefGlyphClasses(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .gsub_ligature = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/font.zig:49
pub fn createWithHorizontalMetricAxisVariations(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variations = true, .axis_variations = true, .horizontal_metric_variations = true });}Source: lib/filigree/src/fixture/font.zig:45
pub fn createWithHorizontalMetricVariations(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variations = true, .horizontal_metric_variations = true });}Source: lib/filigree/src/fixture/font.zig:29
pub fn createWithKern(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .kern = true });}Source: lib/filigree/src/fixture/font.zig:101
pub fn createWithMathAssembly(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .outlines = true, .math_assembly = true });}Source: lib/filigree/src/fixture/font.zig:73
pub fn createWithMetricAxisVariations(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variations = true, .axis_variations = true, .metric_variations = true });}Source: lib/filigree/src/fixture/font.zig:69
pub fn createWithMetricVariations(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variations = true, .metric_variations = true });}Source: lib/filigree/src/fixture/font.zig:89
pub fn createWithOutlines(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .outlines = true });}Source: lib/filigree/src/fixture/font.zig:33
pub fn createWithVariationSequences(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variation_sequences = true });}Source: lib/filigree/src/fixture/font.zig:37
pub fn createWithVariations(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variations = true });}Source: lib/filigree/src/fixture/font.zig:65
pub fn createWithVerticalMetricAxisVariations(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variations = true, .axis_variations = true, .vertical_metrics = true, .vertical_metric_variations = true });}Source: lib/filigree/src/fixture/font.zig:61
pub fn createWithVerticalMetricVariations(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .variations = true, .vertical_metrics = true, .vertical_metric_variations = true });}Source: lib/filigree/src/fixture/font.zig:53
pub fn createWithVerticalMetrics(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .vertical_metrics = true });}Source: lib/filigree/src/fixture/font.zig:57
pub fn createWithVerticalOrigins(allocator: std.mem.Allocator) ![]u8 { return createWithOptions(allocator, .{ .vertical_metrics = true, .vertical_origins = true });}Source: lib/filigree/src/fixture/gpos.zig:92
pub fn createWithGposAboveBaseMarkPositioning(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_above_base_mark = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/gpos.zig:96
pub fn createWithGposBelowBaseMarkPositioning(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_below_base_mark = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/gpos.zig:60
pub fn createWithGposChainedClassContextualPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_chained_class_contextual_pair = true });}Source: lib/filigree/src/fixture/gpos.zig:36
pub fn createWithGposChainedClassContextualSingleAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_chained_class_contextual_single = true });}Source: lib/filigree/src/fixture/gpos.zig:52
pub fn createWithGposChainedContextualPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_chained_contextual_pair = true });}Source: lib/filigree/src/fixture/gpos.zig:28
pub fn createWithGposChainedContextualSingleAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_chained_contextual_single = true });}Source: lib/filigree/src/fixture/gpos.zig:56
pub fn createWithGposChainedSimpleContextualPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_chained_simple_contextual_pair = true });}Source: lib/filigree/src/fixture/gpos.zig:32
pub fn createWithGposChainedSimpleContextualSingleAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_chained_simple_contextual_single = true });}Source: lib/filigree/src/fixture/gpos.zig:48
pub fn createWithGposClassContextualPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_contextual_class_pair = true });}Source: lib/filigree/src/fixture/gpos.zig:20
pub fn createWithGposClassContextualSingleAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_contextual_class_single = true });}Source: lib/filigree/src/fixture/gpos.zig:40
pub fn createWithGposContextualPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_contextual_pair = true });}Source: lib/filigree/src/fixture/gpos.zig:24
pub fn createWithGposContextualSingleAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_contextual_single = true });}Source: lib/filigree/src/fixture/gpos.zig:76
pub fn createWithGposCursiveAttachment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_cursive = true });}Source: lib/filigree/src/fixture/gpos.zig:8
pub fn createWithGposFeatureVariations(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .variations = true, .gpos_feature_variations = true });}Source: lib/filigree/src/fixture/gpos.zig:84
pub fn createWithGposMarkToBase(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_mark_to_base = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/gpos.zig:88
pub fn createWithGposMarkToBaseThenPair(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_mark_to_base_then_pair = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/gpos.zig:104
pub fn createWithGposMarkToLigature(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_ligature = true, .gpos_mark_to_ligature = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/gpos.zig:100
pub fn createWithGposMarkToMark(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_mark_to_mark = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/gpos.zig:64
pub fn createWithGposPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_pair = true });}Source: lib/filigree/src/fixture/gpos.zig:72
pub fn createWithGposPairIgnoreMarks(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_pair_ignore_marks = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/gpos.zig:44
pub fn createWithGposSimpleContextualPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_contextual_simple_pair = true });}Source: lib/filigree/src/fixture/gpos.zig:16
pub fn createWithGposSimpleContextualSingleAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_contextual_simple_single = true });}Source: lib/filigree/src/fixture/gpos.zig:4
pub fn createWithGposSingleAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_single = true });}Source: lib/filigree/src/fixture/gpos.zig:12
pub fn createWithGposSingleVariationAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .variations = true, .gpos_single_variation = true, .gdef_variations = true });}Source: lib/filigree/src/fixture/gpos.zig:68
pub fn createWithGposVerticalPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gpos_vertical_pair = true, .vertical_metrics = true });}Source: lib/filigree/src/fixture/gpos.zig:80
pub fn createWithKernAndGposPairAdjustment(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .kern = true, .gpos_pair = true });}Source: lib/filigree/src/fixture/gsub.zig:12
pub fn createWithGsubAlternateSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_alternate = true });}Source: lib/filigree/src/fixture/gsub.zig:92
pub fn createWithGsubArabicJoiningForms(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_arabic_joining_forms = true });}Source: lib/filigree/src/fixture/gsub.zig:36
pub fn createWithGsubChainedClassContextualSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_chained_class_contextual = true });}Source: lib/filigree/src/fixture/gsub.zig:28
pub fn createWithGsubChainedContextualSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_chained_contextual = true });}Source: lib/filigree/src/fixture/gsub.zig:32
pub fn createWithGsubChainedSimpleContextualSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_chained_simple_contextual = true });}Source: lib/filigree/src/fixture/gsub.zig:20
pub fn createWithGsubClassContextualSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_class_contextual = true });}Source: lib/filigree/src/fixture/gsub.zig:60
pub fn createWithGsubContextualAlternates(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_contextual_alternates = true });}Source: lib/filigree/src/fixture/gsub.zig:44
pub fn createWithGsubContextualLigature(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_contextual_ligature = true });}Source: lib/filigree/src/fixture/gsub.zig:16
pub fn createWithGsubContextualSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_contextual = true });}Source: lib/filigree/src/fixture/gsub.zig:24
pub fn createWithGsubCoverageContextualSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_contextual_coverage = true });}Source: lib/filigree/src/fixture/gsub.zig:96
pub fn createWithGsubFeatureVariations(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .variations = true, .gsub_feature_variations = true });}Source: lib/filigree/src/fixture/gsub.zig:88
pub fn createWithGsubFractionComponents(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_fraction_components = true });}Source: lib/filigree/src/fixture/gsub.zig:84
pub fn createWithGsubFractions(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_fractions = true });}Source: lib/filigree/src/fixture/gsub.zig:68
pub fn createWithGsubLeftToRightAlternates(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_left_to_right_alternates = true });}Source: lib/filigree/src/fixture/gsub.zig:72
pub fn createWithGsubLeftToRightMirroredForms(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_left_to_right_mirrored_forms = true });}Source: lib/filigree/src/fixture/gsub.zig:40
pub fn createWithGsubLigature(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_ligature = true });}Source: lib/filigree/src/fixture/gsub.zig:56
pub fn createWithGsubLocalizedForms(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_localized_forms = true });}Source: lib/filigree/src/fixture/gsub.zig:48
pub fn createWithGsubMultipleSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_multiple = true });}Source: lib/filigree/src/fixture/gsub.zig:64
pub fn createWithGsubRequiredContextualAlternates(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_required_contextual_alternates = true });}Source: lib/filigree/src/fixture/gsub.zig:100
pub fn createWithGsubRequiredVariationAlternates(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .variations = true, .gsub_required_variation_alternates = true });}Source: lib/filigree/src/fixture/gsub.zig:52
pub fn createWithGsubReverseChainingSingleSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_reverse = true });}Source: lib/filigree/src/fixture/gsub.zig:76
pub fn createWithGsubRightToLeftAlternates(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_right_to_left_alternates = true });}Source: lib/filigree/src/fixture/gsub.zig:80
pub fn createWithGsubRightToLeftMirroredForms(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_right_to_left_mirrored_forms = true });}Source: lib/filigree/src/fixture/gsub.zig:8
pub fn createWithGsubSingleIgnoreMarks(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_single_ignore_marks = true, .gdef_classes = true });}Source: lib/filigree/src/fixture/gsub.zig:4
pub fn createWithGsubSingleSubstitution(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_single = true });}Source: lib/filigree/src/fixture/gsub.zig:104
pub fn createWithGsubVerticalAlternates(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_vertical_alternates = true });}Source: lib/filigree/src/fixture/gsub.zig:108
pub fn createWithGsubVerticalRotationAlternates(allocator: std.mem.Allocator) ![]u8 { return font_fixture.createWithOptions(allocator, .{ .gsub_vertical_rotation_alternates = true });}Source: lib/filigree/src/fixture/root.zig
pub const binary = @import("binary.zig");const font_fixture = @import("font.zig");const gpos_fixture = @import("gpos.zig");const gsub_fixture = @import("gsub.zig");pub const create = font_fixture.create;pub const createWithKern = font_fixture.createWithKern;pub const createWithGsubSingleSubstitution = gsub_fixture.createWithGsubSingleSubstitution;pub const createWithGsubSingleIgnoreMarks = gsub_fixture.createWithGsubSingleIgnoreMarks;pub const createWithGsubAlternateSubstitution = gsub_fixture.createWithGsubAlternateSubstitution;pub const createWithGsubChainedClassContextualSubstitution = gsub_fixture.createWithGsubChainedClassContextualSubstitution;pub const createWithGsubChainedContextualSubstitution = gsub_fixture.createWithGsubChainedContextualSubstitution;pub const createWithGsubChainedSimpleContextualSubstitution = gsub_fixture.createWithGsubChainedSimpleContextualSubstitution;pub const createWithGsubClassContextualSubstitution = gsub_fixture.createWithGsubClassContextualSubstitution;pub const createWithGsubContextualSubstitution = gsub_fixture.createWithGsubContextualSubstitution;pub const createWithGsubCoverageContextualSubstitution = gsub_fixture.createWithGsubCoverageContextualSubstitution;pub const createWithGsubLigature = gsub_fixture.createWithGsubLigature;pub const createWithGsubContextualLigature = gsub_fixture.createWithGsubContextualLigature;pub const createWithGsubMultipleSubstitution = gsub_fixture.createWithGsubMultipleSubstitution;pub const createWithGsubReverseChainingSingleSubstitution = gsub_fixture.createWithGsubReverseChainingSingleSubstitution;pub const createWithGsubLocalizedForms = gsub_fixture.createWithGsubLocalizedForms;pub const createWithGsubContextualAlternates = gsub_fixture.createWithGsubContextualAlternates;pub const createWithGsubRequiredContextualAlternates = gsub_fixture.createWithGsubRequiredContextualAlternates;pub const createWithGsubLeftToRightAlternates = gsub_fixture.createWithGsubLeftToRightAlternates;pub const createWithGsubLeftToRightMirroredForms = gsub_fixture.createWithGsubLeftToRightMirroredForms;pub const createWithGsubRightToLeftAlternates = gsub_fixture.createWithGsubRightToLeftAlternates;pub const createWithGsubRightToLeftMirroredForms = gsub_fixture.createWithGsubRightToLeftMirroredForms;pub const createWithGsubFractions = gsub_fixture.createWithGsubFractions;pub const createWithGsubFractionComponents = gsub_fixture.createWithGsubFractionComponents;pub const createWithGsubArabicJoiningForms = gsub_fixture.createWithGsubArabicJoiningForms;pub const createWithGsubFeatureVariations = gsub_fixture.createWithGsubFeatureVariations;pub const createWithGsubRequiredVariationAlternates = gsub_fixture.createWithGsubRequiredVariationAlternates;pub const createWithGsubVerticalAlternates = gsub_fixture.createWithGsubVerticalAlternates;pub const createWithGsubVerticalRotationAlternates = gsub_fixture.createWithGsubVerticalRotationAlternates;pub const createWithVariationSequences = font_fixture.createWithVariationSequences;pub const createWithVariations = font_fixture.createWithVariations;pub const createWithAxisVariations = font_fixture.createWithAxisVariations;pub const createWithHorizontalMetricVariations = font_fixture.createWithHorizontalMetricVariations;pub const createWithHorizontalMetricAxisVariations = font_fixture.createWithHorizontalMetricAxisVariations;pub const createWithVerticalMetrics = font_fixture.createWithVerticalMetrics;pub const createWithVerticalOrigins = font_fixture.createWithVerticalOrigins;pub const createWithVerticalMetricVariations = font_fixture.createWithVerticalMetricVariations;pub const createWithVerticalMetricAxisVariations = font_fixture.createWithVerticalMetricAxisVariations;pub const createWithMetricVariations = font_fixture.createWithMetricVariations;pub const createWithMetricAxisVariations = font_fixture.createWithMetricAxisVariations;pub const createWithGposSingleAdjustment = gpos_fixture.createWithGposSingleAdjustment;pub const createWithGposSingleVariationAdjustment = gpos_fixture.createWithGposSingleVariationAdjustment;pub const createWithGposFeatureVariations = gpos_fixture.createWithGposFeatureVariations;pub const createWithGposContextualSingleAdjustment = gpos_fixture.createWithGposContextualSingleAdjustment;pub const createWithGposClassContextualSingleAdjustment = gpos_fixture.createWithGposClassContextualSingleAdjustment;pub const createWithGposChainedContextualSingleAdjustment = gpos_fixture.createWithGposChainedContextualSingleAdjustment;pub const createWithGposChainedSimpleContextualSingleAdjustment = gpos_fixture.createWithGposChainedSimpleContextualSingleAdjustment;pub const createWithGposChainedClassContextualSingleAdjustment = gpos_fixture.createWithGposChainedClassContextualSingleAdjustment;pub const createWithGposContextualPairAdjustment = gpos_fixture.createWithGposContextualPairAdjustment;pub const createWithGposSimpleContextualPairAdjustment = gpos_fixture.createWithGposSimpleContextualPairAdjustment;pub const createWithGposClassContextualPairAdjustment = gpos_fixture.createWithGposClassContextualPairAdjustment;pub const createWithGposChainedContextualPairAdjustment = gpos_fixture.createWithGposChainedContextualPairAdjustment;pub const createWithGposChainedSimpleContextualPairAdjustment = gpos_fixture.createWithGposChainedSimpleContextualPairAdjustment;pub const createWithGposChainedClassContextualPairAdjustment = gpos_fixture.createWithGposChainedClassContextualPairAdjustment;pub const createWithGposPairAdjustment = gpos_fixture.createWithGposPairAdjustment;pub const createWithGposVerticalPairAdjustment = gpos_fixture.createWithGposVerticalPairAdjustment;pub const createWithGposPairIgnoreMarks = gpos_fixture.createWithGposPairIgnoreMarks;pub const createWithGposCursiveAttachment = gpos_fixture.createWithGposCursiveAttachment;pub const createWithKernAndGposPairAdjustment = gpos_fixture.createWithKernAndGposPairAdjustment;pub const createWithGposMarkToBase = gpos_fixture.createWithGposMarkToBase;pub const createWithGposMarkToBaseThenPair = gpos_fixture.createWithGposMarkToBaseThenPair;pub const createWithGposAboveBaseMarkPositioning = gpos_fixture.createWithGposAboveBaseMarkPositioning;pub const createWithGposBelowBaseMarkPositioning = gpos_fixture.createWithGposBelowBaseMarkPositioning;pub const createWithGposMarkToMark = gpos_fixture.createWithGposMarkToMark;pub const createWithGposMarkToLigature = gpos_fixture.createWithGposMarkToLigature;pub const createWithGposSimpleContextualSingleAdjustment = gpos_fixture.createWithGposSimpleContextualSingleAdjustment;pub const createWithGdefGlyphClasses = font_fixture.createWithGdefGlyphClasses;pub const createWithGsubLigatureAndGdefGlyphClasses = font_fixture.createWithGsubLigatureAndGdefGlyphClasses;pub const createWithGsubLigatureAndGdefCarets = font_fixture.createWithGsubLigatureAndGdefCarets;pub const createWithOutlines = font_fixture.createWithOutlines;pub const createFallbackWithOutlines = font_fixture.createFallbackWithOutlines;pub const createWithMathAssembly = font_fixture.createWithMathAssembly;pub const createWithCffOutlines = font_fixture.createWithCffOutlines;pub const createCollection = font_fixture.createCollection;Source: lib/filigree/src/root.zig:17
pub const fixtures = @import("fixture/root.zig");Audit
| Definitions | 75 |
|---|---|
| Public names | 75 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |