Skip to content

Commit 0b3a826

Browse files
committedJul 14, 2023
optional gl
1 parent 8b14eeb commit 0b3a826

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed
 

‎glTransitions.js

+14-3
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,24 @@ import createTexture from 'gl-texture2d';
88
const { default: createTransition } = glTransition;
99

1010
export default ({ width, height, channels }) => {
11-
const gl = GL(width, height);
11+
let hasInitBeenCalled = false;
12+
let gl;
1213

13-
if (!gl) {
14-
throw new Error('gl returned null, this probably means that some dependencies are not installed. See README.');
14+
function initGL() {
15+
hasInitBeenCalled = true;
16+
17+
gl = GL(width, height);
18+
19+
if (!gl) {
20+
throw new Error('gl returned null, this probably means that some dependencies are not installed. See README.');
21+
}
1522
}
1623

1724
function runTransitionOnFrame({ fromFrame, toFrame, progress, transitionName, transitionParams = {} }) {
25+
if (!hasInitBeenCalled) {
26+
initGL();
27+
}
28+
1829
function convertFrame(buf) {
1930
// @see https://github.com/stackgl/gl-texture2d/issues/16
2031
return ndarray(buf, [width, height, channels], [channels, width * channels, 1]);

0 commit comments

Comments
 (0)