From 441e6adc4898bcc081d806bb9b5aeeb2f4f0ab0d Mon Sep 17 00:00:00 2001 From: Matthew Date: Sun, 12 Oct 2025 20:12:04 +1100 Subject: [PATCH] remove embed --- vulkan_util.d | 7 ------- 1 file changed, 7 deletions(-) diff --git a/vulkan_util.d b/vulkan_util.d index a3e13ba..bc7e028 100644 --- a/vulkan_util.d +++ b/vulkan_util.d @@ -279,10 +279,3 @@ AlignPow2(T)(T v, T a) { return (v + a - 1) & ~(a - 1); } - -u8[] -Embed(string file_name) -{ - import std.file; - return cast(u8[])read(file_name); -}