Оживление проекта

This commit is contained in:
2026-02-22 00:42:18 +03:00
parent 8532114673
commit fd0ba8b583
5 changed files with 7 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ const builtin = @import("builtin");
const dvui = @import("dvui");
const Document = @import("models/Document.zig");
const RenderEngine = @import("render/RenderEngine.zig").RenderEngine;
const ImageRect = @import("models/rasterization_models.zig").ImageRect;
const ImageRect = @import("models/basic_models.zig").ImageRect;
const Size = dvui.Size;
const Color = dvui.Color;
@@ -18,8 +18,6 @@ scroll: dvui.ScrollInfo = .{
.horizontal = .auto,
},
native_scaling: bool = true,
gradient_start: Color.PMA = .{ .r = 0, .g = 0, .b = 0, .a = 255 },
gradient_end: Color.PMA = .{ .r = 255, .g = 255, .b = 255, .a = 255 },
document: ?*Document = null,
render_engine: RenderEngine,
_visible_rect: ?ImageRect = null,