Running cargo doc on the vulkan backend will generate the following error:
error: unresolved link to `Device::reset_fences`
--> src/hal/src/device.rs:558:26
|
558 | /// [`reset_fences`][Device::reset_fences].
| ^^^^^^^^^^^^^^^^^^^^ the trait `Device` has no associated item named `reset_fences`
|
note: the lint level is defined here
--> src/hal/src/lib.rs:9:5
|
9 | broken_intra_doc_links,
| ^^^^^^^^^^^^^^^^^^^^^^
error: unresolved link to `CommandQueue::bind_sparse`
--> src/hal/src/memory.rs:134:41
|
134 | /// This is used in the [`bind_sparse`][CommandQueue::bind_sparse] method to define a physical
| ^^^^^^^^^^^^^^^^^^^^^^^^^ no item named `CommandQueue` in scope
error: unresolved link to `CommandQueue::bind_sparse`
--> src/hal/src/memory.rs:151:41
|
151 | /// This is used in the [`bind_sparse`][CommandQueue::bind_sparse] method to define a physical
| ^^^^^^^^^^^^^^^^^^^^^^^^^ no item named `CommandQueue` in scope
error: aborting due to 3 previous errors
This fix will simply update the doc links so that it compile correctly.
Have a good day.
Running
cargo doc
on the vulkan backend will generate the following error:This fix will simply update the doc links so that it compile correctly. Have a good day.