Skip to content

Commit b9e89d6

Browse files
committed
Fix missing semicolon
1 parent 8ee8867 commit b9e89d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webgl/p5.RendererGL.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2023,7 +2023,7 @@ p5.RendererGL = class RendererGL extends p5.Renderer {
20232023
},
20242024
fragment: {
20252025
'void beforeFragment': '() {}',
2026-
'Inputs getPixelInputs': '(Inputs inputs) { return inputs }',
2026+
'Inputs getPixelInputs': '(Inputs inputs) { return inputs; }',
20272027
'vec4 getFinalColor': '(vec4 color) { return color; }',
20282028
'bool shouldDiscard': '(bool outside) { return outside; }',
20292029
'void afterFragment': '() {}'

0 commit comments

Comments
 (0)