Skip to documentation
SLOP

tiny.filigree.fixtures

Reference tiny.filigree fixtures

Defined in tiny.filigree.

API (75)

Actions

Public operations.

Namespaces

Public namespaces.

No direct callersNo direct callstiny.filigreefixtures
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/filigree/src/fixture/font.zig:25

zig
pub fn create(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{});}
Called byCallsfixturescreateCollectiontest sourcelib.filigree.src.fixture.fonttest: create builds an sfnt headerprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreate
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:109

zig
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);}
Called byCallsNo direct callersfixturescreateprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateCollection
Static calls · unresolved targets: 1 · external targets: 1.

Source: lib/filigree/src/fixture/font.zig:93

zig
pub fn createFallbackWithOutlines(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{        .outlines = true,        .notdef_outline = true,        .fallback_coverage = true,    });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateFallbackWithOutlines
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:41

zig
pub fn createWithAxisVariations(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variations = true, .axis_variations = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithAxisVariations
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:105

zig
pub fn createWithCffOutlines(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .cff_outlines = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithCffOutlines
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:77

zig
pub fn createWithGdefGlyphClasses(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .gdef_classes = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithGdefGlyphClasses
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:85

zig
pub fn createWithGsubLigatureAndGdefCarets(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .gsub_ligature = true, .gdef_classes = true, .gdef_carets = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithGsubLigatureAndGdefCarets
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:81

zig
pub fn createWithGsubLigatureAndGdefGlyphClasses(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .gsub_ligature = true, .gdef_classes = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithGsubLigatureAndGdefGlyphCla...
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:49

zig
pub fn createWithHorizontalMetricAxisVariations(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variations = true, .axis_variations = true, .horizontal_metric_variations = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithHorizontalMetricAxisVariati...
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:45

zig
pub fn createWithHorizontalMetricVariations(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variations = true, .horizontal_metric_variations = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithHorizontalMetricVariations
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:29

zig
pub fn createWithKern(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .kern = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithKern
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:101

zig
pub fn createWithMathAssembly(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .outlines = true, .math_assembly = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithMathAssembly
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:73

zig
pub fn createWithMetricAxisVariations(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variations = true, .axis_variations = true, .metric_variations = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithMetricAxisVariations
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:69

zig
pub fn createWithMetricVariations(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variations = true, .metric_variations = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithMetricVariations
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:89

zig
pub fn createWithOutlines(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .outlines = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithOutlines
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:33

zig
pub fn createWithVariationSequences(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variation_sequences = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithVariationSequences
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:37

zig
pub fn createWithVariations(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variations = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithVariations
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:65

zig
pub fn createWithVerticalMetricAxisVariations(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variations = true, .axis_variations = true, .vertical_metrics = true, .vertical_metric_variations = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithVerticalMetricAxisVariations
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:61

zig
pub fn createWithVerticalMetricVariations(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .variations = true, .vertical_metrics = true, .vertical_metric_variations = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithVerticalMetricVariations
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:53

zig
pub fn createWithVerticalMetrics(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .vertical_metrics = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithVerticalMetrics
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/font.zig:57

zig
pub fn createWithVerticalOrigins(allocator: std.mem.Allocator) ![]u8 {    return createWithOptions(allocator, .{ .vertical_metrics = true, .vertical_origins = true });}
Called byCallsNo direct callersprivate sourcelib.filigree.src.fixture.fontcreateWithOptionsfixturescreateWithVerticalOrigins
Static calls · unresolved targets: 0 · external targets: 0.

Source: lib/filigree/src/fixture/gpos.zig:92

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
pub fn createWithGposCursiveAttachment(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gpos_cursive = true });}

Source: lib/filigree/src/fixture/gpos.zig:8

zig
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

zig
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

zig
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

zig
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

zig
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

zig
pub fn createWithGposPairAdjustment(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gpos_pair = true });}

Source: lib/filigree/src/fixture/gpos.zig:72

zig
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

zig
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

zig
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

zig
pub fn createWithGposSingleAdjustment(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gpos_single = true });}

Source: lib/filigree/src/fixture/gpos.zig:12

zig
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

zig
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

zig
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

zig
pub fn createWithGsubAlternateSubstitution(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gsub_alternate = true });}

Source: lib/filigree/src/fixture/gsub.zig:92

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
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

zig
pub fn createWithGsubContextualSubstitution(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gsub_contextual = true });}

Source: lib/filigree/src/fixture/gsub.zig:24

zig
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

zig
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

zig
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

zig
pub fn createWithGsubFractions(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gsub_fractions = true });}

Source: lib/filigree/src/fixture/gsub.zig:68

zig
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

zig
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

zig
pub fn createWithGsubLigature(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gsub_ligature = true });}

Source: lib/filigree/src/fixture/gsub.zig:56

zig
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

zig
pub fn createWithGsubMultipleSubstitution(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gsub_multiple = true });}

Source: lib/filigree/src/fixture/gsub.zig:64

zig
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

zig
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

zig
pub fn createWithGsubReverseChainingSingleSubstitution(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gsub_reverse = true });}

Source: lib/filigree/src/fixture/gsub.zig:76

zig
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

zig
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

zig
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

zig
pub fn createWithGsubSingleSubstitution(allocator: std.mem.Allocator) ![]u8 {    return font_fixture.createWithOptions(allocator, .{ .gsub_single = true });}

Source: lib/filigree/src/fixture/gsub.zig:104

zig
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

zig
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

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

zig
pub const fixtures = @import("fixture/root.zig");

Audit

Definitions75
Public names75
Members0
Version26.7.0
Revisiondaab053ee433