Skip to content

Commit

Permalink
Update tutorials/shaders/compute_shaders.rst
Browse files Browse the repository at this point in the history
Co-authored-by: Clay John <claynjohn@gmail.com>
  • Loading branch information
dotlogix and clayjohn authored Sep 23, 2022
1 parent 226ba10 commit ff28f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/shaders/compute_shaders.rst
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ The steps we need to do to compute our result are:
var compute_list := rd.compute_list_begin()
rd.compute_list_bind_compute_pipeline(compute_list, pipeline)
rd.compute_list_bind_uniform_set(compute_list, uniform_set, 0)
rd.compute_list_dispatch(compute_list, 2, 1, 1)
rd.compute_list_dispatch(compute_list, 5, 1, 1)
rd.compute_list_end()

.. code-tab:: csharp
Expand Down

0 comments on commit ff28f2f

Please sign in to comment.