Fix cbuffer pretty printing.

This commit is contained in:
2024-07-01 08:02:10 +02:00
parent 92c1f593c2
commit 7a07c32cd2
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
scope (global) [
[pixel__ps_main] : () -> float4
[vertex__vs_main] : (pos : float4) -> float4
[camera] : {projection : float4x4, view : float4x4}
scope (camera) [
[projection] : float4x4
[view] : float4x4
]
scope (vertex__vs_main) [
[pos] : float4
[mv] : float4
[mvp] : float4
]
scope (pixel__ps_main) []
]