aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/gpusampler.rs
Commit message (Collapse)AuthorAgeFilesLines
* Codegen support multiple interfaces in single webidl file & WebGPU single ↵Samson2023-09-301-1/+1
| | | | | | | | | webidl (#30448) * Codegen support multiple interfaces in single webidl file * Merge GPU*.webidl into WebGPU.webidl * Update gpu files to use WebGPUBinding module file
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-2/+3
| | | | | * strict imports formatting * Reformat all imports
* Upgrade whole webgpu stack (#29795)Samson2023-08-201-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* No tracing of nop traceable fields (#29926)Samson2023-08-041-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add `no_trace` option to JSTraceable derive * NoTrace wrapper * Port some types to no_trace schematics * Fixing my unsafe mistakes (not tracing traceables) * Add docs & safety guards for no_trace Safety guards (trait shenanigans) guarantees safety usage of `no_trace` * Port canvas_traits to no_trace * Port servo_media to no_trace * Port net_traits to no_trace * Port style to no_trace * Port webgpu to no_trace * Port script_traits to no_trace * Port canvas_traits, devtools_traits, embedder_traits, profile_traits to no_trace * unrooted_must_root lint in seperate file * Add trace_in_no_trace_lint as script_plugin * Composable types in must_not_have_traceable * Introduced HashMapTracedValues wrapper * `HashMap<NoTrace<K>,V>`->`HashMapTracedValues<K,V>` * Port rest of servo's types to no_trace * Port html5ever, euclid, mime and http to no_trace * Port remaining externals to no_trace * Port webxr and Arc<Mutex<_>> * Fix spelling in notrace doc
* Implement GPURenderBundleEncoder and GPURenderBundleKunal Mohan2020-07-241-3/+14
|
* Update GPUObjectBase webidl and cleanup valid flagsKunal Mohan2020-07-201-24/+6
|
* Remove validation for GPUBindGroup, GPUBindGroupLayout, GPUPipelineLayoutKunal Mohan2020-06-191-4/+0
|
* Update wgpu-core and wgpu-typesKunal Mohan2020-06-191-7/+1
|
* Add GPUSampler and GPUTextureView to BindingResourceKunal Mohan2020-06-171-0/+14
| | | | Add validation for BindGroups
* Update wgpu-core and wgpu-typesKunal Mohan2020-06-041-2/+2
|
* Add GPUSampler to WebGPU implementationKunal Mohan2020-05-261-0/+77
Add dom_struct and webidl for GPUSampler, implement GPUDevice.createSampler() method.