summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorQwerasd <qwerasd205@users.noreply.github.com>2025-05-26 21:39:15 -0600
committerQwerasd <qwerasd205@users.noreply.github.com>2025-05-26 21:50:14 -0600
commit2384bd69cc25db7228dcb2e90ea1d296bbf0ba84 (patch)
tree5b1c2f912bb073b5fc2721024f556c86b89c4e23 /pkg
parent2fe2ccdbde58557f17ba1787551dfb0666b6a147 (diff)
style: use decl literals
This commit changes a LOT of areas of the code to use decl literals instead of redundantly referring to the type. These changes were mostly driven by some regex searches and then manual adjustment on a case-by-case basis. I almost certainly missed quite a few places where decl literals could be used, but this is a good first step in converting things, and other instances can be addressed when they're discovered. I tested GLFW+Metal and building the framework on macOS and tested a GTK build on Linux, so I'm 99% sure I didn't introduce any syntax errors or other problems with this. (fingers crossed)
Diffstat (limited to 'pkg')
-rw-r--r--pkg/fontconfig/pattern.zig4
-rw-r--r--pkg/glfw/Monitor.zig2
-rw-r--r--pkg/glfw/opengl.zig2
3 files changed, 4 insertions, 4 deletions
diff --git a/pkg/fontconfig/pattern.zig b/pkg/fontconfig/pattern.zig
index e0ec27a69..3a623e223 100644
--- a/pkg/fontconfig/pattern.zig
+++ b/pkg/fontconfig/pattern.zig
@@ -44,7 +44,7 @@ pub const Pattern = opaque {
&val,
))).toError();
- return Value.init(&val);
+ return .init(&val);
}
pub fn delete(self: *Pattern, prop: Property) bool {
@@ -138,7 +138,7 @@ pub const Pattern = opaque {
return Entry{
.result = @enumFromInt(result),
.binding = @enumFromInt(binding),
- .value = Value.init(&value),
+ .value = .init(&value),
};
}
};
diff --git a/pkg/glfw/Monitor.zig b/pkg/glfw/Monitor.zig
index 4accb23cd..3b194965a 100644
--- a/pkg/glfw/Monitor.zig
+++ b/pkg/glfw/Monitor.zig
@@ -281,7 +281,7 @@ pub inline fn setGamma(self: Monitor, gamma: f32) void {
/// see also: monitor_gamma
pub inline fn getGammaRamp(self: Monitor) ?GammaRamp {
internal_debug.assertInitialized();
- if (c.glfwGetGammaRamp(self.handle)) |ramp| return GammaRamp.fromC(ramp.*);
+ if (c.glfwGetGammaRamp(self.handle)) |ramp| return .fromC(ramp.*);
return null;
}
diff --git a/pkg/glfw/opengl.zig b/pkg/glfw/opengl.zig
index 04bc3a65c..8fe2efbed 100644
--- a/pkg/glfw/opengl.zig
+++ b/pkg/glfw/opengl.zig
@@ -47,7 +47,7 @@ pub inline fn makeContextCurrent(window: ?Window) void {
/// see also: context_current, glfwMakeContextCurrent
pub inline fn getCurrentContext() ?Window {
internal_debug.assertInitialized();
- if (c.glfwGetCurrentContext()) |handle| return Window.from(handle);
+ if (c.glfwGetCurrentContext()) |handle| return .from(handle);
return null;
}