Skip to documentation
SLOP

tiny.png.EncodeScratch

Reference tiny.png EncodeScratch

Defined in tiny.png.

API (5)

Actions

Public operations.

Types and contracts

Public types and contracts.

Fields and members

Public fields and members.

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

Source

Source: lib/png/src/encode/plan.zig:24

zig
pub const Scratch = struct {    window: [flate.max_window_len]u8 = undefined,    raw: [stream_bytes]u8 = undefined,    count: [stream_bytes]u8 = undefined,    pub const bytes: usize = flate.max_window_len + stream_bytes * 2;    pub fn regions(self: *Scratch) ScratchRegions {        return .{ .window = &self.window, .raw = &self.raw, .count = &self.count };    }};

Source: lib/png/src/root.zig:20

zig
pub const EncodeScratch = encode.Scratch;

Also reachable as

encode.Scratch.

Audit

Definitions3
Public names6
Members3
Version26.7.0
Revisiondaab053ee433