diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2020-02-19 17:18:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 17:18:29 -0500 |
commit | 107a29121c8a0e21d03645dd07121b59b595ac93 (patch) | |
tree | d472e89e332325873c8ab35923fce7de87c17a61 /components/script/dom/gpucommandencoder.rs | |
parent | 35b1548cb64357c5881b71ed43397dbd71aec141 (diff) | |
parent | 170e9971ac0acab6e5dba52fcc2e09064d1e0090 (diff) | |
download | servo-107a29121c8a0e21d03645dd07121b59b595ac93.tar.gz servo-107a29121c8a0e21d03645dd07121b59b595ac93.zip |
Auto merge of #25793 - szeged:wgpu_compute_pass_encoder_fns, r=jdm
Implement GPUComputePassEncoder functions
Implement the `dispatch`, `endPass`, `setBindGroup`, `setPipeline` functions of `GPUComputePassEncoder`.
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes addresses a part of #24706
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
cc @kvark @jdm @zakorgy
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'components/script/dom/gpucommandencoder.rs')
-rw-r--r-- | components/script/dom/gpucommandencoder.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/components/script/dom/gpucommandencoder.rs b/components/script/dom/gpucommandencoder.rs index b0086ec0704..03b9373f3ab 100644 --- a/components/script/dom/gpucommandencoder.rs +++ b/components/script/dom/gpucommandencoder.rs @@ -17,7 +17,7 @@ use crate::dom::gpucomputepassencoder::GPUComputePassEncoder; use dom_struct::dom_struct; use ipc_channel::ipc; use std::collections::HashSet; -use webgpu::{wgpu::command::RawPass, WebGPU, WebGPUCommandEncoder, WebGPURequest}; +use webgpu::{WebGPU, WebGPUCommandEncoder, WebGPURequest}; #[dom_struct] pub struct GPUCommandEncoder { @@ -69,11 +69,7 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { &self, _descriptor: &GPUComputePassDescriptor, ) -> DomRoot<GPUComputePassEncoder> { - GPUComputePassEncoder::new( - &self.global(), - self.channel.clone(), - RawPass::new_compute(self.encoder.0), - ) + GPUComputePassEncoder::new(&self.global(), self.channel.clone(), self.encoder) } /// https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-copybuffertobuffer |