web_sys/features/
gen_GpuProgrammableStage.rs1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use super::*;
4use wasm_bindgen::prelude::*;
5#[cfg(web_sys_unstable_apis)]
6#[wasm_bindgen]
7extern "C" {
8 # [wasm_bindgen (extends = :: js_sys :: Object , js_name = GPUProgrammableStage)]
9 #[derive(Debug, Clone, PartialEq, Eq)]
10 #[doc = "The `GpuProgrammableStage` dictionary."]
11 #[doc = ""]
12 #[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`*"]
13 #[doc = ""]
14 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
15 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
16 pub type GpuProgrammableStage;
17 #[cfg(web_sys_unstable_apis)]
18 #[doc = "Get the `constants` field of this object."]
19 #[doc = ""]
20 #[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`*"]
21 #[doc = ""]
22 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
23 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
24 #[wasm_bindgen(method, getter = "constants")]
25 pub fn get_constants(this: &GpuProgrammableStage) -> Option<::js_sys::Object>;
26 #[cfg(web_sys_unstable_apis)]
27 #[doc = "Change the `constants` field of this object."]
28 #[doc = ""]
29 #[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`*"]
30 #[doc = ""]
31 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
32 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
33 #[wasm_bindgen(method, setter = "constants")]
34 pub fn set_constants(this: &GpuProgrammableStage, val: &::js_sys::Object);
35 #[cfg(web_sys_unstable_apis)]
36 #[doc = "Get the `entryPoint` field of this object."]
37 #[doc = ""]
38 #[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`*"]
39 #[doc = ""]
40 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
41 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
42 #[wasm_bindgen(method, getter = "entryPoint")]
43 pub fn get_entry_point(this: &GpuProgrammableStage) -> Option<::alloc::string::String>;
44 #[cfg(web_sys_unstable_apis)]
45 #[doc = "Change the `entryPoint` field of this object."]
46 #[doc = ""]
47 #[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`*"]
48 #[doc = ""]
49 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
50 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
51 #[wasm_bindgen(method, setter = "entryPoint")]
52 pub fn set_entry_point(this: &GpuProgrammableStage, val: &str);
53 #[cfg(web_sys_unstable_apis)]
54 #[cfg(feature = "GpuShaderModule")]
55 #[doc = "Get the `module` field of this object."]
56 #[doc = ""]
57 #[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`, `GpuShaderModule`*"]
58 #[doc = ""]
59 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
60 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
61 #[wasm_bindgen(method, getter = "module")]
62 pub fn get_module(this: &GpuProgrammableStage) -> GpuShaderModule;
63 #[cfg(web_sys_unstable_apis)]
64 #[cfg(feature = "GpuShaderModule")]
65 #[doc = "Change the `module` field of this object."]
66 #[doc = ""]
67 #[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`, `GpuShaderModule`*"]
68 #[doc = ""]
69 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
70 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
71 #[wasm_bindgen(method, setter = "module")]
72 pub fn set_module(this: &GpuProgrammableStage, val: &GpuShaderModule);
73}
74#[cfg(web_sys_unstable_apis)]
75impl GpuProgrammableStage {
76 #[cfg(feature = "GpuShaderModule")]
77 #[doc = "Construct a new `GpuProgrammableStage`."]
78 #[doc = ""]
79 #[doc = "*This API requires the following crate features to be activated: `GpuProgrammableStage`, `GpuShaderModule`*"]
80 #[doc = ""]
81 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
82 #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
83 pub fn new(module: &GpuShaderModule) -> Self {
84 #[allow(unused_mut)]
85 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
86 ret.set_module(module);
87 ret
88 }
89 #[cfg(web_sys_unstable_apis)]
90 #[deprecated = "Use `set_constants()` instead."]
91 pub fn constants(&mut self, val: &::js_sys::Object) -> &mut Self {
92 self.set_constants(val);
93 self
94 }
95 #[cfg(web_sys_unstable_apis)]
96 #[deprecated = "Use `set_entry_point()` instead."]
97 pub fn entry_point(&mut self, val: &str) -> &mut Self {
98 self.set_entry_point(val);
99 self
100 }
101 #[cfg(web_sys_unstable_apis)]
102 #[cfg(feature = "GpuShaderModule")]
103 #[deprecated = "Use `set_module()` instead."]
104 pub fn module(&mut self, val: &GpuShaderModule) -> &mut Self {
105 self.set_module(val);
106 self
107 }
108}