adding base image
Build / build (push) Successful in 2m5s
Test / build (push) Successful in 10m33s

This commit is contained in:
2026-04-06 22:49:23 +02:00
parent 85e0fe4362
commit b051c71f02
3 changed files with 44 additions and 1 deletions
+9 -1
View File
@@ -129,7 +129,15 @@ pub const TypeData = union(Type) {
return_type: SpvWord,
params: []const SpvWord,
},
Image: struct {},
Image: struct {
dim: spv.SpvDim,
depth: SpvByte,
arrayed: SpvByte,
ms: SpvByte,
sampled: SpvByte,
format: spv.SpvImageFormat,
access: ?spv.SpvAccessQualifier,
},
Sampler: struct {},
SampledImage: struct {},
Pointer: struct {