zgpu

git clone git://git.electrosoup.com/zgpu
Log | Files | Refs | Submodules | README

commit 86d1429ba7f6f766b881147453130004f2084bea
parent 6b4d72a5f6316694f28dd64ea145da0f1de769a4
Author: Christian Ermann <christianermann@gmail.com>
Date:   Wed,  7 May 2025 18:48:43 -0700

Fix 'FeatureName' enum member names

Diffstat:
Msrc/device.zig | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/device.zig b/src/device.zig @@ -7,15 +7,15 @@ const Queue = @import("queue.zig").Queue; pub const FeatureName = enum(u32) { undefined = 0x00000000, depth_clip_control = 0x00000001, - depth_32float_stencil_8 = 0x00000002, + depth32_float_stencil8 = 0x00000002, timestamp_query = 0x00000003, texture_compression_bc = 0x00000004, texture_compression_etc2 = 0x00000005, texture_compression_astc = 0x00000006, indirect_first_instance = 0x00000007, shader_f16 = 0x00000008, - rg11b10ufloat_renderable = 0x00000009, - bgra8unorm_storage = 0x0000000A, + rg11b10_ufloat_renderable = 0x00000009, + bgra8_unorm_storage = 0x0000000A, float32_filterable = 0x0000000B, };