146 lines
6.0 KiB
Rust
146 lines
6.0 KiB
Rust
#![allow(unused_imports)]
|
|
use super::*;
|
|
use wasm_bindgen::prelude::*;
|
|
#[cfg(web_sys_unstable_apis)]
|
|
#[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;
|
|
}
|
|
#[cfg(web_sys_unstable_apis)]
|
|
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
|
|
}
|
|
#[cfg(web_sys_unstable_apis)]
|
|
#[doc = "Change the `clampDepth` 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 clamp_depth(&mut self, val: bool) -> &mut Self {
|
|
use wasm_bindgen::JsValue;
|
|
let r = ::js_sys::Reflect::set(
|
|
self.as_ref(),
|
|
&JsValue::from("clampDepth"),
|
|
&JsValue::from(val),
|
|
);
|
|
debug_assert!(
|
|
r.is_ok(),
|
|
"setting properties should never fail on our dictionary objects"
|
|
);
|
|
let _ = r;
|
|
self
|
|
}
|
|
#[cfg(web_sys_unstable_apis)]
|
|
#[cfg(feature = "GpuCullMode")]
|
|
#[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
|
|
}
|
|
#[cfg(web_sys_unstable_apis)]
|
|
#[cfg(feature = "GpuFrontFace")]
|
|
#[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
|
|
}
|
|
#[cfg(web_sys_unstable_apis)]
|
|
#[cfg(feature = "GpuIndexFormat")]
|
|
#[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
|
|
}
|
|
#[cfg(web_sys_unstable_apis)]
|
|
#[cfg(feature = "GpuPrimitiveTopology")]
|
|
#[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
|
|
}
|
|
}
|
|
#[cfg(web_sys_unstable_apis)]
|
|
impl Default for GpuPrimitiveState {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|