mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-21 14:23:32 +00:00
Vendor WebGPU Bindings from web_sys (#5325)
This commit is contained in:
parent
a5c0181c3a
commit
aaf6db6a3d
@ -1,10 +1,2 @@
|
|||||||
[alias]
|
[alias]
|
||||||
xtask = "run --manifest-path xtask/Cargo.toml"
|
xtask = "run --manifest-path xtask/Cargo.toml --"
|
||||||
|
|
||||||
[build]
|
|
||||||
rustflags = [
|
|
||||||
"--cfg=web_sys_unstable_apis"
|
|
||||||
]
|
|
||||||
rustdocflags = [
|
|
||||||
"--cfg=web_sys_unstable_apis"
|
|
||||||
]
|
|
||||||
|
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1,2 +1,3 @@
|
|||||||
*.mtl binary
|
*.mtl binary
|
||||||
*.obj binary
|
*.obj binary
|
||||||
|
wgpu/src/backend/webgpu/webgpu_sys/** linguist-generated=true
|
||||||
|
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -55,8 +55,8 @@ env:
|
|||||||
RUST_LOG: info
|
RUST_LOG: info
|
||||||
RUST_BACKTRACE: full
|
RUST_BACKTRACE: full
|
||||||
PKG_CONFIG_ALLOW_CROSS: 1 # allow android to work
|
PKG_CONFIG_ALLOW_CROSS: 1 # allow android to work
|
||||||
RUSTFLAGS: --cfg=web_sys_unstable_apis -D warnings
|
RUSTFLAGS: -D warnings
|
||||||
RUSTDOCFLAGS: --cfg=web_sys_unstable_apis -D warnings
|
RUSTDOCFLAGS: -D warnings
|
||||||
WASM_BINDGEN_TEST_TIMEOUT: 300 # 5 minutes
|
WASM_BINDGEN_TEST_TIMEOUT: 300 # 5 minutes
|
||||||
CACHE_SUFFIX: c # cache busting
|
CACHE_SUFFIX: c # cache busting
|
||||||
|
|
||||||
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@ -12,7 +12,7 @@ env:
|
|||||||
CARGO_INCREMENTAL: false
|
CARGO_INCREMENTAL: false
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
RUST_BACKTRACE: full
|
RUST_BACKTRACE: full
|
||||||
RUSTFLAGS: --cfg=web_sys_unstable_apis
|
RUSTFLAGS:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -31,3 +31,6 @@ cts/
|
|||||||
|
|
||||||
# Cached GPU config
|
# Cached GPU config
|
||||||
.gpuconfig
|
.gpuconfig
|
||||||
|
|
||||||
|
# Temporary clone location for wasm-bindgen mirroring
|
||||||
|
wgpu/src/backend/webgpu/webgpu_sys/wasm_bindgen_clone_tmp
|
12
CHANGELOG.md
12
CHANGELOG.md
@ -39,6 +39,18 @@ Bottom level categories:
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### Major Changes
|
||||||
|
|
||||||
|
#### Vendored WebGPU Bindings from `web_sys`
|
||||||
|
|
||||||
|
**`--cfg=web_sys_unstable_apis` is no longer needed in your `RUSTFLAGS` to compile for WebGPU!!!**
|
||||||
|
|
||||||
|
While WebGPU's javascript api is stable in the browsers, the `web_sys` bindings for WebGPU are still improving. As such they are hidden behind the special cfg `--cfg=web_sys_unstable_apis` and are not available by default. Everyone who wanted to use our WebGPU backend needed to enable this cfg in their `RUSTFLAGS`. This was very inconvenient and made it hard to use WebGPU, especially when WebGPU is enabled by default. Additionally, the unstable APIs don't adhere to semver, so there were repeated breakages.
|
||||||
|
|
||||||
|
To combat this problem we have decided to vendor the `web_sys` bindings for WebGPU within the crate. Notably we are not forking the bindings, merely vendoring, so any improvements we make to the bindings will be contributed directly to upstream `web_sys`.
|
||||||
|
|
||||||
|
By @cwfitzgerald in [#5325](https://github.com/gfx-rs/wgpu/pull/5325).
|
||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
|
||||||
- Document Wayland specific behavior related to `SurfaceTexture::present`. By @i509VCB in [#5092](https://github.com/gfx-rs/wgpu/pull/5092).
|
- Document Wayland specific behavior related to `SurfaceTexture::present`. By @i509VCB in [#5092](https://github.com/gfx-rs/wgpu/pull/5092).
|
||||||
|
123
wgpu/Cargo.toml
123
wgpu/Cargo.toml
@ -13,7 +13,7 @@ exclude = ["Cargo.lock"]
|
|||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
rustdoc-args = ["--cfg", "docsrs", "--cfg", "web_sys_unstable_apis"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
targets = [
|
targets = [
|
||||||
"x86_64-unknown-linux-gnu",
|
"x86_64-unknown-linux-gnu",
|
||||||
"x86_64-apple-darwin",
|
"x86_64-apple-darwin",
|
||||||
@ -194,124 +194,6 @@ web-sys = { workspace = true, features = [
|
|||||||
"Navigator",
|
"Navigator",
|
||||||
"Node",
|
"Node",
|
||||||
"NodeList",
|
"NodeList",
|
||||||
"Gpu",
|
|
||||||
"GpuAdapter",
|
|
||||||
"GpuAddressMode",
|
|
||||||
"GpuAutoLayoutMode",
|
|
||||||
"GpuBindGroup",
|
|
||||||
"GpuBindGroupDescriptor",
|
|
||||||
"GpuBindGroupEntry",
|
|
||||||
"GpuBindGroupLayout",
|
|
||||||
"GpuBindGroupLayoutDescriptor",
|
|
||||||
"GpuBindGroupLayoutEntry",
|
|
||||||
"GpuBlendComponent",
|
|
||||||
"GpuBlendFactor",
|
|
||||||
"GpuBlendOperation",
|
|
||||||
"GpuBlendState",
|
|
||||||
"GpuBuffer",
|
|
||||||
"GpuBufferBinding",
|
|
||||||
"GpuBufferBindingLayout",
|
|
||||||
"GpuBufferBindingType",
|
|
||||||
"GpuBufferDescriptor",
|
|
||||||
"GpuCanvasAlphaMode",
|
|
||||||
"GpuCanvasContext",
|
|
||||||
"GpuCanvasConfiguration",
|
|
||||||
"GpuColorDict",
|
|
||||||
"GpuColorTargetState",
|
|
||||||
"GpuCommandBuffer",
|
|
||||||
"GpuCommandBufferDescriptor",
|
|
||||||
"GpuCommandEncoder",
|
|
||||||
"GpuCommandEncoderDescriptor",
|
|
||||||
"GpuCompareFunction",
|
|
||||||
"GpuCompilationInfo",
|
|
||||||
"GpuCompilationMessage",
|
|
||||||
"GpuCompilationMessageType",
|
|
||||||
"GpuComputePassDescriptor",
|
|
||||||
"GpuComputePassEncoder",
|
|
||||||
"GpuComputePassTimestampWrites",
|
|
||||||
"GpuComputePipeline",
|
|
||||||
"GpuComputePipelineDescriptor",
|
|
||||||
"GpuCullMode",
|
|
||||||
"GpuDepthStencilState",
|
|
||||||
"GpuDevice",
|
|
||||||
"GpuDeviceDescriptor",
|
|
||||||
"GpuDeviceLostInfo",
|
|
||||||
"GpuDeviceLostReason",
|
|
||||||
"GpuError",
|
|
||||||
"GpuErrorFilter",
|
|
||||||
# "GpuExtent2dDict", Not yet implemented in web_sys
|
|
||||||
"GpuExtent3dDict",
|
|
||||||
"GpuFeatureName",
|
|
||||||
"GpuFilterMode",
|
|
||||||
"GpuFragmentState",
|
|
||||||
"GpuFrontFace",
|
|
||||||
"GpuImageCopyBuffer",
|
|
||||||
"GpuImageCopyExternalImage",
|
|
||||||
"GpuImageCopyTexture",
|
|
||||||
"GpuImageCopyTextureTagged",
|
|
||||||
"GpuImageDataLayout",
|
|
||||||
"GpuIndexFormat",
|
|
||||||
"GpuLoadOp",
|
|
||||||
"gpu_map_mode",
|
|
||||||
"GpuMipmapFilterMode",
|
|
||||||
"GpuMultisampleState",
|
|
||||||
"GpuObjectDescriptorBase",
|
|
||||||
"GpuOrigin2dDict",
|
|
||||||
"GpuOrigin3dDict",
|
|
||||||
"GpuOutOfMemoryError",
|
|
||||||
"GpuPipelineDescriptorBase",
|
|
||||||
"GpuPipelineLayout",
|
|
||||||
"GpuPipelineLayoutDescriptor",
|
|
||||||
"GpuPowerPreference",
|
|
||||||
"GpuPrimitiveState",
|
|
||||||
"GpuPrimitiveTopology",
|
|
||||||
"GpuProgrammableStage",
|
|
||||||
"GpuQuerySet",
|
|
||||||
"GpuQuerySetDescriptor",
|
|
||||||
"GpuQueryType",
|
|
||||||
"GpuQueue",
|
|
||||||
"GpuRenderBundle",
|
|
||||||
"GpuRenderBundleDescriptor",
|
|
||||||
"GpuRenderBundleEncoder",
|
|
||||||
"GpuRenderBundleEncoderDescriptor",
|
|
||||||
"GpuRenderPassColorAttachment",
|
|
||||||
"GpuRenderPassDepthStencilAttachment",
|
|
||||||
"GpuRenderPassDescriptor",
|
|
||||||
"GpuRenderPassEncoder",
|
|
||||||
"GpuRenderPipeline",
|
|
||||||
"GpuRenderPipelineDescriptor",
|
|
||||||
"GpuRequestAdapterOptions",
|
|
||||||
"GpuSampler",
|
|
||||||
"GpuSamplerBindingLayout",
|
|
||||||
"GpuSamplerBindingType",
|
|
||||||
"GpuSamplerDescriptor",
|
|
||||||
"GpuShaderModule",
|
|
||||||
"GpuShaderModuleDescriptor",
|
|
||||||
"GpuStencilFaceState",
|
|
||||||
"GpuStencilOperation",
|
|
||||||
"GpuStorageTextureAccess",
|
|
||||||
"GpuStorageTextureBindingLayout",
|
|
||||||
"GpuStoreOp",
|
|
||||||
"GpuSupportedFeatures",
|
|
||||||
"GpuSupportedLimits",
|
|
||||||
"GpuTexture",
|
|
||||||
"GpuTextureAspect",
|
|
||||||
"GpuTextureBindingLayout",
|
|
||||||
"GpuTextureDescriptor",
|
|
||||||
"GpuTextureDimension",
|
|
||||||
"GpuTextureFormat",
|
|
||||||
"GpuTextureSampleType",
|
|
||||||
"GpuTextureView",
|
|
||||||
"GpuTextureViewDescriptor",
|
|
||||||
"GpuTextureViewDimension",
|
|
||||||
"GpuUncapturedErrorEvent",
|
|
||||||
"GpuUncapturedErrorEventInit",
|
|
||||||
"GpuValidationError",
|
|
||||||
"GpuVertexAttribute",
|
|
||||||
"GpuVertexBufferLayout",
|
|
||||||
"GpuVertexFormat",
|
|
||||||
"GpuVertexState",
|
|
||||||
"GpuVertexStepMode",
|
|
||||||
"HtmlCanvasElement",
|
"HtmlCanvasElement",
|
||||||
"OffscreenCanvas",
|
"OffscreenCanvas",
|
||||||
"ImageBitmap",
|
"ImageBitmap",
|
||||||
@ -319,6 +201,9 @@ web-sys = { workspace = true, features = [
|
|||||||
"Window",
|
"Window",
|
||||||
"WorkerGlobalScope",
|
"WorkerGlobalScope",
|
||||||
"WorkerNavigator",
|
"WorkerNavigator",
|
||||||
|
# Needed by webgpu_sys
|
||||||
|
"Event",
|
||||||
|
"EventTarget",
|
||||||
] }
|
] }
|
||||||
wasm-bindgen.workspace = true
|
wasm-bindgen.workspace = true
|
||||||
js-sys.workspace = true
|
js-sys.workspace = true
|
||||||
|
@ -1,21 +1,8 @@
|
|||||||
#[cfg(all(webgpu, web_sys_unstable_apis))]
|
#[cfg(webgpu)]
|
||||||
mod webgpu;
|
mod webgpu;
|
||||||
#[cfg(all(webgpu, web_sys_unstable_apis))]
|
#[cfg(webgpu)]
|
||||||
pub(crate) use webgpu::{get_browser_gpu_property, ContextWebGpu};
|
pub(crate) use webgpu::{get_browser_gpu_property, ContextWebGpu};
|
||||||
|
|
||||||
#[cfg(all(webgpu, not(web_sys_unstable_apis)))]
|
|
||||||
compile_error!(
|
|
||||||
"webgpu feature used without web_sys_unstable_apis config:
|
|
||||||
Here are some ways to resolve this:
|
|
||||||
* If you wish to use webgpu backend, create a .cargo/config.toml in the root of the repo containing:
|
|
||||||
[build]
|
|
||||||
rustflags = [ \"--cfg=web_sys_unstable_apis\" ]
|
|
||||||
rustdocflags = [ \"--cfg=web_sys_unstable_apis\" ]
|
|
||||||
* If you wish to disable webgpu backend and instead use webgl backend, change your wgpu Cargo.toml entry to:
|
|
||||||
wgpu = { version = \"\", default-features = false, features = [\"webgl\"] }
|
|
||||||
"
|
|
||||||
);
|
|
||||||
|
|
||||||
#[cfg(wgpu_core)]
|
#[cfg(wgpu_core)]
|
||||||
mod wgpu_core;
|
mod wgpu_core;
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
45
wgpu/src/backend/webgpu/ext_bindings.rs
Normal file
45
wgpu/src/backend/webgpu/ext_bindings.rs
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
//! Extension bindings for WebGPU.
|
||||||
|
//!
|
||||||
|
//! These contain ideomatic Rust extension traits for various parts of the WebGPU
|
||||||
|
//! bindings that are missing, need to be improved, or otherwise need to be different
|
||||||
|
//! from the generated web_sys bindings.
|
||||||
|
|
||||||
|
use crate::backend::webgpu::webgpu_sys;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
/// Extension trait for [`web_sys::Navigator`] and [`web_sys::WorkerNavigator`] to
|
||||||
|
/// access the `gpu` property.
|
||||||
|
pub trait NavigatorGpu {
|
||||||
|
/// Get the `gpu` property.
|
||||||
|
///
|
||||||
|
/// This is intentionally a free function, to prevent overload conflicts with
|
||||||
|
/// the method if it is enabled in web-sys itself.
|
||||||
|
fn gpu(navigator: &Self) -> webgpu_sys::Gpu;
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Bindings for `Navigator` ---
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
/// Create a fake class which we tell wasm-bindgen has access to the `gpu` property.
|
||||||
|
#[wasm_bindgen]
|
||||||
|
type NavigatorWithGpu;
|
||||||
|
|
||||||
|
#[wasm_bindgen(method, getter)]
|
||||||
|
fn gpu(ext: &NavigatorWithGpu) -> webgpu_sys::Gpu;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl NavigatorGpu for web_sys::Navigator {
|
||||||
|
fn gpu(navigator: &Self) -> webgpu_sys::Gpu {
|
||||||
|
// Must be an unchecked ref as this class does not exist at runtime.
|
||||||
|
let extension: &NavigatorWithGpu = navigator.unchecked_ref();
|
||||||
|
extension.gpu()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl NavigatorGpu for web_sys::WorkerNavigator {
|
||||||
|
fn gpu(navigator: &Self) -> webgpu_sys::Gpu {
|
||||||
|
// Must be an unchecked ref as this class does not exist at runtime.
|
||||||
|
let extension: &NavigatorWithGpu = navigator.unchecked_ref();
|
||||||
|
extension.gpu()
|
||||||
|
}
|
||||||
|
}
|
73
wgpu/src/backend/webgpu/webgpu_sys/gen_Gpu.rs
generated
Normal file
73
wgpu/src/backend/webgpu/webgpu_sys/gen_Gpu.rs
generated
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPU , typescript_type = "GPU")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `Gpu` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPU)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `Gpu`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type Gpu;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPU" , js_name = wgslLanguageFeatures)]
|
||||||
|
#[doc = "Getter for the `wgslLanguageFeatures` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPU/wgslLanguageFeatures)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `Gpu`, `WgslLanguageFeatures`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn wgsl_language_features(this: &Gpu) -> WgslLanguageFeatures;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPU" , js_name = getPreferredCanvasFormat)]
|
||||||
|
#[doc = "The `getPreferredCanvasFormat()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPU/getPreferredCanvasFormat)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `Gpu`, `GpuTextureFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_preferred_canvas_format(this: &Gpu) -> GpuTextureFormat;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPU" , js_name = requestAdapter)]
|
||||||
|
#[doc = "The `requestAdapter()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPU/requestAdapter)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `Gpu`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn request_adapter(this: &Gpu) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPU" , js_name = requestAdapter)]
|
||||||
|
#[doc = "The `requestAdapter()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPU/requestAdapter)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `Gpu`, `GpuRequestAdapterOptions`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn request_adapter_with_options(
|
||||||
|
this: &Gpu,
|
||||||
|
options: &GpuRequestAdapterOptions,
|
||||||
|
) -> ::js_sys::Promise;
|
||||||
|
}
|
95
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuAdapter.rs
generated
Normal file
95
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuAdapter.rs
generated
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUAdapter , typescript_type = "GPUAdapter")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuAdapter` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAdapter`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuAdapter;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUAdapter" , js_name = features)]
|
||||||
|
#[doc = "Getter for the `features` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/features)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAdapter`, `GpuSupportedFeatures`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn features(this: &GpuAdapter) -> GpuSupportedFeatures;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUAdapter" , js_name = limits)]
|
||||||
|
#[doc = "Getter for the `limits` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/limits)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAdapter`, `GpuSupportedLimits`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn limits(this: &GpuAdapter) -> GpuSupportedLimits;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUAdapter" , js_name = isFallbackAdapter)]
|
||||||
|
#[doc = "Getter for the `isFallbackAdapter` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/isFallbackAdapter)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAdapter`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn is_fallback_adapter(this: &GpuAdapter) -> bool;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUAdapter" , js_name = requestAdapterInfo)]
|
||||||
|
#[doc = "The `requestAdapterInfo()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/requestAdapterInfo)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAdapter`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn request_adapter_info(this: &GpuAdapter) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUAdapter" , js_name = requestDevice)]
|
||||||
|
#[doc = "The `requestDevice()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/requestDevice)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAdapter`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn request_device(this: &GpuAdapter) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUAdapter" , js_name = requestDevice)]
|
||||||
|
#[doc = "The `requestDevice()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUAdapter/requestDevice)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAdapter`, `GpuDeviceDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn request_device_with_descriptor(
|
||||||
|
this: &GpuAdapter,
|
||||||
|
descriptor: &GpuDeviceDescriptor,
|
||||||
|
) -> ::js_sys::Promise;
|
||||||
|
}
|
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuAddressMode.rs
generated
Normal file
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuAddressMode.rs
generated
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuAddressMode` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAddressMode`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuAddressMode {
|
||||||
|
ClampToEdge = "clamp-to-edge",
|
||||||
|
Repeat = "repeat",
|
||||||
|
MirrorRepeat = "mirror-repeat",
|
||||||
|
}
|
22
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuAutoLayoutMode.rs
generated
Normal file
22
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuAutoLayoutMode.rs
generated
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuAutoLayoutMode` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuAutoLayoutMode`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuAutoLayoutMode {
|
||||||
|
Auto = "auto",
|
||||||
|
}
|
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroup.rs
generated
Normal file
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroup.rs
generated
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBindGroup , typescript_type = "GPUBindGroup")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBindGroup` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBindGroup;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUBindGroup" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroup/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuBindGroup) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUBindGroup" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroup/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuBindGroup, value: &str);
|
||||||
|
}
|
96
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupDescriptor.rs
generated
Normal file
96
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupDescriptor.rs
generated
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBindGroupDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBindGroupDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBindGroupDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBindGroupDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuBindGroupDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupDescriptor`, `GpuBindGroupLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(entries: &::wasm_bindgen::JsValue, layout: &GpuBindGroupLayout) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.entries(entries);
|
||||||
|
ret.layout(layout);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `entries` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn entries(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("entries"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `layout` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupDescriptor`, `GpuBindGroupLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn layout(&mut self, val: &GpuBindGroupLayout) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("layout"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
82
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupEntry.rs
generated
Normal file
82
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupEntry.rs
generated
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBindGroupEntry)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBindGroupEntry` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupEntry`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBindGroupEntry;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBindGroupEntry {
|
||||||
|
#[doc = "Construct a new `GpuBindGroupEntry`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupEntry`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(binding: u32, resource: &::wasm_bindgen::JsValue) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.binding(binding);
|
||||||
|
ret.resource(resource);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `binding` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupEntry`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn binding(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("binding"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `resource` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupEntry`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn resource(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("resource"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupLayout.rs
generated
Normal file
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupLayout.rs
generated
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBindGroupLayout , typescript_type = "GPUBindGroupLayout")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBindGroupLayout` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroupLayout)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBindGroupLayout;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUBindGroupLayout" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroupLayout/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuBindGroupLayout) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUBindGroupLayout" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBindGroupLayout/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuBindGroupLayout, value: &str);
|
||||||
|
}
|
77
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupLayoutDescriptor.rs
generated
Normal file
77
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupLayoutDescriptor.rs
generated
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBindGroupLayoutDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBindGroupLayoutDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBindGroupLayoutDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBindGroupLayoutDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuBindGroupLayoutDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(entries: &::wasm_bindgen::JsValue) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.entries(entries);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `entries` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn entries(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("entries"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
184
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupLayoutEntry.rs
generated
Normal file
184
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBindGroupLayoutEntry.rs
generated
Normal file
@ -0,0 +1,184 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBindGroupLayoutEntry)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBindGroupLayoutEntry` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBindGroupLayoutEntry;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBindGroupLayoutEntry {
|
||||||
|
#[doc = "Construct a new `GpuBindGroupLayoutEntry`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(binding: u32, visibility: u32) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.binding(binding);
|
||||||
|
ret.visibility(visibility);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `binding` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn binding(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("binding"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `buffer` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`, `GpuBufferBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn buffer(&mut self, val: &GpuBufferBindingLayout) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("buffer"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `externalTexture` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`, `GpuExternalTextureBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn external_texture(&mut self, val: &GpuExternalTextureBindingLayout) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("externalTexture"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `sampler` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`, `GpuSamplerBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn sampler(&mut self, val: &GpuSamplerBindingLayout) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("sampler"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `storageTexture` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`, `GpuStorageTextureBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn storage_texture(&mut self, val: &GpuStorageTextureBindingLayout) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("storageTexture"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `texture` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`, `GpuTextureBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn texture(&mut self, val: &GpuTextureBindingLayout) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("texture"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `visibility` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayoutEntry`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn visibility(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("visibility"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
107
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBlendComponent.rs
generated
Normal file
107
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBlendComponent.rs
generated
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBlendComponent)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBlendComponent` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendComponent`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBlendComponent;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBlendComponent {
|
||||||
|
#[doc = "Construct a new `GpuBlendComponent`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendComponent`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `dstFactor` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendComponent`, `GpuBlendFactor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn dst_factor(&mut self, val: GpuBlendFactor) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("dstFactor"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `operation` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendComponent`, `GpuBlendOperation`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn operation(&mut self, val: GpuBlendOperation) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("operation"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `srcFactor` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendComponent`, `GpuBlendFactor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn src_factor(&mut self, val: GpuBlendFactor) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("srcFactor"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuBlendComponent {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
34
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBlendFactor.rs
generated
Normal file
34
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBlendFactor.rs
generated
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuBlendFactor` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendFactor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuBlendFactor {
|
||||||
|
Zero = "zero",
|
||||||
|
One = "one",
|
||||||
|
Src = "src",
|
||||||
|
OneMinusSrc = "one-minus-src",
|
||||||
|
SrcAlpha = "src-alpha",
|
||||||
|
OneMinusSrcAlpha = "one-minus-src-alpha",
|
||||||
|
Dst = "dst",
|
||||||
|
OneMinusDst = "one-minus-dst",
|
||||||
|
DstAlpha = "dst-alpha",
|
||||||
|
OneMinusDstAlpha = "one-minus-dst-alpha",
|
||||||
|
SrcAlphaSaturated = "src-alpha-saturated",
|
||||||
|
Constant = "constant",
|
||||||
|
OneMinusConstant = "one-minus-constant",
|
||||||
|
}
|
26
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBlendOperation.rs
generated
Normal file
26
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBlendOperation.rs
generated
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuBlendOperation` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendOperation`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuBlendOperation {
|
||||||
|
Add = "add",
|
||||||
|
Subtract = "subtract",
|
||||||
|
ReverseSubtract = "reverse-subtract",
|
||||||
|
Min = "min",
|
||||||
|
Max = "max",
|
||||||
|
}
|
74
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBlendState.rs
generated
Normal file
74
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBlendState.rs
generated
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBlendState)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBlendState` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBlendState;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBlendState {
|
||||||
|
#[doc = "Construct a new `GpuBlendState`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendComponent`, `GpuBlendState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(alpha: &GpuBlendComponent, color: &GpuBlendComponent) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.alpha(alpha);
|
||||||
|
ret.color(color);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `alpha` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendComponent`, `GpuBlendState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn alpha(&mut self, val: &GpuBlendComponent) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("alpha"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `color` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendComponent`, `GpuBlendState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn color(&mut self, val: &GpuBlendComponent) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("color"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
293
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBuffer.rs
generated
Normal file
293
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBuffer.rs
generated
Normal file
@ -0,0 +1,293 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBuffer , typescript_type = "GPUBuffer")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBuffer` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUBuffer" , js_name = size)]
|
||||||
|
#[doc = "Getter for the `size` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/size)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn size(this: &GpuBuffer) -> f64;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUBuffer" , js_name = usage)]
|
||||||
|
#[doc = "Getter for the `usage` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/usage)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn usage(this: &GpuBuffer) -> u32;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUBuffer" , js_name = mapState)]
|
||||||
|
#[doc = "Getter for the `mapState` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapState)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuBufferMapState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn map_state(this: &GpuBuffer) -> GpuBufferMapState;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUBuffer" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuBuffer) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUBuffer" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuBuffer, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = destroy)]
|
||||||
|
#[doc = "The `destroy()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/destroy)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn destroy(this: &GpuBuffer);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = getMappedRange)]
|
||||||
|
#[doc = "The `getMappedRange()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/getMappedRange)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_mapped_range(this: &GpuBuffer) -> ::js_sys::ArrayBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = getMappedRange)]
|
||||||
|
#[doc = "The `getMappedRange()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/getMappedRange)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_mapped_range_with_u32(this: &GpuBuffer, offset: u32) -> ::js_sys::ArrayBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = getMappedRange)]
|
||||||
|
#[doc = "The `getMappedRange()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/getMappedRange)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_mapped_range_with_f64(this: &GpuBuffer, offset: f64) -> ::js_sys::ArrayBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = getMappedRange)]
|
||||||
|
#[doc = "The `getMappedRange()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/getMappedRange)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_mapped_range_with_u32_and_u32(
|
||||||
|
this: &GpuBuffer,
|
||||||
|
offset: u32,
|
||||||
|
size: u32,
|
||||||
|
) -> ::js_sys::ArrayBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = getMappedRange)]
|
||||||
|
#[doc = "The `getMappedRange()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/getMappedRange)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_mapped_range_with_f64_and_u32(
|
||||||
|
this: &GpuBuffer,
|
||||||
|
offset: f64,
|
||||||
|
size: u32,
|
||||||
|
) -> ::js_sys::ArrayBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = getMappedRange)]
|
||||||
|
#[doc = "The `getMappedRange()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/getMappedRange)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_mapped_range_with_u32_and_f64(
|
||||||
|
this: &GpuBuffer,
|
||||||
|
offset: u32,
|
||||||
|
size: f64,
|
||||||
|
) -> ::js_sys::ArrayBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = getMappedRange)]
|
||||||
|
#[doc = "The `getMappedRange()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/getMappedRange)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_mapped_range_with_f64_and_f64(
|
||||||
|
this: &GpuBuffer,
|
||||||
|
offset: f64,
|
||||||
|
size: f64,
|
||||||
|
) -> ::js_sys::ArrayBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = mapAsync)]
|
||||||
|
#[doc = "The `mapAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn map_async(this: &GpuBuffer, mode: u32) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = mapAsync)]
|
||||||
|
#[doc = "The `mapAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn map_async_with_u32(this: &GpuBuffer, mode: u32, offset: u32) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = mapAsync)]
|
||||||
|
#[doc = "The `mapAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn map_async_with_f64(this: &GpuBuffer, mode: u32, offset: f64) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = mapAsync)]
|
||||||
|
#[doc = "The `mapAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn map_async_with_u32_and_u32(
|
||||||
|
this: &GpuBuffer,
|
||||||
|
mode: u32,
|
||||||
|
offset: u32,
|
||||||
|
size: u32,
|
||||||
|
) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = mapAsync)]
|
||||||
|
#[doc = "The `mapAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn map_async_with_f64_and_u32(
|
||||||
|
this: &GpuBuffer,
|
||||||
|
mode: u32,
|
||||||
|
offset: f64,
|
||||||
|
size: u32,
|
||||||
|
) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = mapAsync)]
|
||||||
|
#[doc = "The `mapAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn map_async_with_u32_and_f64(
|
||||||
|
this: &GpuBuffer,
|
||||||
|
mode: u32,
|
||||||
|
offset: u32,
|
||||||
|
size: f64,
|
||||||
|
) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = mapAsync)]
|
||||||
|
#[doc = "The `mapAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/mapAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn map_async_with_f64_and_f64(
|
||||||
|
this: &GpuBuffer,
|
||||||
|
mode: u32,
|
||||||
|
offset: f64,
|
||||||
|
size: f64,
|
||||||
|
) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUBuffer" , js_name = unmap)]
|
||||||
|
#[doc = "The `unmap()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUBuffer/unmap)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn unmap(this: &GpuBuffer);
|
||||||
|
}
|
92
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferBinding.rs
generated
Normal file
92
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferBinding.rs
generated
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBufferBinding)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBufferBinding` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBinding`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBufferBinding;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBufferBinding {
|
||||||
|
#[doc = "Construct a new `GpuBufferBinding`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuBufferBinding`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(buffer: &GpuBuffer) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.buffer(buffer);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `buffer` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuBufferBinding`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn buffer(&mut self, val: &GpuBuffer) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("buffer"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `offset` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBinding`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn offset(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("offset"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `size` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBinding`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn size(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("size"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
103
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferBindingLayout.rs
generated
Normal file
103
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferBindingLayout.rs
generated
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBufferBindingLayout)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBufferBindingLayout` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBufferBindingLayout;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBufferBindingLayout {
|
||||||
|
#[doc = "Construct a new `GpuBufferBindingLayout`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `hasDynamicOffset` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn has_dynamic_offset(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("hasDynamicOffset"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `minBindingSize` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn min_binding_size(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("minBindingSize"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `type` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBindingLayout`, `GpuBufferBindingType`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn type_(&mut self, val: GpuBufferBindingType) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("type"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuBufferBindingLayout {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferBindingType.rs
generated
Normal file
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferBindingType.rs
generated
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuBufferBindingType` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferBindingType`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuBufferBindingType {
|
||||||
|
Uniform = "uniform",
|
||||||
|
Storage = "storage",
|
||||||
|
ReadOnlyStorage = "read-only-storage",
|
||||||
|
}
|
112
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferDescriptor.rs
generated
Normal file
112
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferDescriptor.rs
generated
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUBufferDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuBufferDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuBufferDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuBufferDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuBufferDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(size: f64, usage: u32) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.size(size);
|
||||||
|
ret.usage(usage);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `mappedAtCreation` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn mapped_at_creation(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("mappedAtCreation"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `size` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn size(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("size"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `usage` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn usage(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("usage"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferMapState.rs
generated
Normal file
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuBufferMapState.rs
generated
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuBufferMapState` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBufferMapState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuBufferMapState {
|
||||||
|
Unmapped = "unmapped",
|
||||||
|
Pending = "pending",
|
||||||
|
Mapped = "mapped",
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCanvasAlphaMode.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCanvasAlphaMode.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuCanvasAlphaMode` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasAlphaMode`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuCanvasAlphaMode {
|
||||||
|
Opaque = "opaque",
|
||||||
|
Premultiplied = "premultiplied",
|
||||||
|
}
|
135
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCanvasConfiguration.rs
generated
Normal file
135
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCanvasConfiguration.rs
generated
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUCanvasConfiguration)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuCanvasConfiguration` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasConfiguration`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuCanvasConfiguration;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuCanvasConfiguration {
|
||||||
|
#[doc = "Construct a new `GpuCanvasConfiguration`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasConfiguration`, `GpuDevice`, `GpuTextureFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(device: &GpuDevice, format: GpuTextureFormat) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.device(device);
|
||||||
|
ret.format(format);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `alphaMode` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasAlphaMode`, `GpuCanvasConfiguration`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn alpha_mode(&mut self, val: GpuCanvasAlphaMode) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("alphaMode"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `device` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasConfiguration`, `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn device(&mut self, val: &GpuDevice) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("device"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `format` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasConfiguration`, `GpuTextureFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn format(&mut self, val: GpuTextureFormat) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("format"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `usage` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasConfiguration`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn usage(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("usage"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `viewFormats` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasConfiguration`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn view_formats(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("viewFormats"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
70
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCanvasContext.rs
generated
Normal file
70
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCanvasContext.rs
generated
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUCanvasContext , typescript_type = "GPUCanvasContext")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuCanvasContext` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasContext`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuCanvasContext;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCanvasContext" , js_name = canvas)]
|
||||||
|
#[doc = "Getter for the `canvas` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext/canvas)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasContext`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn canvas(this: &GpuCanvasContext) -> ::js_sys::Object;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCanvasContext" , js_name = configure)]
|
||||||
|
#[doc = "The `configure()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext/configure)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasConfiguration`, `GpuCanvasContext`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn configure(this: &GpuCanvasContext, configuration: &GpuCanvasConfiguration);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCanvasContext" , js_name = getCurrentTexture)]
|
||||||
|
#[doc = "The `getCurrentTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext/getCurrentTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasContext`, `GpuTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_current_texture(this: &GpuCanvasContext) -> GpuTexture;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCanvasContext" , js_name = unconfigure)]
|
||||||
|
#[doc = "The `unconfigure()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCanvasContext/unconfigure)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCanvasContext`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn unconfigure(this: &GpuCanvasContext);
|
||||||
|
}
|
110
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuColorDict.rs
generated
Normal file
110
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuColorDict.rs
generated
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUColorDict)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuColorDict` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuColorDict;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuColorDict {
|
||||||
|
#[doc = "Construct a new `GpuColorDict`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(a: f64, b: f64, g: f64, r: f64) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.a(a);
|
||||||
|
ret.b(b);
|
||||||
|
ret.g(g);
|
||||||
|
ret.r(r);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `a` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn a(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("a"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `b` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn b(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("b"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `g` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn g(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("g"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `r` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn r(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("r"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
95
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuColorTargetState.rs
generated
Normal file
95
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuColorTargetState.rs
generated
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUColorTargetState)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuColorTargetState` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorTargetState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuColorTargetState;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuColorTargetState {
|
||||||
|
#[doc = "Construct a new `GpuColorTargetState`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorTargetState`, `GpuTextureFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(format: GpuTextureFormat) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.format(format);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `blend` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBlendState`, `GpuColorTargetState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn blend(&mut self, val: &GpuBlendState) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("blend"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `format` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorTargetState`, `GpuTextureFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn format(&mut self, val: GpuTextureFormat) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("format"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `writeMask` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorTargetState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_mask(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("writeMask"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCommandBuffer.rs
generated
Normal file
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCommandBuffer.rs
generated
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUCommandBuffer , typescript_type = "GPUCommandBuffer")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuCommandBuffer` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuCommandBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCommandBuffer" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandBuffer/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuCommandBuffer) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUCommandBuffer" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandBuffer/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuCommandBuffer, value: &str);
|
||||||
|
}
|
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCommandBufferDescriptor.rs
generated
Normal file
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCommandBufferDescriptor.rs
generated
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUCommandBufferDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuCommandBufferDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuCommandBufferDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuCommandBufferDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuCommandBufferDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandBufferDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuCommandBufferDescriptor {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
518
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCommandEncoder.rs
generated
Normal file
518
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCommandEncoder.rs
generated
Normal file
@ -0,0 +1,518 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUCommandEncoder , typescript_type = "GPUCommandEncoder")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuCommandEncoder` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuCommandEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCommandEncoder" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuCommandEncoder) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUCommandEncoder" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuCommandEncoder, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = beginComputePass)]
|
||||||
|
#[doc = "The `beginComputePass()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/beginComputePass)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn begin_compute_pass(this: &GpuCommandEncoder) -> GpuComputePassEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = beginComputePass)]
|
||||||
|
#[doc = "The `beginComputePass()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/beginComputePass)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuComputePassDescriptor`, `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn begin_compute_pass_with_descriptor(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
descriptor: &GpuComputePassDescriptor,
|
||||||
|
) -> GpuComputePassEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = beginRenderPass)]
|
||||||
|
#[doc = "The `beginRenderPass()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/beginRenderPass)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuRenderPassDescriptor`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn begin_render_pass(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
descriptor: &GpuRenderPassDescriptor,
|
||||||
|
) -> GpuRenderPassEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = clearBuffer)]
|
||||||
|
#[doc = "The `clearBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/clearBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn clear_buffer(this: &GpuCommandEncoder, buffer: &GpuBuffer);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = clearBuffer)]
|
||||||
|
#[doc = "The `clearBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/clearBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn clear_buffer_with_u32(this: &GpuCommandEncoder, buffer: &GpuBuffer, offset: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = clearBuffer)]
|
||||||
|
#[doc = "The `clearBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/clearBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn clear_buffer_with_f64(this: &GpuCommandEncoder, buffer: &GpuBuffer, offset: f64);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = clearBuffer)]
|
||||||
|
#[doc = "The `clearBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/clearBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn clear_buffer_with_u32_and_u32(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = clearBuffer)]
|
||||||
|
#[doc = "The `clearBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/clearBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn clear_buffer_with_f64_and_u32(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = clearBuffer)]
|
||||||
|
#[doc = "The `clearBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/clearBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn clear_buffer_with_u32_and_f64(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = clearBuffer)]
|
||||||
|
#[doc = "The `clearBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/clearBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn clear_buffer_with_f64_and_f64(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToBuffer)]
|
||||||
|
#[doc = "The `copyBufferToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_buffer_with_u32_and_u32_and_u32(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuBuffer,
|
||||||
|
source_offset: u32,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToBuffer)]
|
||||||
|
#[doc = "The `copyBufferToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_buffer_with_f64_and_u32_and_u32(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuBuffer,
|
||||||
|
source_offset: f64,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToBuffer)]
|
||||||
|
#[doc = "The `copyBufferToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_buffer_with_u32_and_f64_and_u32(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuBuffer,
|
||||||
|
source_offset: u32,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToBuffer)]
|
||||||
|
#[doc = "The `copyBufferToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_buffer_with_f64_and_f64_and_u32(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuBuffer,
|
||||||
|
source_offset: f64,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToBuffer)]
|
||||||
|
#[doc = "The `copyBufferToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_buffer_with_u32_and_u32_and_f64(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuBuffer,
|
||||||
|
source_offset: u32,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToBuffer)]
|
||||||
|
#[doc = "The `copyBufferToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_buffer_with_f64_and_u32_and_f64(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuBuffer,
|
||||||
|
source_offset: f64,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToBuffer)]
|
||||||
|
#[doc = "The `copyBufferToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_buffer_with_u32_and_f64_and_f64(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuBuffer,
|
||||||
|
source_offset: u32,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToBuffer)]
|
||||||
|
#[doc = "The `copyBufferToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_buffer_with_f64_and_f64_and_f64(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuBuffer,
|
||||||
|
source_offset: f64,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToTexture)]
|
||||||
|
#[doc = "The `copyBufferToTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuImageCopyBuffer`, `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_texture_with_u32_sequence(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuImageCopyBuffer,
|
||||||
|
destination: &GpuImageCopyTexture,
|
||||||
|
copy_size: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyBufferToTexture)]
|
||||||
|
#[doc = "The `copyBufferToTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyBufferToTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuExtent3dDict`, `GpuImageCopyBuffer`, `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_buffer_to_texture_with_gpu_extent_3d_dict(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuImageCopyBuffer,
|
||||||
|
destination: &GpuImageCopyTexture,
|
||||||
|
copy_size: &GpuExtent3dDict,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyTextureToBuffer)]
|
||||||
|
#[doc = "The `copyTextureToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyTextureToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuImageCopyBuffer`, `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_texture_to_buffer_with_u32_sequence(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuImageCopyTexture,
|
||||||
|
destination: &GpuImageCopyBuffer,
|
||||||
|
copy_size: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyTextureToBuffer)]
|
||||||
|
#[doc = "The `copyTextureToBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyTextureToBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuExtent3dDict`, `GpuImageCopyBuffer`, `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_texture_to_buffer_with_gpu_extent_3d_dict(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuImageCopyTexture,
|
||||||
|
destination: &GpuImageCopyBuffer,
|
||||||
|
copy_size: &GpuExtent3dDict,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyTextureToTexture)]
|
||||||
|
#[doc = "The `copyTextureToTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyTextureToTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_texture_to_texture_with_u32_sequence(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuImageCopyTexture,
|
||||||
|
destination: &GpuImageCopyTexture,
|
||||||
|
copy_size: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = copyTextureToTexture)]
|
||||||
|
#[doc = "The `copyTextureToTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/copyTextureToTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuExtent3dDict`, `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_texture_to_texture_with_gpu_extent_3d_dict(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
source: &GpuImageCopyTexture,
|
||||||
|
destination: &GpuImageCopyTexture,
|
||||||
|
copy_size: &GpuExtent3dDict,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = finish)]
|
||||||
|
#[doc = "The `finish()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/finish)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandBuffer`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn finish(this: &GpuCommandEncoder) -> GpuCommandBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = finish)]
|
||||||
|
#[doc = "The `finish()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/finish)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandBuffer`, `GpuCommandBufferDescriptor`, `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn finish_with_descriptor(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
descriptor: &GpuCommandBufferDescriptor,
|
||||||
|
) -> GpuCommandBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = resolveQuerySet)]
|
||||||
|
#[doc = "The `resolveQuerySet()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/resolveQuerySet)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`, `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn resolve_query_set_with_u32(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
query_set: &GpuQuerySet,
|
||||||
|
first_query: u32,
|
||||||
|
query_count: u32,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = resolveQuerySet)]
|
||||||
|
#[doc = "The `resolveQuerySet()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/resolveQuerySet)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuCommandEncoder`, `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn resolve_query_set_with_f64(
|
||||||
|
this: &GpuCommandEncoder,
|
||||||
|
query_set: &GpuQuerySet,
|
||||||
|
first_query: u32,
|
||||||
|
query_count: u32,
|
||||||
|
destination: &GpuBuffer,
|
||||||
|
destination_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = insertDebugMarker)]
|
||||||
|
#[doc = "The `insertDebugMarker()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/insertDebugMarker)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn insert_debug_marker(this: &GpuCommandEncoder, marker_label: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = popDebugGroup)]
|
||||||
|
#[doc = "The `popDebugGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/popDebugGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn pop_debug_group(this: &GpuCommandEncoder);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUCommandEncoder" , js_name = pushDebugGroup)]
|
||||||
|
#[doc = "The `pushDebugGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCommandEncoder/pushDebugGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn push_debug_group(this: &GpuCommandEncoder, group_label: &str);
|
||||||
|
}
|
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCommandEncoderDescriptor.rs
generated
Normal file
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCommandEncoderDescriptor.rs
generated
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUCommandEncoderDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuCommandEncoderDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuCommandEncoderDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuCommandEncoderDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuCommandEncoderDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuCommandEncoderDescriptor {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
29
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCompareFunction.rs
generated
Normal file
29
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCompareFunction.rs
generated
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuCompareFunction` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompareFunction`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuCompareFunction {
|
||||||
|
Never = "never",
|
||||||
|
Less = "less",
|
||||||
|
Equal = "equal",
|
||||||
|
LessEqual = "less-equal",
|
||||||
|
Greater = "greater",
|
||||||
|
NotEqual = "not-equal",
|
||||||
|
GreaterEqual = "greater-equal",
|
||||||
|
Always = "always",
|
||||||
|
}
|
37
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCompilationInfo.rs
generated
Normal file
37
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCompilationInfo.rs
generated
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUCompilationInfo , typescript_type = "GPUCompilationInfo")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuCompilationInfo` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationInfo)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationInfo`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuCompilationInfo;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCompilationInfo" , js_name = messages)]
|
||||||
|
#[doc = "Getter for the `messages` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationInfo/messages)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationInfo`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn messages(this: &GpuCompilationInfo) -> ::js_sys::Array;
|
||||||
|
}
|
92
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCompilationMessage.rs
generated
Normal file
92
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCompilationMessage.rs
generated
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUCompilationMessage , typescript_type = "GPUCompilationMessage")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuCompilationMessage` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationMessage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuCompilationMessage;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCompilationMessage" , js_name = message)]
|
||||||
|
#[doc = "Getter for the `message` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/message)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationMessage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn message(this: &GpuCompilationMessage) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCompilationMessage" , js_name = type)]
|
||||||
|
#[doc = "Getter for the `type` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/type)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationMessage`, `GpuCompilationMessageType`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn type_(this: &GpuCompilationMessage) -> GpuCompilationMessageType;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCompilationMessage" , js_name = lineNum)]
|
||||||
|
#[doc = "Getter for the `lineNum` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/lineNum)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationMessage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn line_num(this: &GpuCompilationMessage) -> f64;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCompilationMessage" , js_name = linePos)]
|
||||||
|
#[doc = "Getter for the `linePos` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/linePos)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationMessage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn line_pos(this: &GpuCompilationMessage) -> f64;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCompilationMessage" , js_name = offset)]
|
||||||
|
#[doc = "Getter for the `offset` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/offset)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationMessage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn offset(this: &GpuCompilationMessage) -> f64;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUCompilationMessage" , js_name = length)]
|
||||||
|
#[doc = "Getter for the `length` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUCompilationMessage/length)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationMessage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn length(this: &GpuCompilationMessage) -> f64;
|
||||||
|
}
|
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCompilationMessageType.rs
generated
Normal file
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCompilationMessageType.rs
generated
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuCompilationMessageType` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompilationMessageType`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuCompilationMessageType {
|
||||||
|
Error = "error",
|
||||||
|
Warning = "warning",
|
||||||
|
Info = "info",
|
||||||
|
}
|
82
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePassDescriptor.rs
generated
Normal file
82
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePassDescriptor.rs
generated
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUComputePassDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuComputePassDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuComputePassDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuComputePassDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuComputePassDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `timestampWrites` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassDescriptor`, `GpuComputePassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn timestamp_writes(&mut self, val: &GpuComputePassTimestampWrites) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("timestampWrites"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuComputePassDescriptor {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
242
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePassEncoder.rs
generated
Normal file
242
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePassEncoder.rs
generated
Normal file
@ -0,0 +1,242 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUComputePassEncoder , typescript_type = "GPUComputePassEncoder")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuComputePassEncoder` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuComputePassEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUComputePassEncoder" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuComputePassEncoder) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUComputePassEncoder" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuComputePassEncoder, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = dispatchWorkgroups)]
|
||||||
|
#[doc = "The `dispatchWorkgroups()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/dispatchWorkgroups)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn dispatch_workgroups(this: &GpuComputePassEncoder, workgroup_count_x: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = dispatchWorkgroups)]
|
||||||
|
#[doc = "The `dispatchWorkgroups()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/dispatchWorkgroups)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn dispatch_workgroups_with_workgroup_count_y(
|
||||||
|
this: &GpuComputePassEncoder,
|
||||||
|
workgroup_count_x: u32,
|
||||||
|
workgroup_count_y: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = dispatchWorkgroups)]
|
||||||
|
#[doc = "The `dispatchWorkgroups()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/dispatchWorkgroups)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn dispatch_workgroups_with_workgroup_count_y_and_workgroup_count_z(
|
||||||
|
this: &GpuComputePassEncoder,
|
||||||
|
workgroup_count_x: u32,
|
||||||
|
workgroup_count_y: u32,
|
||||||
|
workgroup_count_z: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = dispatchWorkgroupsIndirect)]
|
||||||
|
#[doc = "The `dispatchWorkgroupsIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/dispatchWorkgroupsIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn dispatch_workgroups_indirect_with_u32(
|
||||||
|
this: &GpuComputePassEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = dispatchWorkgroupsIndirect)]
|
||||||
|
#[doc = "The `dispatchWorkgroupsIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/dispatchWorkgroupsIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn dispatch_workgroups_indirect_with_f64(
|
||||||
|
this: &GpuComputePassEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = end)]
|
||||||
|
#[doc = "The `end()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/end)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn end(this: &GpuComputePassEncoder);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = setPipeline)]
|
||||||
|
#[doc = "The `setPipeline()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/setPipeline)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`, `GpuComputePipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_pipeline(this: &GpuComputePassEncoder, pipeline: &GpuComputePipeline);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group(
|
||||||
|
this: &GpuComputePassEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_sequence(
|
||||||
|
this: &GpuComputePassEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_array_and_u32_and_dynamic_offsets_data_length(
|
||||||
|
this: &GpuComputePassEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets_data: &[u32],
|
||||||
|
dynamic_offsets_data_start: u32,
|
||||||
|
dynamic_offsets_data_length: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_array_and_f64_and_dynamic_offsets_data_length(
|
||||||
|
this: &GpuComputePassEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets_data: &[u32],
|
||||||
|
dynamic_offsets_data_start: f64,
|
||||||
|
dynamic_offsets_data_length: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = insertDebugMarker)]
|
||||||
|
#[doc = "The `insertDebugMarker()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/insertDebugMarker)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn insert_debug_marker(this: &GpuComputePassEncoder, marker_label: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = popDebugGroup)]
|
||||||
|
#[doc = "The `popDebugGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/popDebugGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn pop_debug_group(this: &GpuComputePassEncoder);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePassEncoder" , js_name = pushDebugGroup)]
|
||||||
|
#[doc = "The `pushDebugGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePassEncoder/pushDebugGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn push_debug_group(this: &GpuComputePassEncoder, group_label: &str);
|
||||||
|
}
|
102
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePassTimestampWrites.rs
generated
Normal file
102
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePassTimestampWrites.rs
generated
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUComputePassTimestampWrites)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuComputePassTimestampWrites` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuComputePassTimestampWrites;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuComputePassTimestampWrites {
|
||||||
|
#[doc = "Construct a new `GpuComputePassTimestampWrites`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassTimestampWrites`, `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(query_set: &GpuQuerySet) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.query_set(query_set);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `beginningOfPassWriteIndex` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn beginning_of_pass_write_index(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("beginningOfPassWriteIndex"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `endOfPassWriteIndex` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn end_of_pass_write_index(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("endOfPassWriteIndex"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `querySet` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePassTimestampWrites`, `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn query_set(&mut self, val: &GpuQuerySet) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("querySet"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
59
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePipeline.rs
generated
Normal file
59
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePipeline.rs
generated
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUComputePipeline , typescript_type = "GPUComputePipeline")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuComputePipeline` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePipeline)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuComputePipeline;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUComputePipeline" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePipeline/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuComputePipeline) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUComputePipeline" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePipeline/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuComputePipeline, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUComputePipeline" , js_name = getBindGroupLayout)]
|
||||||
|
#[doc = "The `getBindGroupLayout()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUComputePipeline/getBindGroupLayout)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayout`, `GpuComputePipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_bind_group_layout(this: &GpuComputePipeline, index: u32) -> GpuBindGroupLayout;
|
||||||
|
}
|
96
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePipelineDescriptor.rs
generated
Normal file
96
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuComputePipelineDescriptor.rs
generated
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUComputePipelineDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuComputePipelineDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuComputePipelineDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuComputePipelineDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuComputePipelineDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipelineDescriptor`, `GpuProgrammableStage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(layout: &::wasm_bindgen::JsValue, compute: &GpuProgrammableStage) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.layout(layout);
|
||||||
|
ret.compute(compute);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `layout` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn layout(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("layout"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `compute` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipelineDescriptor`, `GpuProgrammableStage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn compute(&mut self, val: &GpuProgrammableStage) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("compute"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCullMode.rs
generated
Normal file
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuCullMode.rs
generated
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuCullMode` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCullMode`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuCullMode {
|
||||||
|
None = "none",
|
||||||
|
Front = "front",
|
||||||
|
Back = "back",
|
||||||
|
}
|
246
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDepthStencilState.rs
generated
Normal file
246
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDepthStencilState.rs
generated
Normal file
@ -0,0 +1,246 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUDepthStencilState)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuDepthStencilState` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuDepthStencilState;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuDepthStencilState {
|
||||||
|
#[doc = "Construct a new `GpuDepthStencilState`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`, `GpuTextureFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(format: GpuTextureFormat) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.format(format);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthBias` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_bias(&mut self, val: i32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthBias"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthBiasClamp` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_bias_clamp(&mut self, val: f32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthBiasClamp"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthBiasSlopeScale` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_bias_slope_scale(&mut self, val: f32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthBiasSlopeScale"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthCompare` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCompareFunction`, `GpuDepthStencilState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_compare(&mut self, val: GpuCompareFunction) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthCompare"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthWriteEnabled` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_write_enabled(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthWriteEnabled"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `format` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`, `GpuTextureFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn format(&mut self, val: GpuTextureFormat) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("format"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilBack` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`, `GpuStencilFaceState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_back(&mut self, val: &GpuStencilFaceState) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilBack"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilFront` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`, `GpuStencilFaceState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_front(&mut self, val: &GpuStencilFaceState) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilFront"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilReadMask` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_read_mask(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilReadMask"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilWriteMask` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_write_mask(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilWriteMask"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
368
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDevice.rs
generated
Normal file
368
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDevice.rs
generated
Normal file
@ -0,0 +1,368 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = EventTarget , extends = :: js_sys :: Object , js_name = GPUDevice , typescript_type = "GPUDevice")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuDevice` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuDevice;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUDevice" , js_name = features)]
|
||||||
|
#[doc = "Getter for the `features` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/features)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuSupportedFeatures`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn features(this: &GpuDevice) -> GpuSupportedFeatures;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUDevice" , js_name = limits)]
|
||||||
|
#[doc = "Getter for the `limits` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/limits)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuSupportedLimits`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn limits(this: &GpuDevice) -> GpuSupportedLimits;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUDevice" , js_name = queue)]
|
||||||
|
#[doc = "Getter for the `queue` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/queue)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn queue(this: &GpuDevice) -> GpuQueue;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUDevice" , js_name = lost)]
|
||||||
|
#[doc = "Getter for the `lost` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/lost)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn lost(this: &GpuDevice) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUDevice" , js_name = onuncapturederror)]
|
||||||
|
#[doc = "Getter for the `onuncapturederror` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/onuncapturederror)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn onuncapturederror(this: &GpuDevice) -> Option<::js_sys::Function>;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUDevice" , js_name = onuncapturederror)]
|
||||||
|
#[doc = "Setter for the `onuncapturederror` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/onuncapturederror)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_onuncapturederror(this: &GpuDevice, value: Option<&::js_sys::Function>);
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUDevice" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuDevice) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUDevice" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuDevice, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createBindGroup)]
|
||||||
|
#[doc = "The `createBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuBindGroupDescriptor`, `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_bind_group(this: &GpuDevice, descriptor: &GpuBindGroupDescriptor)
|
||||||
|
-> GpuBindGroup;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createBindGroupLayout)]
|
||||||
|
#[doc = "The `createBindGroupLayout()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createBindGroupLayout)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayout`, `GpuBindGroupLayoutDescriptor`, `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_bind_group_layout(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuBindGroupLayoutDescriptor,
|
||||||
|
) -> GpuBindGroupLayout;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createBuffer)]
|
||||||
|
#[doc = "The `createBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuBufferDescriptor`, `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_buffer(this: &GpuDevice, descriptor: &GpuBufferDescriptor) -> GpuBuffer;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createCommandEncoder)]
|
||||||
|
#[doc = "The `createCommandEncoder()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createCommandEncoder)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_command_encoder(this: &GpuDevice) -> GpuCommandEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createCommandEncoder)]
|
||||||
|
#[doc = "The `createCommandEncoder()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createCommandEncoder)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCommandEncoder`, `GpuCommandEncoderDescriptor`, `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_command_encoder_with_descriptor(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuCommandEncoderDescriptor,
|
||||||
|
) -> GpuCommandEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createComputePipeline)]
|
||||||
|
#[doc = "The `createComputePipeline()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createComputePipeline)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipeline`, `GpuComputePipelineDescriptor`, `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_compute_pipeline(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuComputePipelineDescriptor,
|
||||||
|
) -> GpuComputePipeline;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createComputePipelineAsync)]
|
||||||
|
#[doc = "The `createComputePipelineAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createComputePipelineAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuComputePipelineDescriptor`, `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_compute_pipeline_async(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuComputePipelineDescriptor,
|
||||||
|
) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createPipelineLayout)]
|
||||||
|
#[doc = "The `createPipelineLayout()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createPipelineLayout)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuPipelineLayout`, `GpuPipelineLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_pipeline_layout(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuPipelineLayoutDescriptor,
|
||||||
|
) -> GpuPipelineLayout;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createQuerySet)]
|
||||||
|
#[doc = "The `createQuerySet()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createQuerySet)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuQuerySet`, `GpuQuerySetDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_query_set(this: &GpuDevice, descriptor: &GpuQuerySetDescriptor) -> GpuQuerySet;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createRenderBundleEncoder)]
|
||||||
|
#[doc = "The `createRenderBundleEncoder()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createRenderBundleEncoder)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuRenderBundleEncoder`, `GpuRenderBundleEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_render_bundle_encoder(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuRenderBundleEncoderDescriptor,
|
||||||
|
) -> GpuRenderBundleEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createRenderPipeline)]
|
||||||
|
#[doc = "The `createRenderPipeline()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createRenderPipeline)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuRenderPipeline`, `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_render_pipeline(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuRenderPipelineDescriptor,
|
||||||
|
) -> GpuRenderPipeline;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createRenderPipelineAsync)]
|
||||||
|
#[doc = "The `createRenderPipelineAsync()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createRenderPipelineAsync)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_render_pipeline_async(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuRenderPipelineDescriptor,
|
||||||
|
) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createSampler)]
|
||||||
|
#[doc = "The `createSampler()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createSampler)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuSampler`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_sampler(this: &GpuDevice) -> GpuSampler;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createSampler)]
|
||||||
|
#[doc = "The `createSampler()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createSampler)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuSampler`, `GpuSamplerDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_sampler_with_descriptor(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuSamplerDescriptor,
|
||||||
|
) -> GpuSampler;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createShaderModule)]
|
||||||
|
#[doc = "The `createShaderModule()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createShaderModule)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuShaderModule`, `GpuShaderModuleDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_shader_module(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuShaderModuleDescriptor,
|
||||||
|
) -> GpuShaderModule;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = createTexture)]
|
||||||
|
#[doc = "The `createTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/createTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuTexture`, `GpuTextureDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn create_texture(this: &GpuDevice, descriptor: &GpuTextureDescriptor) -> GpuTexture;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = destroy)]
|
||||||
|
#[doc = "The `destroy()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/destroy)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn destroy(this: &GpuDevice);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = importExternalTexture)]
|
||||||
|
#[doc = "The `importExternalTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/importExternalTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuExternalTexture`, `GpuExternalTextureDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn import_external_texture(
|
||||||
|
this: &GpuDevice,
|
||||||
|
descriptor: &GpuExternalTextureDescriptor,
|
||||||
|
) -> GpuExternalTexture;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = popErrorScope)]
|
||||||
|
#[doc = "The `popErrorScope()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/popErrorScope)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn pop_error_scope(this: &GpuDevice) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUDevice" , js_name = pushErrorScope)]
|
||||||
|
#[doc = "The `pushErrorScope()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDevice/pushErrorScope)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDevice`, `GpuErrorFilter`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn push_error_scope(this: &GpuDevice, filter: GpuErrorFilter);
|
||||||
|
}
|
103
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDeviceDescriptor.rs
generated
Normal file
103
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDeviceDescriptor.rs
generated
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUDeviceDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuDeviceDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuDeviceDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuDeviceDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuDeviceDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `defaultQueue` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceDescriptor`, `GpuQueueDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn default_queue(&mut self, val: &GpuQueueDescriptor) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("defaultQueue"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `requiredFeatures` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn required_features(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("requiredFeatures"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuDeviceDescriptor {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDeviceLostInfo.rs
generated
Normal file
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDeviceLostInfo.rs
generated
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUDeviceLostInfo , typescript_type = "GPUDeviceLostInfo")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuDeviceLostInfo` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDeviceLostInfo)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceLostInfo`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuDeviceLostInfo;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUDeviceLostInfo" , js_name = reason)]
|
||||||
|
#[doc = "Getter for the `reason` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDeviceLostInfo/reason)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceLostInfo`, `GpuDeviceLostReason`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn reason(this: &GpuDeviceLostInfo) -> GpuDeviceLostReason;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUDeviceLostInfo" , js_name = message)]
|
||||||
|
#[doc = "Getter for the `message` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUDeviceLostInfo/message)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceLostInfo`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn message(this: &GpuDeviceLostInfo) -> String;
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDeviceLostReason.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuDeviceLostReason.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuDeviceLostReason` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDeviceLostReason`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuDeviceLostReason {
|
||||||
|
Unknown = "unknown",
|
||||||
|
Destroyed = "destroyed",
|
||||||
|
}
|
37
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuError.rs
generated
Normal file
37
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuError.rs
generated
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUError , typescript_type = "GPUError")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuError` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUError)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuError`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuError;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUError" , js_name = message)]
|
||||||
|
#[doc = "Getter for the `message` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUError/message)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuError`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn message(this: &GpuError) -> String;
|
||||||
|
}
|
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuErrorFilter.rs
generated
Normal file
24
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuErrorFilter.rs
generated
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuErrorFilter` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuErrorFilter`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuErrorFilter {
|
||||||
|
Validation = "validation",
|
||||||
|
OutOfMemory = "out-of-memory",
|
||||||
|
Internal = "internal",
|
||||||
|
}
|
95
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuExtent3dDict.rs
generated
Normal file
95
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuExtent3dDict.rs
generated
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUExtent3DDict)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuExtent3dDict` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuExtent3dDict;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuExtent3dDict {
|
||||||
|
#[doc = "Construct a new `GpuExtent3dDict`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(width: u32) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.width(width);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthOrArrayLayers` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_or_array_layers(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthOrArrayLayers"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `height` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn height(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("height"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `width` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn width(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("width"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuExternalTexture.rs
generated
Normal file
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuExternalTexture.rs
generated
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUExternalTexture , typescript_type = "GPUExternalTexture")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuExternalTexture` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUExternalTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuExternalTexture;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUExternalTexture" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUExternalTexture/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuExternalTexture) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUExternalTexture" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUExternalTexture/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuExternalTexture, value: &str);
|
||||||
|
}
|
44
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuExternalTextureBindingLayout.rs
generated
Normal file
44
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuExternalTextureBindingLayout.rs
generated
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUExternalTextureBindingLayout)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuExternalTextureBindingLayout` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuExternalTextureBindingLayout;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuExternalTextureBindingLayout {
|
||||||
|
#[doc = "Construct a new `GpuExternalTextureBindingLayout`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureBindingLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuExternalTextureBindingLayout {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
74
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuExternalTextureDescriptor.rs
generated
Normal file
74
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuExternalTextureDescriptor.rs
generated
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUExternalTextureDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuExternalTextureDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuExternalTextureDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuExternalTextureDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuExternalTextureDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(source: &::js_sys::Object) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.source(source);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `source` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExternalTextureDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn source(&mut self, val: &::js_sys::Object) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("source"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
32
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuFeatureName.rs
generated
Normal file
32
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuFeatureName.rs
generated
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuFeatureName` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFeatureName`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuFeatureName {
|
||||||
|
DepthClipControl = "depth-clip-control",
|
||||||
|
Depth32floatStencil8 = "depth32float-stencil8",
|
||||||
|
TextureCompressionBc = "texture-compression-bc",
|
||||||
|
TextureCompressionEtc2 = "texture-compression-etc2",
|
||||||
|
TextureCompressionAstc = "texture-compression-astc",
|
||||||
|
TimestampQuery = "timestamp-query",
|
||||||
|
IndirectFirstInstance = "indirect-first-instance",
|
||||||
|
ShaderF16 = "shader-f16",
|
||||||
|
Rg11b10ufloatRenderable = "rg11b10ufloat-renderable",
|
||||||
|
Bgra8unormStorage = "bgra8unorm-storage",
|
||||||
|
Float32Filterable = "float32-filterable",
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuFilterMode.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuFilterMode.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuFilterMode` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFilterMode`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuFilterMode {
|
||||||
|
Nearest = "nearest",
|
||||||
|
Linear = "linear",
|
||||||
|
}
|
100
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuFragmentState.rs
generated
Normal file
100
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuFragmentState.rs
generated
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUFragmentState)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuFragmentState` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFragmentState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuFragmentState;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuFragmentState {
|
||||||
|
#[doc = "Construct a new `GpuFragmentState`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFragmentState`, `GpuShaderModule`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(module: &GpuShaderModule, targets: &::wasm_bindgen::JsValue) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.module(module);
|
||||||
|
ret.targets(targets);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `entryPoint` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFragmentState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn entry_point(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("entryPoint"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `module` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFragmentState`, `GpuShaderModule`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn module(&mut self, val: &GpuShaderModule) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("module"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `targets` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFragmentState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn targets(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("targets"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuFrontFace.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuFrontFace.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuFrontFace` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFrontFace`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuFrontFace {
|
||||||
|
Ccw = "ccw",
|
||||||
|
Cw = "cw",
|
||||||
|
}
|
117
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageCopyBuffer.rs
generated
Normal file
117
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageCopyBuffer.rs
generated
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUImageCopyBuffer)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuImageCopyBuffer` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuImageCopyBuffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuImageCopyBuffer {
|
||||||
|
#[doc = "Construct a new `GpuImageCopyBuffer`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuImageCopyBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(buffer: &GpuBuffer) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.buffer(buffer);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `bytesPerRow` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn bytes_per_row(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("bytesPerRow"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `offset` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn offset(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("offset"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `rowsPerImage` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn rows_per_image(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("rowsPerImage"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `buffer` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuImageCopyBuffer`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn buffer(&mut self, val: &GpuBuffer) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("buffer"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
92
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageCopyExternalImage.rs
generated
Normal file
92
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageCopyExternalImage.rs
generated
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUImageCopyExternalImage)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuImageCopyExternalImage` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyExternalImage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuImageCopyExternalImage;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuImageCopyExternalImage {
|
||||||
|
#[doc = "Construct a new `GpuImageCopyExternalImage`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyExternalImage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(source: &::js_sys::Object) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.source(source);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `flipY` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyExternalImage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn flip_y(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("flipY"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `origin` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyExternalImage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn origin(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("origin"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `source` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyExternalImage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn source(&mut self, val: &::js_sys::Object) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("source"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
117
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageCopyTexture.rs
generated
Normal file
117
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageCopyTexture.rs
generated
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUImageCopyTexture)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuImageCopyTexture` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuImageCopyTexture;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuImageCopyTexture {
|
||||||
|
#[doc = "Construct a new `GpuImageCopyTexture`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTexture`, `GpuTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(texture: &GpuTexture) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.texture(texture);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `aspect` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTexture`, `GpuTextureAspect`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn aspect(&mut self, val: GpuTextureAspect) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("aspect"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `mipLevel` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn mip_level(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("mipLevel"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `origin` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn origin(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("origin"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `texture` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTexture`, `GpuTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn texture(&mut self, val: &GpuTexture) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("texture"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
138
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageCopyTextureTagged.rs
generated
Normal file
138
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageCopyTextureTagged.rs
generated
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUImageCopyTextureTagged)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuImageCopyTextureTagged` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTextureTagged`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuImageCopyTextureTagged;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuImageCopyTextureTagged {
|
||||||
|
#[doc = "Construct a new `GpuImageCopyTextureTagged`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTextureTagged`, `GpuTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(texture: &GpuTexture) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.texture(texture);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `aspect` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTextureTagged`, `GpuTextureAspect`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn aspect(&mut self, val: GpuTextureAspect) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("aspect"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `mipLevel` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTextureTagged`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn mip_level(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("mipLevel"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `origin` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTextureTagged`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn origin(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("origin"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `texture` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTextureTagged`, `GpuTexture`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn texture(&mut self, val: &GpuTexture) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("texture"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `premultipliedAlpha` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTextureTagged`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn premultiplied_alpha(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("premultipliedAlpha"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
104
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageDataLayout.rs
generated
Normal file
104
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuImageDataLayout.rs
generated
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUImageDataLayout)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuImageDataLayout` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageDataLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuImageDataLayout;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuImageDataLayout {
|
||||||
|
#[doc = "Construct a new `GpuImageDataLayout`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageDataLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `bytesPerRow` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageDataLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn bytes_per_row(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("bytesPerRow"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `offset` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageDataLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn offset(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("offset"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `rowsPerImage` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageDataLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn rows_per_image(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("rowsPerImage"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuImageDataLayout {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuIndexFormat.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuIndexFormat.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuIndexFormat` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuIndexFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuIndexFormat {
|
||||||
|
Uint16 = "uint16",
|
||||||
|
Uint32 = "uint32",
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuLoadOp.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuLoadOp.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuLoadOp` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuLoadOp`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuLoadOp {
|
||||||
|
Load = "load",
|
||||||
|
Clear = "clear",
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuMipmapFilterMode.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuMipmapFilterMode.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuMipmapFilterMode` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuMipmapFilterMode`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuMipmapFilterMode {
|
||||||
|
Nearest = "nearest",
|
||||||
|
Linear = "linear",
|
||||||
|
}
|
99
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuMultisampleState.rs
generated
Normal file
99
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuMultisampleState.rs
generated
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUMultisampleState)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuMultisampleState` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuMultisampleState;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuMultisampleState {
|
||||||
|
#[doc = "Construct a new `GpuMultisampleState`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `alphaToCoverageEnabled` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn alpha_to_coverage_enabled(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("alphaToCoverageEnabled"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `count` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn count(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("count"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `mask` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn mask(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("mask"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuMultisampleState {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuObjectDescriptorBase.rs
generated
Normal file
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuObjectDescriptorBase.rs
generated
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUObjectDescriptorBase)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuObjectDescriptorBase` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuObjectDescriptorBase`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuObjectDescriptorBase;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuObjectDescriptorBase {
|
||||||
|
#[doc = "Construct a new `GpuObjectDescriptorBase`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuObjectDescriptorBase`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuObjectDescriptorBase`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuObjectDescriptorBase {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
78
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuOrigin2dDict.rs
generated
Normal file
78
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuOrigin2dDict.rs
generated
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUOrigin2DDict)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuOrigin2dDict` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin2dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuOrigin2dDict;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuOrigin2dDict {
|
||||||
|
#[doc = "Construct a new `GpuOrigin2dDict`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin2dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `x` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin2dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn x(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("x"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `y` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin2dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn y(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("y"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuOrigin2dDict {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
95
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuOrigin3dDict.rs
generated
Normal file
95
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuOrigin3dDict.rs
generated
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUOrigin3DDict)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuOrigin3dDict` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuOrigin3dDict;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuOrigin3dDict {
|
||||||
|
#[doc = "Construct a new `GpuOrigin3dDict`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `x` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn x(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("x"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `y` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn y(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("y"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `z` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOrigin3dDict`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn z(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("z"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuOrigin3dDict {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
37
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuOutOfMemoryError.rs
generated
Normal file
37
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuOutOfMemoryError.rs
generated
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = GpuError , extends = :: js_sys :: Object , js_name = GPUOutOfMemoryError , typescript_type = "GPUOutOfMemoryError")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuOutOfMemoryError` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUOutOfMemoryError)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOutOfMemoryError`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuOutOfMemoryError;
|
||||||
|
|
||||||
|
#[wasm_bindgen(catch, constructor, js_class = "GPUOutOfMemoryError")]
|
||||||
|
#[doc = "The `new GpuOutOfMemoryError(..)` constructor, creating a new instance of `GpuOutOfMemoryError`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUOutOfMemoryError/GPUOutOfMemoryError)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuOutOfMemoryError`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(message: &str) -> Result<GpuOutOfMemoryError, JsValue>;
|
||||||
|
}
|
74
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPipelineDescriptorBase.rs
generated
Normal file
74
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPipelineDescriptorBase.rs
generated
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUPipelineDescriptorBase)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuPipelineDescriptorBase` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuPipelineDescriptorBase;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuPipelineDescriptorBase {
|
||||||
|
#[doc = "Construct a new `GpuPipelineDescriptorBase`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(layout: &::wasm_bindgen::JsValue) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.layout(layout);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `layout` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineDescriptorBase`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn layout(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("layout"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPipelineLayout.rs
generated
Normal file
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPipelineLayout.rs
generated
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUPipelineLayout , typescript_type = "GPUPipelineLayout")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuPipelineLayout` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUPipelineLayout)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuPipelineLayout;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUPipelineLayout" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUPipelineLayout/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuPipelineLayout) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUPipelineLayout" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUPipelineLayout/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineLayout`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuPipelineLayout, value: &str);
|
||||||
|
}
|
77
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPipelineLayoutDescriptor.rs
generated
Normal file
77
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPipelineLayoutDescriptor.rs
generated
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUPipelineLayoutDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuPipelineLayoutDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuPipelineLayoutDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuPipelineLayoutDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuPipelineLayoutDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(bind_group_layouts: &::wasm_bindgen::JsValue) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.bind_group_layouts(bind_group_layouts);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `bindGroupLayouts` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPipelineLayoutDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn bind_group_layouts(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("bindGroupLayouts"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPowerPreference.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPowerPreference.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuPowerPreference` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPowerPreference`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuPowerPreference {
|
||||||
|
LowPower = "low-power",
|
||||||
|
HighPerformance = "high-performance",
|
||||||
|
}
|
149
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPrimitiveState.rs
generated
Normal file
149
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPrimitiveState.rs
generated
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUPrimitiveState)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuPrimitiveState` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPrimitiveState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuPrimitiveState;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuPrimitiveState {
|
||||||
|
#[doc = "Construct a new `GpuPrimitiveState`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPrimitiveState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `cullMode` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuCullMode`, `GpuPrimitiveState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn cull_mode(&mut self, val: GpuCullMode) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("cullMode"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `frontFace` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFrontFace`, `GpuPrimitiveState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn front_face(&mut self, val: GpuFrontFace) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("frontFace"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stripIndexFormat` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuIndexFormat`, `GpuPrimitiveState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn strip_index_format(&mut self, val: GpuIndexFormat) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stripIndexFormat"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `topology` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPrimitiveState`, `GpuPrimitiveTopology`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn topology(&mut self, val: GpuPrimitiveTopology) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("topology"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `unclippedDepth` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPrimitiveState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn unclipped_depth(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("unclippedDepth"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuPrimitiveState {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
26
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPrimitiveTopology.rs
generated
Normal file
26
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuPrimitiveTopology.rs
generated
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuPrimitiveTopology` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPrimitiveTopology`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuPrimitiveTopology {
|
||||||
|
PointList = "point-list",
|
||||||
|
LineList = "line-list",
|
||||||
|
LineStrip = "line-strip",
|
||||||
|
TriangleList = "triangle-list",
|
||||||
|
TriangleStrip = "triangle-strip",
|
||||||
|
}
|
78
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuProgrammableStage.rs
generated
Normal file
78
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuProgrammableStage.rs
generated
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUProgrammableStage)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuProgrammableStage` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuProgrammableStage;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuProgrammableStage {
|
||||||
|
#[doc = "Construct a new `GpuProgrammableStage`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`, `GpuShaderModule`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(module: &GpuShaderModule) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.module(module);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `entryPoint` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn entry_point(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("entryPoint"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `module` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`, `GpuShaderModule`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn module(&mut self, val: &GpuShaderModule) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("module"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
81
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQuerySet.rs
generated
Normal file
81
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQuerySet.rs
generated
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUQuerySet , typescript_type = "GPUQuerySet")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuQuerySet` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuQuerySet;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUQuerySet" , js_name = type)]
|
||||||
|
#[doc = "Getter for the `type` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/type)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`, `GpuQueryType`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn type_(this: &GpuQuerySet) -> GpuQueryType;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUQuerySet" , js_name = count)]
|
||||||
|
#[doc = "Getter for the `count` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/count)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn count(this: &GpuQuerySet) -> u32;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUQuerySet" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuQuerySet) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUQuerySet" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuQuerySet, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQuerySet" , js_name = destroy)]
|
||||||
|
#[doc = "The `destroy()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQuerySet/destroy)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn destroy(this: &GpuQuerySet);
|
||||||
|
}
|
91
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQuerySetDescriptor.rs
generated
Normal file
91
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQuerySetDescriptor.rs
generated
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUQuerySetDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuQuerySetDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySetDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuQuerySetDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuQuerySetDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuQuerySetDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySetDescriptor`, `GpuQueryType`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(count: u32, type_: GpuQueryType) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.count(count);
|
||||||
|
ret.type_(type_);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySetDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `count` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySetDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn count(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("count"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `type` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySetDescriptor`, `GpuQueryType`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn type_(&mut self, val: GpuQueryType) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("type"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQueryType.rs
generated
Normal file
23
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQueryType.rs
generated
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
#[doc = "The `GpuQueryType` enum."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueryType`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
pub enum GpuQueryType {
|
||||||
|
Occlusion = "occlusion",
|
||||||
|
Timestamp = "timestamp",
|
||||||
|
}
|
658
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQueue.rs
generated
Normal file
658
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQueue.rs
generated
Normal file
@ -0,0 +1,658 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUQueue , typescript_type = "GPUQueue")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuQueue` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuQueue;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPUQueue" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuQueue) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPUQueue" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuQueue, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = copyExternalImageToTexture)]
|
||||||
|
#[doc = "The `copyExternalImageToTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/copyExternalImageToTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyExternalImage`, `GpuImageCopyTextureTagged`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_external_image_to_texture_with_u32_sequence(
|
||||||
|
this: &GpuQueue,
|
||||||
|
source: &GpuImageCopyExternalImage,
|
||||||
|
destination: &GpuImageCopyTextureTagged,
|
||||||
|
copy_size: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = copyExternalImageToTexture)]
|
||||||
|
#[doc = "The `copyExternalImageToTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/copyExternalImageToTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`, `GpuImageCopyExternalImage`, `GpuImageCopyTextureTagged`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn copy_external_image_to_texture_with_gpu_extent_3d_dict(
|
||||||
|
this: &GpuQueue,
|
||||||
|
source: &GpuImageCopyExternalImage,
|
||||||
|
destination: &GpuImageCopyTextureTagged,
|
||||||
|
copy_size: &GpuExtent3dDict,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = onSubmittedWorkDone)]
|
||||||
|
#[doc = "The `onSubmittedWorkDone()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/onSubmittedWorkDone)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn on_submitted_work_done(this: &GpuQueue) -> ::js_sys::Promise;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = submit)]
|
||||||
|
#[doc = "The `submit()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/submit)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn submit(this: &GpuQueue, command_buffers: &::wasm_bindgen::JsValue);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_buffer_source(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_buffer_source(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_u8_array(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &[u8],
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_u8_array(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &[u8],
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_buffer_source_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_buffer_source_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_u8_array_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_u8_array_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_buffer_source_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_buffer_source_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_u8_array_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_u8_array_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_buffer_source_and_u32_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_buffer_source_and_u32_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_u8_array_and_u32_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_u8_array_and_u32_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_buffer_source_and_f64_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_buffer_source_and_f64_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_u8_array_and_f64_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_u8_array_and_f64_and_u32(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_buffer_source_and_u32_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_buffer_source_and_u32_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_u8_array_and_u32_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_u8_array_and_u32_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_buffer_source_and_f64_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_buffer_source_and_f64_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_u32_and_u8_array_and_f64_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: u32,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeBuffer)]
|
||||||
|
#[doc = "The `writeBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_buffer_with_f64_and_u8_array_and_f64_and_f64(
|
||||||
|
this: &GpuQueue,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
buffer_offset: f64,
|
||||||
|
data: &[u8],
|
||||||
|
data_offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeTexture)]
|
||||||
|
#[doc = "The `writeTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTexture`, `GpuImageDataLayout`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_texture_with_buffer_source_and_u32_sequence(
|
||||||
|
this: &GpuQueue,
|
||||||
|
destination: &GpuImageCopyTexture,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_layout: &GpuImageDataLayout,
|
||||||
|
size: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeTexture)]
|
||||||
|
#[doc = "The `writeTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuImageCopyTexture`, `GpuImageDataLayout`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_texture_with_u8_array_and_u32_sequence(
|
||||||
|
this: &GpuQueue,
|
||||||
|
destination: &GpuImageCopyTexture,
|
||||||
|
data: &[u8],
|
||||||
|
data_layout: &GpuImageDataLayout,
|
||||||
|
size: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeTexture)]
|
||||||
|
#[doc = "The `writeTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`, `GpuImageCopyTexture`, `GpuImageDataLayout`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_texture_with_buffer_source_and_gpu_extent_3d_dict(
|
||||||
|
this: &GpuQueue,
|
||||||
|
destination: &GpuImageCopyTexture,
|
||||||
|
data: &::js_sys::Object,
|
||||||
|
data_layout: &GpuImageDataLayout,
|
||||||
|
size: &GpuExtent3dDict,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPUQueue" , js_name = writeTexture)]
|
||||||
|
#[doc = "The `writeTexture()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPUQueue/writeTexture)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuExtent3dDict`, `GpuImageCopyTexture`, `GpuImageDataLayout`, `GpuQueue`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn write_texture_with_u8_array_and_gpu_extent_3d_dict(
|
||||||
|
this: &GpuQueue,
|
||||||
|
destination: &GpuImageCopyTexture,
|
||||||
|
data: &[u8],
|
||||||
|
data_layout: &GpuImageDataLayout,
|
||||||
|
size: &GpuExtent3dDict,
|
||||||
|
);
|
||||||
|
}
|
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQueueDescriptor.rs
generated
Normal file
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuQueueDescriptor.rs
generated
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUQueueDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuQueueDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueueDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuQueueDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuQueueDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuQueueDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueueDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQueueDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuQueueDescriptor {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderBundle.rs
generated
Normal file
48
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderBundle.rs
generated
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderBundle , typescript_type = "GPURenderBundle")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderBundle` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundle)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundle`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderBundle;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPURenderBundle" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundle/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundle`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuRenderBundle) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPURenderBundle" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundle/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundle`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuRenderBundle, value: &str);
|
||||||
|
}
|
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderBundleDescriptor.rs
generated
Normal file
61
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderBundleDescriptor.rs
generated
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderBundleDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderBundleDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderBundleDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuRenderBundleDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuRenderBundleDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new() -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for GpuRenderBundleDescriptor {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
606
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderBundleEncoder.rs
generated
Normal file
606
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderBundleEncoder.rs
generated
Normal file
@ -0,0 +1,606 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderBundleEncoder , typescript_type = "GPURenderBundleEncoder")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderBundleEncoder` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderBundleEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPURenderBundleEncoder" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuRenderBundleEncoder) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPURenderBundleEncoder" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuRenderBundleEncoder, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = finish)]
|
||||||
|
#[doc = "The `finish()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/finish)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundle`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn finish(this: &GpuRenderBundleEncoder) -> GpuRenderBundle;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = finish)]
|
||||||
|
#[doc = "The `finish()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/finish)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundle`, `GpuRenderBundleDescriptor`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn finish_with_descriptor(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
descriptor: &GpuRenderBundleDescriptor,
|
||||||
|
) -> GpuRenderBundle;
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_sequence(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_array_and_u32_and_dynamic_offsets_data_length(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets_data: &[u32],
|
||||||
|
dynamic_offsets_data_start: u32,
|
||||||
|
dynamic_offsets_data_length: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_array_and_f64_and_dynamic_offsets_data_length(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets_data: &[u32],
|
||||||
|
dynamic_offsets_data_start: f64,
|
||||||
|
dynamic_offsets_data_length: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = insertDebugMarker)]
|
||||||
|
#[doc = "The `insertDebugMarker()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/insertDebugMarker)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn insert_debug_marker(this: &GpuRenderBundleEncoder, marker_label: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = popDebugGroup)]
|
||||||
|
#[doc = "The `popDebugGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/popDebugGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn pop_debug_group(this: &GpuRenderBundleEncoder);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = pushDebugGroup)]
|
||||||
|
#[doc = "The `pushDebugGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/pushDebugGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn push_debug_group(this: &GpuRenderBundleEncoder, group_label: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = draw)]
|
||||||
|
#[doc = "The `draw()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw(this: &GpuRenderBundleEncoder, vertex_count: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = draw)]
|
||||||
|
#[doc = "The `draw()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_with_instance_count(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
vertex_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = draw)]
|
||||||
|
#[doc = "The `draw()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_with_instance_count_and_first_vertex(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
vertex_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_vertex: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = draw)]
|
||||||
|
#[doc = "The `draw()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/draw)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_with_instance_count_and_first_vertex_and_first_instance(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
vertex_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_vertex: u32,
|
||||||
|
first_instance: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed(this: &GpuRenderBundleEncoder, index_count: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_with_instance_count(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
index_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_with_instance_count_and_first_index(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
index_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_index: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_with_instance_count_and_first_index_and_base_vertex(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
index_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_index: u32,
|
||||||
|
base_vertex: i32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_with_instance_count_and_first_index_and_base_vertex_and_first_instance(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
index_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_index: u32,
|
||||||
|
base_vertex: i32,
|
||||||
|
first_instance: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndexedIndirect)]
|
||||||
|
#[doc = "The `drawIndexedIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexedIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_indirect_with_u32(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndexedIndirect)]
|
||||||
|
#[doc = "The `drawIndexedIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndexedIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_indirect_with_f64(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndirect)]
|
||||||
|
#[doc = "The `drawIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indirect_with_u32(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = drawIndirect)]
|
||||||
|
#[doc = "The `drawIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/drawIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indirect_with_f64(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_u32(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_f64(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_u32_and_u32(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_f64_and_u32(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_u32_and_f64(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_f64_and_f64(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setPipeline)]
|
||||||
|
#[doc = "The `setPipeline()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setPipeline)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoder`, `GpuRenderPipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_pipeline(this: &GpuRenderBundleEncoder, pipeline: &GpuRenderPipeline);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer(this: &GpuRenderBundleEncoder, slot: u32, buffer: Option<&GpuBuffer>);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_u32(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_f64(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_u32_and_u32(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_f64_and_u32(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_u32_and_f64(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderBundleEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderBundleEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderBundleEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_f64_and_f64(
|
||||||
|
this: &GpuRenderBundleEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
}
|
161
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderBundleEncoderDescriptor.rs
generated
Normal file
161
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderBundleEncoderDescriptor.rs
generated
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderBundleEncoderDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderBundleEncoderDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderBundleEncoderDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuRenderBundleEncoderDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuRenderBundleEncoderDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(color_formats: &::wasm_bindgen::JsValue) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.color_formats(color_formats);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `colorFormats` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn color_formats(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("colorFormats"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthStencilFormat` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoderDescriptor`, `GpuTextureFormat`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_stencil_format(&mut self, val: GpuTextureFormat) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthStencilFormat"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `sampleCount` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn sample_count(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("sampleCount"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthReadOnly` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_read_only(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthReadOnly"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilReadOnly` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderBundleEncoderDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_read_only(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilReadOnly"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
160
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassColorAttachment.rs
generated
Normal file
160
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassColorAttachment.rs
generated
Normal file
@ -0,0 +1,160 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderPassColorAttachment)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderPassColorAttachment` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassColorAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderPassColorAttachment;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuRenderPassColorAttachment {
|
||||||
|
#[doc = "Construct a new `GpuRenderPassColorAttachment`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuLoadOp`, `GpuRenderPassColorAttachment`, `GpuStoreOp`, `GpuTextureView`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(load_op: GpuLoadOp, store_op: GpuStoreOp, view: &GpuTextureView) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.load_op(load_op);
|
||||||
|
ret.store_op(store_op);
|
||||||
|
ret.view(view);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `clearValue` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassColorAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn clear_value(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("clearValue"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthSlice` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassColorAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_slice(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthSlice"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `loadOp` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuLoadOp`, `GpuRenderPassColorAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn load_op(&mut self, val: GpuLoadOp) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("loadOp"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `resolveTarget` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassColorAttachment`, `GpuTextureView`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn resolve_target(&mut self, val: &GpuTextureView) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("resolveTarget"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `storeOp` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassColorAttachment`, `GpuStoreOp`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn store_op(&mut self, val: GpuStoreOp) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("storeOp"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `view` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassColorAttachment`, `GpuTextureView`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn view(&mut self, val: &GpuTextureView) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("view"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
224
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassDepthStencilAttachment.rs
generated
Normal file
224
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassDepthStencilAttachment.rs
generated
Normal file
@ -0,0 +1,224 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderPassDepthStencilAttachment)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderPassDepthStencilAttachment` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderPassDepthStencilAttachment;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuRenderPassDepthStencilAttachment {
|
||||||
|
#[doc = "Construct a new `GpuRenderPassDepthStencilAttachment`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`, `GpuTextureView`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(view: &GpuTextureView) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.view(view);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthClearValue` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_clear_value(&mut self, val: f32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthClearValue"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthLoadOp` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuLoadOp`, `GpuRenderPassDepthStencilAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_load_op(&mut self, val: GpuLoadOp) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthLoadOp"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthReadOnly` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_read_only(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthReadOnly"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthStoreOp` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`, `GpuStoreOp`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_store_op(&mut self, val: GpuStoreOp) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthStoreOp"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilClearValue` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_clear_value(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilClearValue"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilLoadOp` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuLoadOp`, `GpuRenderPassDepthStencilAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_load_op(&mut self, val: GpuLoadOp) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilLoadOp"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilReadOnly` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_read_only(&mut self, val: bool) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilReadOnly"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `stencilStoreOp` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`, `GpuStoreOp`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn stencil_store_op(&mut self, val: GpuStoreOp) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("stencilStoreOp"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `view` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`, `GpuTextureView`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn view(&mut self, val: &GpuTextureView) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("view"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
164
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassDescriptor.rs
generated
Normal file
164
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassDescriptor.rs
generated
Normal file
@ -0,0 +1,164 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderPassDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderPassDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderPassDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuRenderPassDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuRenderPassDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(color_attachments: &::wasm_bindgen::JsValue) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.color_attachments(color_attachments);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `colorAttachments` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn color_attachments(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("colorAttachments"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthStencilAttachment` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDepthStencilAttachment`, `GpuRenderPassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_stencil_attachment(
|
||||||
|
&mut self,
|
||||||
|
val: &GpuRenderPassDepthStencilAttachment,
|
||||||
|
) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthStencilAttachment"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `maxDrawCount` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn max_draw_count(&mut self, val: f64) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("maxDrawCount"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `occlusionQuerySet` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`, `GpuRenderPassDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn occlusion_query_set(&mut self, val: &GpuQuerySet) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("occlusionQuerySet"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `timestampWrites` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassDescriptor`, `GpuRenderPassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn timestamp_writes(&mut self, val: &GpuRenderPassTimestampWrites) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("timestampWrites"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
694
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassEncoder.rs
generated
Normal file
694
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassEncoder.rs
generated
Normal file
@ -0,0 +1,694 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderPassEncoder , typescript_type = "GPURenderPassEncoder")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderPassEncoder` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderPassEncoder;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPURenderPassEncoder" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuRenderPassEncoder) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPURenderPassEncoder" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuRenderPassEncoder, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = beginOcclusionQuery)]
|
||||||
|
#[doc = "The `beginOcclusionQuery()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/beginOcclusionQuery)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn begin_occlusion_query(this: &GpuRenderPassEncoder, query_index: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = end)]
|
||||||
|
#[doc = "The `end()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/end)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn end(this: &GpuRenderPassEncoder);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = endOcclusionQuery)]
|
||||||
|
#[doc = "The `endOcclusionQuery()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/endOcclusionQuery)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn end_occlusion_query(this: &GpuRenderPassEncoder);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = executeBundles)]
|
||||||
|
#[doc = "The `executeBundles()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/executeBundles)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn execute_bundles(this: &GpuRenderPassEncoder, bundles: &::wasm_bindgen::JsValue);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setBlendConstant)]
|
||||||
|
#[doc = "The `setBlendConstant()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setBlendConstant)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_blend_constant_with_f64_sequence(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
color: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setBlendConstant)]
|
||||||
|
#[doc = "The `setBlendConstant()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setBlendConstant)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuColorDict`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_blend_constant_with_gpu_color_dict(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
color: &GpuColorDict,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setScissorRect)]
|
||||||
|
#[doc = "The `setScissorRect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setScissorRect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_scissor_rect(this: &GpuRenderPassEncoder, x: u32, y: u32, width: u32, height: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setStencilReference)]
|
||||||
|
#[doc = "The `setStencilReference()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setStencilReference)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_stencil_reference(this: &GpuRenderPassEncoder, reference: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setViewport)]
|
||||||
|
#[doc = "The `setViewport()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setViewport)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_viewport(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
x: f32,
|
||||||
|
y: f32,
|
||||||
|
width: f32,
|
||||||
|
height: f32,
|
||||||
|
min_depth: f32,
|
||||||
|
max_depth: f32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_sequence(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets: &::wasm_bindgen::JsValue,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_array_and_u32_and_dynamic_offsets_data_length(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets_data: &[u32],
|
||||||
|
dynamic_offsets_data_start: u32,
|
||||||
|
dynamic_offsets_data_length: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setBindGroup)]
|
||||||
|
#[doc = "The `setBindGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setBindGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroup`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_bind_group_with_u32_array_and_f64_and_dynamic_offsets_data_length(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
index: u32,
|
||||||
|
bind_group: Option<&GpuBindGroup>,
|
||||||
|
dynamic_offsets_data: &[u32],
|
||||||
|
dynamic_offsets_data_start: f64,
|
||||||
|
dynamic_offsets_data_length: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = insertDebugMarker)]
|
||||||
|
#[doc = "The `insertDebugMarker()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/insertDebugMarker)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn insert_debug_marker(this: &GpuRenderPassEncoder, marker_label: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = popDebugGroup)]
|
||||||
|
#[doc = "The `popDebugGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/popDebugGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn pop_debug_group(this: &GpuRenderPassEncoder);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = pushDebugGroup)]
|
||||||
|
#[doc = "The `pushDebugGroup()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/pushDebugGroup)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn push_debug_group(this: &GpuRenderPassEncoder, group_label: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = draw)]
|
||||||
|
#[doc = "The `draw()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/draw)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw(this: &GpuRenderPassEncoder, vertex_count: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = draw)]
|
||||||
|
#[doc = "The `draw()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/draw)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_with_instance_count(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
vertex_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = draw)]
|
||||||
|
#[doc = "The `draw()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/draw)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_with_instance_count_and_first_vertex(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
vertex_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_vertex: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = draw)]
|
||||||
|
#[doc = "The `draw()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/draw)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_with_instance_count_and_first_vertex_and_first_instance(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
vertex_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_vertex: u32,
|
||||||
|
first_instance: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed(this: &GpuRenderPassEncoder, index_count: u32);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_with_instance_count(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
index_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_with_instance_count_and_first_index(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
index_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_index: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_with_instance_count_and_first_index_and_base_vertex(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
index_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_index: u32,
|
||||||
|
base_vertex: i32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndexed)]
|
||||||
|
#[doc = "The `drawIndexed()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexed)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_with_instance_count_and_first_index_and_base_vertex_and_first_instance(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
index_count: u32,
|
||||||
|
instance_count: u32,
|
||||||
|
first_index: u32,
|
||||||
|
base_vertex: i32,
|
||||||
|
first_instance: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndexedIndirect)]
|
||||||
|
#[doc = "The `drawIndexedIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexedIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_indirect_with_u32(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndexedIndirect)]
|
||||||
|
#[doc = "The `drawIndexedIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndexedIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indexed_indirect_with_f64(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndirect)]
|
||||||
|
#[doc = "The `drawIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indirect_with_u32(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = drawIndirect)]
|
||||||
|
#[doc = "The `drawIndirect()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/drawIndirect)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn draw_indirect_with_f64(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
indirect_buffer: &GpuBuffer,
|
||||||
|
indirect_offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_u32(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_f64(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_u32_and_u32(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_f64_and_u32(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_u32_and_f64(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setIndexBuffer)]
|
||||||
|
#[doc = "The `setIndexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setIndexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuIndexFormat`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_index_buffer_with_f64_and_f64(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
buffer: &GpuBuffer,
|
||||||
|
index_format: GpuIndexFormat,
|
||||||
|
offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setPipeline)]
|
||||||
|
#[doc = "The `setPipeline()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setPipeline)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassEncoder`, `GpuRenderPipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_pipeline(this: &GpuRenderPassEncoder, pipeline: &GpuRenderPipeline);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer(this: &GpuRenderPassEncoder, slot: u32, buffer: Option<&GpuBuffer>);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_u32(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_f64(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_u32_and_u32(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: u32,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_f64_and_u32(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: f64,
|
||||||
|
size: u32,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_u32_and_f64(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: u32,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPassEncoder" , js_name = setVertexBuffer)]
|
||||||
|
#[doc = "The `setVertexBuffer()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPassEncoder/setVertexBuffer)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBuffer`, `GpuRenderPassEncoder`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_vertex_buffer_with_f64_and_f64(
|
||||||
|
this: &GpuRenderPassEncoder,
|
||||||
|
slot: u32,
|
||||||
|
buffer: Option<&GpuBuffer>,
|
||||||
|
offset: f64,
|
||||||
|
size: f64,
|
||||||
|
);
|
||||||
|
}
|
102
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassTimestampWrites.rs
generated
Normal file
102
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPassTimestampWrites.rs
generated
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderPassTimestampWrites)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderPassTimestampWrites` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderPassTimestampWrites;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuRenderPassTimestampWrites {
|
||||||
|
#[doc = "Construct a new `GpuRenderPassTimestampWrites`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`, `GpuRenderPassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(query_set: &GpuQuerySet) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.query_set(query_set);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `beginningOfPassWriteIndex` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn beginning_of_pass_write_index(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("beginningOfPassWriteIndex"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `endOfPassWriteIndex` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn end_of_pass_write_index(&mut self, val: u32) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("endOfPassWriteIndex"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `querySet` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuQuerySet`, `GpuRenderPassTimestampWrites`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn query_set(&mut self, val: &GpuQuerySet) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("querySet"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
59
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPipeline.rs
generated
Normal file
59
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPipeline.rs
generated
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderPipeline , typescript_type = "GPURenderPipeline")]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderPipeline` class."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPipeline)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderPipeline;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , getter , js_class = "GPURenderPipeline" , js_name = label)]
|
||||||
|
#[doc = "Getter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPipeline/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(this: &GpuRenderPipeline) -> String;
|
||||||
|
|
||||||
|
# [wasm_bindgen (structural , method , setter , js_class = "GPURenderPipeline" , js_name = label)]
|
||||||
|
#[doc = "Setter for the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPipeline/label)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn set_label(this: &GpuRenderPipeline, value: &str);
|
||||||
|
|
||||||
|
# [wasm_bindgen (method , structural , js_class = "GPURenderPipeline" , js_name = getBindGroupLayout)]
|
||||||
|
#[doc = "The `getBindGroupLayout()` method."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/GPURenderPipeline/getBindGroupLayout)"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuBindGroupLayout`, `GpuRenderPipeline`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn get_bind_group_layout(this: &GpuRenderPipeline, index: u32) -> GpuBindGroupLayout;
|
||||||
|
}
|
177
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPipelineDescriptor.rs
generated
Normal file
177
wgpu/src/backend/webgpu/webgpu_sys/gen_GpuRenderPipelineDescriptor.rs
generated
Normal file
@ -0,0 +1,177 @@
|
|||||||
|
// DO NOT EDIT THIS FILE!
|
||||||
|
//
|
||||||
|
// This module part of a subset of web-sys that is used by wgpu's webgpu backend.
|
||||||
|
//
|
||||||
|
// If you want to improve the generated code, please submit a PR to the https://github.com/rustwasm/wasm-bindgen repository.
|
||||||
|
//
|
||||||
|
// This file was generated by the `cargo xtask vendor-web-sys --version 0.2.91` command.
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
#![allow(clippy::all)]
|
||||||
|
use super::*;
|
||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
extern "C" {
|
||||||
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPURenderPipelineDescriptor)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
#[doc = "The `GpuRenderPipelineDescriptor` dictionary."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub type GpuRenderPipelineDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GpuRenderPipelineDescriptor {
|
||||||
|
#[doc = "Construct a new `GpuRenderPipelineDescriptor`."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPipelineDescriptor`, `GpuVertexState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn new(layout: &::wasm_bindgen::JsValue, vertex: &GpuVertexState) -> Self {
|
||||||
|
#[allow(unused_mut)]
|
||||||
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||||||
|
ret.layout(layout);
|
||||||
|
ret.vertex(vertex);
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `label` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn label(&mut self, val: &str) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("label"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `layout` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn layout(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("layout"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `depthStencil` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuDepthStencilState`, `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn depth_stencil(&mut self, val: &GpuDepthStencilState) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("depthStencil"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `fragment` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuFragmentState`, `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn fragment(&mut self, val: &GpuFragmentState) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("fragment"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `multisample` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`, `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn multisample(&mut self, val: &GpuMultisampleState) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("multisample"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `primitive` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuPrimitiveState`, `GpuRenderPipelineDescriptor`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn primitive(&mut self, val: &GpuPrimitiveState) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r = ::js_sys::Reflect::set(
|
||||||
|
self.as_ref(),
|
||||||
|
&JsValue::from("primitive"),
|
||||||
|
&JsValue::from(val),
|
||||||
|
);
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc = "Change the `vertex` field of this object."]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API requires the following crate features to be activated: `GpuRenderPipelineDescriptor`, `GpuVertexState`*"]
|
||||||
|
#[doc = ""]
|
||||||
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||||||
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||||||
|
pub fn vertex(&mut self, val: &GpuVertexState) -> &mut Self {
|
||||||
|
use wasm_bindgen::JsValue;
|
||||||
|
let r =
|
||||||
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("vertex"), &JsValue::from(val));
|
||||||
|
debug_assert!(
|
||||||
|
r.is_ok(),
|
||||||
|
"setting properties should never fail on our dictionary objects"
|
||||||
|
);
|
||||||
|
let _ = r;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user