diff options
| author | s-ol <s+removethis@s-ol.nu> | 2025-09-14 16:04:41 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2025-09-14 16:19:37 +0000 |
| commit | eb16db2d05164f87c310851fe41ee99b6c006735 (patch) | |
| tree | 41e1059d51a722c48e129df3f539dfbf29f552de /examples | |
| parent | lib/array: map passes index (diff) | |
| download | alive-eb16db2d05164f87c310851fe41ee99b6c006735.tar.gz alive-eb16db2d05164f87c310851fe41ee99b6c006735.zip | |
remove comma from symbol chars
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/glsl-view/nesting.alv | 2 | ||||
| -rw-r--r-- | examples/glsl-view/stream-controls.alv | 2 | ||||
| -rw-r--r-- | examples/glsl-view/stream.alv | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/glsl-view/nesting.alv b/examples/glsl-view/nesting.alv index 8c76695..9f73dd3 100644 --- a/examples/glsl-view/nesting.alv +++ b/examples/glsl-view/nesting.alv @@ -7,7 +7,7 @@ ([9]do ([7]def source ([6]stream-source '2D' ([5]str 'testsrc=size=' w 'x' h ':rate=30') 'lavfi')) - $[8]shader"texture($source , round($uv * vec2($w , $h)) / vec2($w , $h)).rgb")) + $[8]shader"texture($source, round($uv * vec2($w, $h)) / vec2($w, $h)).rgb")) ([14]draw $[13]shader" diff --git a/examples/glsl-view/stream-controls.alv b/examples/glsl-view/stream-controls.alv index 936dac9..0b726fd 100644 --- a/examples/glsl-view/stream-controls.alv +++ b/examples/glsl-view/stream-controls.alv @@ -16,6 +16,6 @@ in vec2 uv; out vec4 color; void main() { - color = texture($cam , uv); + color = texture($cam, uv); color.rgb = mix(color.rgb, color.rrr, $paused? ? 1 : 0); }") diff --git a/examples/glsl-view/stream.alv b/examples/glsl-view/stream.alv index 4f40645..4be9391 100644 --- a/examples/glsl-view/stream.alv +++ b/examples/glsl-view/stream.alv @@ -11,8 +11,8 @@ in vec2 uv; out vec4 color; void main() { - vec3 cam = texture($cam , uv).rgb; - vec3 tst = texture($tst , uv).rgb; + vec3 cam = texture($cam, uv).rgb; + vec3 tst = texture($tst, uv).rgb; color.rgb = mix(cam, tst, $([8]lfo 1)); |
