瀏覽代碼

fix: align the enum values

Taylor 2 周之前
父節點
當前提交
6c2b72f701
共有 1 個文件被更改,包括 8 次插入8 次删除
  1. 8 8
      vendor/cgltf/cgltf.odin

+ 8 - 8
vendor/cgltf/cgltf.odin

@@ -263,19 +263,19 @@ image :: struct {
 }
 
 filter_type :: enum c.int {
-	undefined = 0,
-	nearest = 9728,
-	linear = 9729,
+	undefined              = 0,
+	nearest                = 9728,
+	linear                 = 9729,
 	nearest_mipmap_nearest = 9984,
-	linear_mipmap_nearest = 9985,
-	nearest_mipmap_linear = 9986,
-	linear_mipmap_linear = 9987,
+	linear_mipmap_nearest  = 9985,
+	nearest_mipmap_linear  = 9986,
+	linear_mipmap_linear   = 9987,
 }
 
 wrap_mode :: enum c.int {
-	clamp_to_edge = 33071,
+	clamp_to_edge   = 33071,
 	mirrored_repeat = 33648,
-	repeat = 10497,
+	repeat          = 10497,
 }
 
 sampler :: struct {