Первая растеризация

This commit is contained in:
2026-02-24 21:56:15 +03:00
parent ef768e9fe7
commit e5dd455d14
8 changed files with 376 additions and 85 deletions

8
src/render/cpu/arc.zig Normal file
View File

@@ -0,0 +1,8 @@
const Document = @import("../../models/Document.zig");
const pipeline = @import("pipeline.zig");
const DrawContext = pipeline.DrawContext;
const Object = Document.Object;
/// Рисует дугу (заглушка: пока не реализовано).
pub fn draw(_: *DrawContext, _: *const Object) void {}