Files
2026-07-13 13:33:03 +08:00

23 lines
292 B
Plaintext

namespace VKCache;
attribute "priority";
table WorkSize {
x: uint;
y: uint;
z: uint;
}
table TuneInfo {
shaderName: string;
gws: WorkSize;
optimalLws: WorkSize;
optimalCost: float;
}
table TuneInfoCache {
TuneInfos: [TuneInfo];
}
root_type TuneInfoCache;