diff options
Diffstat (limited to 'components/script/dom/gpucommandencoder.rs')
-rw-r--r-- | components/script/dom/gpucommandencoder.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/components/script/dom/gpucommandencoder.rs b/components/script/dom/gpucommandencoder.rs index ec9aa70046d..869a4e17346 100644 --- a/components/script/dom/gpucommandencoder.rs +++ b/components/script/dom/gpucommandencoder.rs @@ -107,17 +107,17 @@ impl GPUCommandEncoder { } impl GPUCommandEncoderMethods for GPUCommandEncoder { - /// https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-label + /// <https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-label> fn Label(&self) -> USVString { self.label.borrow().clone() } - /// https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-label + /// <https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-label> fn SetLabel(&self, value: USVString) { *self.label.borrow_mut() = value; } - /// https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-begincomputepass + /// <https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-begincomputepass> fn BeginComputePass( &self, descriptor: &GPUComputePassDescriptor, @@ -152,7 +152,7 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { ) } - /// https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-beginrenderpass + /// <https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-beginrenderpass> fn BeginRenderPass( &self, descriptor: &GPURenderPassDescriptor, @@ -250,7 +250,7 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { ) } - /// https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-copybuffertobuffer + /// <https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-copybuffertobuffer> fn CopyBufferToBuffer( &self, source: &GPUBuffer, @@ -284,7 +284,7 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { .expect("Failed to send CopyBufferToBuffer"); } - /// https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-copybuffertotexture + /// <https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-copybuffertotexture> fn CopyBufferToTexture( &self, source: &GPUImageCopyBuffer, @@ -316,7 +316,7 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { .expect("Failed to send CopyBufferToTexture"); } - /// https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-copybuffertotexture + /// <https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-copybuffertotexture> fn CopyTextureToBuffer( &self, source: &GPUImageCopyTexture, @@ -348,7 +348,7 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { .expect("Failed to send CopyTextureToBuffer"); } - /// https://gpuweb.github.io/gpuweb/#GPUCommandEncoder-copyTextureToTexture + /// <https://gpuweb.github.io/gpuweb/#GPUCommandEncoder-copyTextureToTexture> fn CopyTextureToTexture( &self, source: &GPUImageCopyTexture, @@ -376,7 +376,7 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { .expect("Failed to send CopyTextureToTexture"); } - /// https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-finish + /// <https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-finish> fn Finish(&self, descriptor: &GPUCommandBufferDescriptor) -> DomRoot<GPUCommandBuffer> { self.channel .0 |