You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Caused by: In a RenderPass note: encoder = `Common encoder` In a draw command, indexed:true indirect:false note: render pipeline = '<RenderPipeline-(8, 1, Vulkan)>' < error message ... > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |____ ???
When using a CommandEncoder that encodes multiple different pipelines and drawcalls, if anything goes wrong I get a message like the one above^
The problem is that I have given all my render passes and pipeline's labels, but it still only refers to the pipelines as such: <RenderPipeline-(8, 1, Vulkan)>.
Desired outcome
It would be much easier to debug errors if the error message instead showed me the pipeline's label (or the renderpass's label or bindgroup's label or anything..) like how it already shows the encoder's label: Common encoder
I have given labels to everything xP Would be nice if I saw them more in error messages..
The particular error message I got this time was The pipeline layout, associated with the current render pipeline, contains a bind group layout at index 0 which is incompatible with the bind group layout associated with the bind group at 0, but no matter the specific error it seems to not refer to the pipeline by its label either way.
The text was updated successfully, but these errors were encountered:
Problem
When using a
CommandEncoder
that encodes multiple different pipelines and drawcalls, if anything goes wrong I get a message like the one above^The problem is that I have given all my render passes and pipeline's labels, but it still only refers to the pipelines as such:
<RenderPipeline-(8, 1, Vulkan)>
.Desired outcome
It would be much easier to debug errors if the error message instead showed me the pipeline's label (or the renderpass's label or bindgroup's label or anything..) like how it already shows the encoder's label:
Common encoder
I have given labels to everything xP Would be nice if I saw them more in error messages..
Extra info
The particular error message I got this time was
The pipeline layout, associated with the current render pipeline, contains a bind group layout at index 0 which is incompatible with the bind group layout associated with the bind group at 0
, but no matter the specific error it seems to not refer to the pipeline by its label either way.The text was updated successfully, but these errors were encountered: