1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 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; }