UNPKG
video-upscale
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
Upscale HTML5 Video using WebGL
github.com/mad-gooze/video-upscale
mad-gooze/video-upscale
video-upscale
/
dist
/
createRect
/
index.js
4 lines
(3 loc)
•
141 B
JavaScript
View Raw
1
2
3
4
export function createRect({
width
,
height
}) { return Float32Array
.of
(
0
,
0
,
width
,
0
,
0
,
height
,
0
,
height
,
width
,
0
,
width
,
height
); }