Add support for DrawRangeElements in WebGL2

Adds initial support for the WebGL2 `DrawRangeElements` call.
This commit is contained in:
Istvan 2020-03-18 10:53:23 +01:00
parent c3ecf2ecef
commit bfa43fbeba
8 changed files with 216 additions and 108 deletions

View file

@ -770,6 +770,8 @@ pub struct ActiveUniformInfo {
pub size: Option<i32>,
/// The type of the uniform.
pub type_: u32,
/// The index of the indexed uniform buffer binding, if it is bound.
pub bind_index: Option<u32>,
}
impl ActiveUniformInfo {