aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/identityhub.rs
Commit message (Collapse)AuthorAgeFilesLines
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-7/+5
| | | | | * strict imports formatting * Reformat all imports
* Update wgpu to 0.17 (#30147)Samson2023-08-211-1/+1
|
* Update rustc.Josh Matthews2021-12-021-2/+2
|
* Implement GPURenderBundleEncoder and GPURenderBundleKunal Mohan2020-07-241-2/+12
|
* Implement GPUTexture and GPUTextureViewKunal Mohan2020-06-011-1/+22
|
* Implement GPURenderPipelineKunal Mohan2020-05-301-1/+11
| | | | Add webidl for GPURenderPipeline and implement GPUDevice.createRenderPipeline()
* Add GPUSampler to WebGPU implementationKunal Mohan2020-05-261-61/+33
| | | | Add dom_struct and webidl for GPUSampler, implement GPUDevice.createSampler() method.
* Implement client-side logic for WebGPU id recyclingKunal Mohan2020-05-221-1/+37
|
* Upgrade wgpu-core version to 0.5.0 and implement server-side logic for wgpu ↵Kunal Mohan2020-05-211-1/+1
| | | | | | id recycling Remove current implementation of MapReadAsync
* Initial implementation of GPUCommandEncoderZakor Gyula2020-02-111-2/+12
| | | | | | Added WebIDL bindings for `GPUCommandEncoder`, `GPUCommandBuffer`, `GPUComputePassEncoder`, `GPUProgrammablePassEncoder`. Implemented the `beginComputePass`, `copyBufferToBuffer` and `finish` functions of `GPUCommandEncoder`. Implemented the `createCommandEncoder` function of `GPUDevice`.
* Initial implementation of GPUComputePipelineIstvan Miklos2020-02-111-2/+12
| | | | | Added WebIDL bindings for `GPUComputePipeline`. Implemented the `createComputePipeline` function of `GPUDevice`.
* Initial implementation of GPUShaderModuleIstvan Miklos2020-02-111-12/+15
| | | | | Added WebIDL bindings for `GPUShaderModule`. Implemented the `createShaderModule` function of `GPUDevice`.
* Auto merge of #25637 - szeged:wgpu_crete_bind_group, r=jdmbors-servo2020-01-301-1/+21
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initial implementation of GPUBindGroup for WebGPU Added WebIDL bindings for `GPUBindGroup`. Implemented the `createBindGroup` function of `GPUDevice` Renamed `GPUBindGroupBinding` to `GPUBindGroupBindings` and `GPUBufferBinding` to `GPUBufferBindings` in the WebIDL, because these names are already occupied. <!-- 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 cc @kvark @jdm @zakorgy <!-- 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.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
| * Initial implementation of GPUBindGroup for WebGPUIstvan Miklos2020-01-301-1/+21
| | | | | | | | | | Added WebIDL bindings for `GPUBindGroup`. Implemented the `createBindGroup` function of `GPUDevice`
* | Remove code duplication from IdentityHubIstvan Miklos2020-01-301-44/+18
|/ | | | Outsourced the backend selection to a function.
* Initial implementation of GPUPipelineLayout for WebGPUIstvan Miklos2020-01-211-1/+21
| | | | | Added WebIDL bindings for `GPUPipelineLayout`. Implemented the createPipelineLayout function of `GPUDevice`.
* Initial implementation of GPUBindGroupLayout for WebGPUIstvan Miklos2020-01-161-2/+22
| | | | | | Added WebIDL bindings for `GPUBindGroupLayout`, `GPUBindGroupLayoutDescriptor`, `GPUBindingType`, `GPUShaderStage` and `GPUBindGroupLayoutBinding` (Note: The servo's codegen doesn't like the name, because its already occupied). Implemented the `createBindGroupLayout` function of `GPUDevice`.
* Initial implementation of GPUBuffer for WebGPUIstvan Miklos2019-12-171-1/+21
| | | | | Added WebIDL bindings for GPUBuffer, GPUBufferDescriptor, GPUBufferUsage Implemented the `createBuffer` and `createBufferMapped` functions of GPUDevice
* Replace wgpu-native with wgpu-coreZakor Gyula2019-12-061-21/+72
|
* Initial implementation of GPUDevice for WebGPUIstvan Miklos2019-12-051-0/+4
| | | | | Added the WebIDL bindigs for GPUDevice, GPUObjectDescriptorBase, GPUDeviceDescriptor, GPUObjectBase Implemented the `requestDevice` function of `GPUAdapter`
* Add WebGPU identity managementIstvan Miklos2019-11-281-0/+47
Issue: https://github.com/servo/servo/issues/24706#issuecomment-557891841