diff options
Diffstat (limited to 'components/script/dom/webgl2renderingcontext.rs')
-rw-r--r-- | components/script/dom/webgl2renderingcontext.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webgl2renderingcontext.rs b/components/script/dom/webgl2renderingcontext.rs index 9f0bfcd89c3..ec2741c44dd 100644 --- a/components/script/dom/webgl2renderingcontext.rs +++ b/components/script/dom/webgl2renderingcontext.rs @@ -82,6 +82,7 @@ fn typedarray_elem_size(typeid: Type) -> usize { Type::Int16 | Type::Uint16 => 2, Type::Int32 | Type::Uint32 | Type::Float32 => 4, Type::Int64 | Type::Float64 => 8, + Type::BigInt64 | Type::BigUint64 => 8, Type::MaxTypedArrayViewType => unreachable!(), } } |