From c992421658d47c2dc72beba263481157dce34cd3 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Mon, 11 Jul 2022 08:38:00 -0700 Subject: [PATCH] gpu: fix naming conventions for \dx\d Signed-off-by: Stephen Gutekanst --- gpu/src/Texture.zig | 56 ++++++++++++++++++++++----------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/gpu/src/Texture.zig b/gpu/src/Texture.zig index 6a2218da..235081e3 100644 --- a/gpu/src/Texture.zig +++ b/gpu/src/Texture.zig @@ -89,34 +89,34 @@ pub const Format = enum(u32) { eacr11_snorm = 0x00000040, eacrg11_unorm = 0x00000041, eacrg11_snorm = 0x00000042, - astc_4x4_unorm = 0x00000043, - astc_4x4_unorm_srgb = 0x00000044, - astc_5x4_unorm = 0x00000045, - astc_5x4_unorm_srgb = 0x00000046, - astc_5x5_unorm = 0x00000047, - astc_5x5_unorm_srgb = 0x00000048, - astc_6x5_unorm = 0x00000049, - astc_6x5_unorm_srgb = 0x0000004a, - astc_6x6_unorm = 0x0000004b, - astc_6x6_unorm_srgb = 0x0000004c, - astc_8x5_unorm = 0x0000004d, - astc_8x5_unorm_srgb = 0x0000004e, - astc_8x6_unorm = 0x0000004f, - astc_8x6_unorm_srgb = 0x00000050, - astc_8x8_unorm = 0x00000051, - astc_8x8_unorm_srgb = 0x00000052, - astc_10x5_unorm = 0x00000053, - astc_10x5_unorm_srgb = 0x00000054, - astc_10x6_unorm = 0x00000055, - astc_10x6_unorm_srgb = 0x00000056, - astc_10x8_unorm = 0x00000057, - astc_10x8_unorm_srgb = 0x00000058, - astc_10x10_unorm = 0x00000059, - astc_10x10_unorm_srgb = 0x0000005a, - astc_12x10_unorm = 0x0000005b, - astc_12x10_unorm_srgb = 0x0000005c, - astc_12x12_unorm = 0x0000005d, - astc_12x12_unorm_srgb = 0x0000005e, + astc4x4_unorm = 0x00000043, + astc4x4_unorm_srgb = 0x00000044, + astc5x4_unorm = 0x00000045, + astc5x4_unorm_srgb = 0x00000046, + astc5x5_unorm = 0x00000047, + astc5x5_unorm_srgb = 0x00000048, + astc6x5_unorm = 0x00000049, + astc6x5_unorm_srgb = 0x0000004a, + astc6x6_unorm = 0x0000004b, + astc6x6_unorm_srgb = 0x0000004c, + astc8x5_unorm = 0x0000004d, + astc8x5_unorm_srgb = 0x0000004e, + astc8x6_unorm = 0x0000004f, + astc8x6_unorm_srgb = 0x00000050, + astc8x8_unorm = 0x00000051, + astc8x8_unorm_srgb = 0x00000052, + astc10x5_unorm = 0x00000053, + astc10x5_unorm_srgb = 0x00000054, + astc10x6_unorm = 0x00000055, + astc10x6_unorm_srgb = 0x00000056, + astc10x8_unorm = 0x00000057, + astc10x8_unorm_srgb = 0x00000058, + astc10x10_unorm = 0x00000059, + astc10x10_unorm_srgb = 0x0000005a, + astc12x10_unorm = 0x0000005b, + astc12x10_unorm_srgb = 0x0000005c, + astc12x12_unorm = 0x0000005d, + astc12x12_unorm_srgb = 0x0000005e, r8_bg8_biplanar420_unorm = 0x0000005f, };