aboutsummaryrefslogtreecommitdiff
path: root/src/wl/output/subpixel.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-08-22 20:12:56 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2025-08-22 20:12:56 +0200
commit956ecb061b1862a4b632c8d5d6b6fa4318e1f640 (patch)
treef00adc9bfced275f280239b25a2b2ae15f57765b /src/wl/output/subpixel.zig
parent33e1de2710fe44512440e0e6055578d67dab330c (diff)
object refactor and add wl output
Now the Object is held by the registry instead of the struct its referencing and the struct only has a `handle` which is a usize.
Diffstat (limited to 'src/wl/output/subpixel.zig')
-rw-r--r--src/wl/output/subpixel.zig8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wl/output/subpixel.zig b/src/wl/output/subpixel.zig
new file mode 100644
index 0000000..f6d3bba
--- /dev/null
+++ b/src/wl/output/subpixel.zig
@@ -0,0 +1,8 @@
+pub const Subpixel = enum(u32) {
+ unkown = 0,
+ none = 1,
+ orizontal_rgb = 2,
+ orizontal_bgr = 3,
+ vertical_rgb = 4,
+ vertical_bgr = 5,
+};