aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/gpuqueue.rs
Commit message (Collapse)AuthorAgeFilesLines
* Use Device limits and features provided by userKunal Mohan2020-09-231-7/+12
| | | | Spec update
* Change ErrorScopeId type to NonZeroU64Kunal Mohan2020-08-031-19/+25
| | | | And extract it from WebGPURequest
* Report errors from void returning operationsKunal Mohan2020-08-011-4/+21
|
* Implement GPUCommandEncoder.copy commandsKunal Mohan2020-07-211-27/+8
|
* Update GPUObjectBase webidl and cleanup valid flagsKunal Mohan2020-07-201-7/+6
|
* Implement GPUQueue.writeBuffer and GPUQueue.writeTextureKunal Mohan2020-07-041-2/+112
|
* Implement GPUBuffer.mapAsync and update wgpu-coreKunal Mohan2020-06-271-1/+1
|
* Update wgpu-core and wgpu-typesKunal Mohan2020-06-041-2/+2
|
* Add trait DomObjectWrap to provide WRAP functionYUAN LYU2020-03-201-6/+2
|
* Fixing some style related issues in WebGPU.Istvan Miklos2020-02-271-2/+5
| | | | | | Changed the Requests/Response from tuples to named struct variants and also sorted in alphabetical order. Replaced the ID generator functions from `globalscope` with a single function, which returns a `RefMut` and can call the appropriate method to generate resource IDs.
* Initial implementation of GPUQueueZakor2020-02-131-0/+73
Added WebIDL bindings for `GPUQueue`. Implemented the `submit` function of `GPUQueue` and `defaultQueue` function of `GPUDevice`.