aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/GPUCommandEncoder.webidl
Commit message (Collapse)AuthorAgeFilesLines
* Codegen support multiple interfaces in single webidl file & WebGPU single ↵Samson2023-09-301-153/+0
| | | | | | | | | webidl (#30448) * Codegen support multiple interfaces in single webidl file * Merge GPU*.webidl into WebGPU.webidl * Update gpu files to use WebGPUBinding module file
* Upgrade whole webgpu stack (#29795)Samson2023-08-201-51/+82
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Allow noidl files in script/dom/webidls * Upgrade wgpu to 0.16 and refresh whole webgpu implementation * Update WebGPU test expectations * misc * MutNullableDom -> DomRefCell<Option<Dom for GPUTexture * Direct use of GPUTextureDescriptor * Remove config from GPUCanvasContext * misc * finally blue color * gpubuffer "handle" error * GPU object have non-null label * gpu limits and info * use buffer_size * fix warnings * Cleanup * device destroy * fallback adapter * mach update-webgpu write webgpu commit hash in file * Mising deps in CI for webgpu tests * Updated expectations * Fixups * early reject * DomRefCell<Option<Dom -> MutNullableDom for GPUTexture
* Convert Web IDL void to undefinedKagami Sascha Rosylight2022-01-051-4/+4
| | | | Fixes #27660
* Implement GPUCommandEncoder.copy commandsKunal Mohan2020-07-211-18/+50
|
* Implement GPURenderPassEncoderKunal Mohan2020-06-041-1/+46
| | | | | Add webidls for GPURenderPassEncoder and GPURenderEncoderBase and implement relevant methods.
* Validate copybuffertobuffer() + some spec updateKunal Mohan2020-05-151-3/+3
| | | | | The spec update includes renaming bindings to entries and adding CommandEncoderState.
* Initial implementation of GPUCommandEncoderZakor Gyula2020-02-111-0/+45
Added WebIDL bindings for `GPUCommandEncoder`, `GPUCommandBuffer`, `GPUComputePassEncoder`, `GPUProgrammablePassEncoder`. Implemented the `beginComputePass`, `copyBufferToBuffer` and `finish` functions of `GPUCommandEncoder`. Implemented the `createCommandEncoder` function of `GPUDevice`.