Update shader fetch example for new APIs

This commit is contained in:
baldurk
2024-05-29 10:57:37 +01:00
parent 886d7f6eda
commit 62e7ccda1c
2 changed files with 3 additions and 3 deletions
@@ -43,7 +43,7 @@ Now we want to display the constants bound to this shader. Shader bindings is an
.. highlight:: python
.. code:: python
cbufferVars = controller.GetCBufferVariableContents(pipe, ps.resourceId, rd.ShaderStage.Pixel, entry, 0, cb.resourceId, 0, 0)
cbufferVars = controller.GetCBufferVariableContents(pipe, ps.resourceId, rd.ShaderStage.Pixel, entry, 0, cb.descriptor.resource, 0, 0)
Since constants can contain structs of other constants, we want to define a recursive function that will iterate over a constant and print it along with its value. We want to handle both vectors and matrices so we need to iterate over both rows and columns for each variable.