now with SIMD I think!

This commit is contained in:
Jeeves 2024-03-16 19:12:44 -06:00
parent 94190aa1a7
commit d1809c641f

View file

@ -47,6 +47,7 @@ pub fn main() !void {
output.separator_block_width = 0; output.separator_block_width = 0;
try json.stringify(output, .{ .emit_null_optional_fields = false }, stdout); try json.stringify(output, .{ .emit_null_optional_fields = false }, stdout);
try stdout.print(",", .{}); try stdout.print(",", .{});
bg.r += 0.025; bg.r += 0.025;
bg.g += 0.025; bg.g += 0.025;
bg.b += 0.025; bg.b += 0.025;
@ -76,9 +77,12 @@ pub const Color = struct {
} }
pub fn getString(self: *const Color, allocator: std.mem.Allocator) ![]const u8 { pub fn getString(self: *const Color, allocator: std.mem.Allocator) ![]const u8 {
const r = @as(u8, @intFromFloat(self.r * 255)); const v = self.getVector();
const g = @as(u8, @intFromFloat(self.g * 255)); const x = @max(VecRGB{ 0.0, 0.0, 0.0 }, @min(v, VecRGB{ 1.0, 1.0, 1.0 }));
const b = @as(u8, @intFromFloat(self.b * 255)); const y = x * VecRGB{ 255.0, 255.0, 255.0 };
const r = @as(u8, @intFromFloat(y[0]));
const g = @as(u8, @intFromFloat(y[1]));
const b = @as(u8, @intFromFloat(y[2]));
return try std.fmt.allocPrint(allocator, "#{s}{s}{s}", .{ return try std.fmt.allocPrint(allocator, "#{s}{s}{s}", .{
std.fmt.fmtSliceHexLower(&[_]u8{r}), std.fmt.fmtSliceHexLower(&[_]u8{r}),
std.fmt.fmtSliceHexLower(&[_]u8{g}), std.fmt.fmtSliceHexLower(&[_]u8{g}),
@ -87,20 +91,34 @@ pub const Color = struct {
} }
pub fn add(a: *const Color, b: Color) Color { pub fn add(a: *const Color, b: Color) Color {
return .{ const va = a.getVector();
.r = std.math.clamp(a.r + b.r, 0.0, 1.0), const vb = b.getVector();
.g = std.math.clamp(a.g + b.g, 0.0, 1.0), return Color.fromVector(va + vb);
.b = std.math.clamp(a.b + b.b, 0.0, 1.0),
};
} }
pub fn mix(a: *const Color, b: Color, t: f32) Color { pub fn mix(a: *const Color, b: Color, t: f32) Color {
return .{ const va = a.getVector();
.r = std.math.lerp(a.r, b.r, t), const vb = b.getVector();
.g = std.math.lerp(a.g, b.g, t), return Color.fromVector(std.math.lerp(va, vb, t));
.b = std.math.lerp(a.b, b.b, t), }
fn getVector(self: *const Color) VecRGB {
return VecRGB{
self.r,
self.g,
self.b,
}; };
} }
fn fromVector(v: VecRGB) Color {
return .{
.r = v[0],
.g = v[1],
.b = v[2],
};
}
pub const VecRGB = @Vector(3, f32);
}; };
pub fn getBgColor(idx: usize, override: ?[]const u8) []const u8 { pub fn getBgColor(idx: usize, override: ?[]const u8) []const u8 {