Skip to content

Commit dd7212b

Browse files
Deploying to master from @ gfx-rs/wgpu@6a01091 🚀
1 parent 82c5d9a commit dd7212b

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

doc/search-index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/src/wgpu/backend/wgpu_core.rs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5850,7 +5850,7 @@
58505850
end_of_pass_write_index: tw.end_of_pass_write_index,
58515851
});
58525852

5853-
<span class="kw">let </span>(pass, err) = <span class="self">self</span>.context.<span class="number">0</span>.command_encoder_create_compute_pass(
5853+
<span class="kw">let </span>(pass, err) = <span class="self">self</span>.context.<span class="number">0</span>.command_encoder_begin_compute_pass(
58545854
<span class="self">self</span>.id,
58555855
<span class="kw-2">&amp;</span>wgc::command::ComputePassDescriptor {
58565856
label: desc.label.map(Borrowed),
@@ -5911,7 +5911,7 @@
59115911
end_of_pass_write_index: tw.end_of_pass_write_index,
59125912
});
59135913

5914-
<span class="kw">let </span>(pass, err) = <span class="self">self</span>.context.<span class="number">0</span>.command_encoder_create_render_pass(
5914+
<span class="kw">let </span>(pass, err) = <span class="self">self</span>.context.<span class="number">0</span>.command_encoder_begin_render_pass(
59155915
<span class="self">self</span>.id,
59165916
<span class="kw-2">&amp;</span>wgc::command::RenderPassDescriptor {
59175917
label: desc.label.map(Borrowed),

doc/src/wgpu_core/command/compute.rs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1620,7 +1620,7 @@
16201620
/// If successful, puts the encoder into the [`Locked`] state.
16211621
///
16221622
/// [`Locked`]: crate::command::CommandEncoderStatus::Locked
1623-
</span><span class="kw">pub fn </span>command_encoder_create_compute_pass(
1623+
</span><span class="kw">pub fn </span>command_encoder_begin_compute_pass(
16241624
<span class="kw-2">&amp;</span><span class="self">self</span>,
16251625
encoder_id: id::CommandEncoderId,
16261626
desc: <span class="kw-2">&amp;</span>ComputePassDescriptor&lt;<span class="lifetime">'_</span>&gt;,
@@ -1699,7 +1699,7 @@
16991699
push_constant_data,
17001700
} = base;
17011701

1702-
<span class="kw">let </span>(<span class="kw-2">mut </span>compute_pass, encoder_error) = <span class="self">self</span>.command_encoder_create_compute_pass(
1702+
<span class="kw">let </span>(<span class="kw-2">mut </span>compute_pass, encoder_error) = <span class="self">self</span>.command_encoder_begin_compute_pass(
17031703
encoder_id,
17041704
<span class="kw-2">&amp;</span>ComputePassDescriptor {
17051705
label: label.as_deref().map(std::borrow::Cow::Borrowed),

doc/src/wgpu_core/command/render.rs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4761,7 +4761,7 @@
47614761
/// If successful, puts the encoder into the [`Locked`] state.
47624762
///
47634763
/// [`Locked`]: crate::command::CommandEncoderStatus::Locked
4764-
</span><span class="kw">pub fn </span>command_encoder_create_render_pass(
4764+
</span><span class="kw">pub fn </span>command_encoder_begin_render_pass(
47654765
<span class="kw-2">&amp;</span><span class="self">self</span>,
47664766
encoder_id: id::CommandEncoderId,
47674767
desc: <span class="kw-2">&amp;</span>RenderPassDescriptor&lt;<span class="lifetime">'_</span>&gt;,
@@ -4947,7 +4947,7 @@
49474947
push_constant_data,
49484948
} = base;
49494949

4950-
<span class="kw">let </span>(<span class="kw-2">mut </span>render_pass, encoder_error) = <span class="self">self</span>.command_encoder_create_render_pass(
4950+
<span class="kw">let </span>(<span class="kw-2">mut </span>render_pass, encoder_error) = <span class="self">self</span>.command_encoder_begin_render_pass(
49514951
encoder_id,
49524952
<span class="kw-2">&amp;</span>RenderPassDescriptor {
49534953
label: label.as_deref().map(Cow::Borrowed),

doc/wgpu_core/global/struct.Global.html

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)