We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f80968 commit 83edb3cCopy full SHA for 83edb3c
package/src/skia/types/Shader/Shader.ts
@@ -40,7 +40,7 @@ export const processUniforms = (
40
for (let i = 0; i < uniformsCount; i++) {
41
const name = source.getUniformName(i);
42
const value = uniforms[name];
43
- if (!value === undefined) {
+ if (value === undefined) {
44
throw new Error(
45
// eslint-disable-next-line max-len
46
`The runtime effect has the uniform value "${name}" declared, but it is missing from the uniforms property of the Runtime effect.`
0 commit comments