web_sys/features/
gen_GpuMultisampleState.rs

1#![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 = GPUMultisampleState)]
9    #[derive(Debug, Clone, PartialEq, Eq)]
10    #[doc = "The `GpuMultisampleState` dictionary."]
11    #[doc = ""]
12    #[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
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 GpuMultisampleState;
17    #[cfg(web_sys_unstable_apis)]
18    #[doc = "Get the `alphaToCoverageEnabled` field of this object."]
19    #[doc = ""]
20    #[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
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 = "alphaToCoverageEnabled")]
25    pub fn get_alpha_to_coverage_enabled(this: &GpuMultisampleState) -> Option<bool>;
26    #[cfg(web_sys_unstable_apis)]
27    #[doc = "Change the `alphaToCoverageEnabled` field of this object."]
28    #[doc = ""]
29    #[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
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 = "alphaToCoverageEnabled")]
34    pub fn set_alpha_to_coverage_enabled(this: &GpuMultisampleState, val: bool);
35    #[cfg(web_sys_unstable_apis)]
36    #[doc = "Get the `count` field of this object."]
37    #[doc = ""]
38    #[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
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 = "count")]
43    pub fn get_count(this: &GpuMultisampleState) -> Option<u32>;
44    #[cfg(web_sys_unstable_apis)]
45    #[doc = "Change the `count` field of this object."]
46    #[doc = ""]
47    #[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
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 = "count")]
52    pub fn set_count(this: &GpuMultisampleState, val: u32);
53    #[cfg(web_sys_unstable_apis)]
54    #[doc = "Get the `mask` field of this object."]
55    #[doc = ""]
56    #[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
57    #[doc = ""]
58    #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
59    #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
60    #[wasm_bindgen(method, getter = "mask")]
61    pub fn get_mask(this: &GpuMultisampleState) -> Option<u32>;
62    #[cfg(web_sys_unstable_apis)]
63    #[doc = "Change the `mask` field of this object."]
64    #[doc = ""]
65    #[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
66    #[doc = ""]
67    #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
68    #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
69    #[wasm_bindgen(method, setter = "mask")]
70    pub fn set_mask(this: &GpuMultisampleState, val: u32);
71}
72#[cfg(web_sys_unstable_apis)]
73impl GpuMultisampleState {
74    #[doc = "Construct a new `GpuMultisampleState`."]
75    #[doc = ""]
76    #[doc = "*This API requires the following crate features to be activated: `GpuMultisampleState`*"]
77    #[doc = ""]
78    #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
79    #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
80    pub fn new() -> Self {
81        #[allow(unused_mut)]
82        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
83        ret
84    }
85    #[cfg(web_sys_unstable_apis)]
86    #[deprecated = "Use `set_alpha_to_coverage_enabled()` instead."]
87    pub fn alpha_to_coverage_enabled(&mut self, val: bool) -> &mut Self {
88        self.set_alpha_to_coverage_enabled(val);
89        self
90    }
91    #[cfg(web_sys_unstable_apis)]
92    #[deprecated = "Use `set_count()` instead."]
93    pub fn count(&mut self, val: u32) -> &mut Self {
94        self.set_count(val);
95        self
96    }
97    #[cfg(web_sys_unstable_apis)]
98    #[deprecated = "Use `set_mask()` instead."]
99    pub fn mask(&mut self, val: u32) -> &mut Self {
100        self.set_mask(val);
101        self
102    }
103}
104#[cfg(web_sys_unstable_apis)]
105impl Default for GpuMultisampleState {
106    fn default() -> Self {
107        Self::new()
108    }
109}