diff options
Diffstat (limited to 'components/script/dom/webgpu/mod.rs')
-rw-r--r-- | components/script/dom/webgpu/mod.rs | 84 |
1 files changed, 43 insertions, 41 deletions
diff --git a/components/script/dom/webgpu/mod.rs b/components/script/dom/webgpu/mod.rs index 2b06224c6fb..ac14d1eb3ae 100644 --- a/components/script/dom/webgpu/mod.rs +++ b/components/script/dom/webgpu/mod.rs @@ -2,44 +2,46 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -pub mod gpu; -pub mod gpuadapter; -pub mod gpuadapterinfo; -pub mod gpubindgroup; -pub mod gpubindgrouplayout; -pub mod gpubuffer; -pub mod gpubufferusage; -pub mod gpucanvascontext; -pub mod gpucolorwrite; -pub mod gpucommandbuffer; -pub mod gpucommandencoder; -pub mod gpucompilationinfo; -pub mod gpucompilationmessage; -pub mod gpucomputepassencoder; -pub mod gpucomputepipeline; -pub mod gpuconvert; -pub mod gpudevice; -pub mod gpudevicelostinfo; -pub mod gpuerror; -pub mod gpuinternalerror; -pub mod gpumapmode; -pub mod gpuoutofmemoryerror; -pub mod gpupipelineerror; -pub mod gpupipelinelayout; -pub mod gpuqueryset; -pub mod gpuqueue; -pub mod gpurenderbundle; -pub mod gpurenderbundleencoder; -pub mod gpurenderpassencoder; -pub mod gpurenderpipeline; -pub mod gpusampler; -pub mod gpushadermodule; -pub mod gpushaderstage; -pub mod gpusupportedfeatures; -pub mod gpusupportedlimits; -pub mod gputexture; -pub mod gputextureusage; -pub mod gputextureview; -pub mod gpuuncapturederrorevent; -pub mod gpuvalidationerror; -pub mod identityhub; +pub(crate) mod gpu; +pub(crate) mod gpuadapter; +pub(crate) mod gpuadapterinfo; +pub(crate) mod gpubindgroup; +pub(crate) mod gpubindgrouplayout; +pub(crate) mod gpubuffer; +pub(crate) mod gpubufferusage; +pub(crate) mod gpucanvascontext; +pub(crate) mod gpucolorwrite; +pub(crate) mod gpucommandbuffer; +pub(crate) mod gpucommandencoder; +pub(crate) mod gpucompilationinfo; +pub(crate) mod gpucompilationmessage; +pub(crate) mod gpucomputepassencoder; +pub(crate) mod gpucomputepipeline; +pub(crate) mod gpuconvert; +pub(crate) mod gpudevice; +pub(crate) mod gpudevicelostinfo; +pub(crate) mod gpuerror; +pub(crate) mod gpuinternalerror; +pub(crate) mod gpumapmode; +pub(crate) mod gpuoutofmemoryerror; +pub(crate) mod gpupipelineerror; +#[allow(dead_code)] +pub(crate) mod gpupipelinelayout; +pub(crate) mod gpuqueryset; +pub(crate) mod gpuqueue; +pub(crate) mod gpurenderbundle; +pub(crate) mod gpurenderbundleencoder; +pub(crate) mod gpurenderpassencoder; +pub(crate) mod gpurenderpipeline; +pub(crate) mod gpusampler; +pub(crate) mod gpushadermodule; +pub(crate) mod gpushaderstage; +pub(crate) mod gpusupportedfeatures; +pub(crate) mod gpusupportedlimits; +pub(crate) mod gputexture; +pub(crate) mod gputextureusage; +pub(crate) mod gputextureview; +pub(crate) mod gpuuncapturederrorevent; +pub(crate) mod gpuvalidationerror; +#[allow(dead_code)] +pub(crate) mod identityhub; |