diff options
Diffstat (limited to 'vendor/web-sys/src/features/gen_AngleInstancedArrays.rs')
-rw-r--r-- | vendor/web-sys/src/features/gen_AngleInstancedArrays.rs | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_AngleInstancedArrays.rs b/vendor/web-sys/src/features/gen_AngleInstancedArrays.rs new file mode 100644 index 000000000..2fd99e723 --- /dev/null +++ b/vendor/web-sys/src/features/gen_AngleInstancedArrays.rs @@ -0,0 +1,68 @@ +#![allow(unused_imports)] +use super::*; +use wasm_bindgen::prelude::*; +#[wasm_bindgen] +extern "C" { + # [wasm_bindgen (is_type_of = | _ | false , extends = :: js_sys :: Object , js_name = ANGLE_instanced_arrays , typescript_type = "ANGLE_instanced_arrays")] + #[derive(Debug, Clone, PartialEq, Eq)] + #[doc = "The `AngleInstancedArrays` class."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ANGLE_instanced_arrays)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `AngleInstancedArrays`*"] + pub type AngleInstancedArrays; + # [wasm_bindgen (method , structural , js_class = "ANGLE_instanced_arrays" , js_name = drawArraysInstancedANGLE)] + #[doc = "The `drawArraysInstancedANGLE()` method."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ANGLE_instanced_arrays/drawArraysInstancedANGLE)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `AngleInstancedArrays`*"] + pub fn draw_arrays_instanced_angle( + this: &AngleInstancedArrays, + mode: u32, + first: i32, + count: i32, + primcount: i32, + ); + # [wasm_bindgen (method , structural , js_class = "ANGLE_instanced_arrays" , js_name = drawElementsInstancedANGLE)] + #[doc = "The `drawElementsInstancedANGLE()` method."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ANGLE_instanced_arrays/drawElementsInstancedANGLE)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `AngleInstancedArrays`*"] + pub fn draw_elements_instanced_angle_with_i32( + this: &AngleInstancedArrays, + mode: u32, + count: i32, + type_: u32, + offset: i32, + primcount: i32, + ); + # [wasm_bindgen (method , structural , js_class = "ANGLE_instanced_arrays" , js_name = drawElementsInstancedANGLE)] + #[doc = "The `drawElementsInstancedANGLE()` method."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ANGLE_instanced_arrays/drawElementsInstancedANGLE)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `AngleInstancedArrays`*"] + pub fn draw_elements_instanced_angle_with_f64( + this: &AngleInstancedArrays, + mode: u32, + count: i32, + type_: u32, + offset: f64, + primcount: i32, + ); + # [wasm_bindgen (method , structural , js_class = "ANGLE_instanced_arrays" , js_name = vertexAttribDivisorANGLE)] + #[doc = "The `vertexAttribDivisorANGLE()` method."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ANGLE_instanced_arrays/vertexAttribDivisorANGLE)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `AngleInstancedArrays`*"] + pub fn vertex_attrib_divisor_angle(this: &AngleInstancedArrays, index: u32, divisor: u32); +} +impl AngleInstancedArrays { + #[doc = "The `ANGLE_instanced_arrays.VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE` const."] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `AngleInstancedArrays`*"] + pub const VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE: u32 = 35070u64 as u32; +} |