2021-12-29 21:09:00 +00:00
|
|
|
const std = @import("std");
|
|
|
|
|
2022-03-01 00:38:50 +00:00
|
|
|
pub fn sext(comptime bits: comptime_int, value: u32) u32 {
|
|
|
|
comptime std.debug.assert(bits <= 32);
|
|
|
|
const amount = 32 - bits;
|
2022-01-01 09:41:50 +00:00
|
|
|
|
2022-03-01 00:38:50 +00:00
|
|
|
return @bitCast(u32, @bitCast(i32, value << amount) >> amount);
|
2021-12-29 21:09:00 +00:00
|
|
|
}
|
2022-03-14 11:54:48 +00:00
|
|
|
|
|
|
|
pub const FpsAverage = struct {
|
|
|
|
const Self = @This();
|
|
|
|
|
|
|
|
total: u64,
|
|
|
|
sample_count: u64,
|
|
|
|
|
|
|
|
pub fn init() Self {
|
|
|
|
return .{ .total = 0, .sample_count = 0 };
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add(self: *Self, sample: u64) void {
|
|
|
|
if (self.sample_count == 1000) return self.reset(sample);
|
|
|
|
|
|
|
|
self.total += sample;
|
|
|
|
self.sample_count += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn calc(self: *const Self) u64 {
|
|
|
|
return self.total / self.sample_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reset(self: *Self, sample: u64) void {
|
|
|
|
self.total = sample;
|
|
|
|
self.sample_count = 1;
|
|
|
|
}
|
|
|
|
};
|