Skip to content

Commit 4f05b0d

Browse files
committed
Updated an unified all attributions
1 parent 7c2d403 commit 4f05b0d

19 files changed

+45
-12
lines changed

demos/audio.glsl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Created by inantop - https://www.shadertoy.com/view/XltSDX
2+
// Adapted for VS Code Shadertoy
3+
14
#iChannel0 "file://./outfoxing.mp3"
25

36
void mainImage( out vec4 fragColor, in vec2 fragCoord )

demos/blending.glsl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Example shader created for VS Code ShaderToy extension
2+
13
#iChannel0 "https://66.media.tumblr.com/tumblr_mcmeonhR1e1ridypxo1_500.jpg"
24
#iChannel1 "https://static.wixstatic.com/media/5a6af3_59508f8a1ef6461abd9b97fba2e4a2ce~mv2.png"
35
#iChannel1::WrapMode "Mirror"

demos/blobby.glsl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Created by liamboone - https://www.shadertoy.com/view/ldBBRV
2+
// Adapted for VS Code Shadertoy
3+
14
#include "common/blobby.glsl"
25

36
float blob(vec2 pos, vec2 center, float power)

demos/cubemap.glsl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
// Created by Klems - https://www.shadertoy.com/view/4dj3zV
2+
// Adapted for VS Code Shadertoy
3+
14
#iChannel0 "file://cubemap/yokohama_{}.jpg"
25
#iChannel0::Type "CubeMap"
36
#iChannel0::MinFilter "LinearMipMapLinear"
47

5-
// Created by Klems - https://www.shadertoy.com/view/4dj3zV
6-
// Adapted for VS Code Shadertoy
7-
88
#define PI 3.14159265359
99
#define METABALLS 7
1010
#define METABALLS_TRESHOLD 1.0

demos/digital.glsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Created by tayloia at https://www.shadertoy.com/view/MdVcRd
1+
// Created by tayloia - https://www.shadertoy.com/view/MdVcRd
22
// Adapted for VS Code Shadertoy
33

44
// See https://www.shadertoy.com/view/ldKGRR

demos/duck.glsl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Example shader created for VS Code ShaderToy extension
2+
13
#iChannel0 "https://cdn-images-1.medium.com/max/1200/1*eFjpoz8lhNKyd8XcSWv2OA.jpeg"
24
#iChannel0::WrapMode "Repeat"
35

demos/feedback.glsl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Example shader created for VS Code ShaderToy extension
2+
13
#iChannel0 "file://self"
24

35
void main() {

demos/frame.glsl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Example shader created for VS Code ShaderToy extension
2+
13
#define BRANCHLESS
24

35
void main() {

demos/glslify.glsl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Example shader created for VS Code ShaderToy extension
2+
13
#pragma glslify: snoise = require('glsl-noise/simplex/2d')
24

35
float noise(in vec2 pt) {

demos/keyboard.glsl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#iKeyboard
2-
3-
// Created by inigo quilez - iq/2013
1+
// Created by iq - https://www.shadertoy.com/view/lsXGzf
42
// Adapted for VS Code Shadertoy
53

4+
#iKeyboard
5+
66
// An example showing how to use the keyboard input.
77
//
88
// Row 0: contain the current state of the 256 keys.

demos/keyquest.glsl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1+
// Created by TekF - https://www.shadertoy.com/view/XdS3RV
2+
// Adapted for VS Code Shadertoy
3+
14
#iKeyboard
25
#iChannel0 "https://i.imgur.com/lX8OAQV.jpg"
36
#iChannel1 "https://farm5.static.flickr.com/4541/38604095012_ab7a81b807_b.jpg"
47

58
// Ben Quantock 2014
69
// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
710

8-
// Adapted for shadertoy VS-Code from: https://www.shadertoy.com/view/XdS3RV
9-
1011
// fit a coordinate system to xx
1112
vec4 screen; // coord*screen.z+screen.xy, coord e [-screen.w,screen.w
1213
vec2 pixel;

demos/metaballs.glsl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Created by mu6k - https://www.shadertoy.com/view/Mss3WN
2+
// Adapted for VS Code Shadertoy
3+
14
/*by mu6k, Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
25
36
I have no idea how I ended up here, but it demosceneish enough to publish.

demos/mouse.glsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Created by foodini - 2018
1+
// Created by foodini - https://www.shadertoy.com/view/XlyBzt
22
// Adapted for VS Code Shadertoy
33

44
void mainImage( out vec4 fragColor, in vec2 fragCoord )

demos/multipass.glsl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Example shader created for VS Code ShaderToy extension
2+
13
#iChannel0 "file://horizon.jpg"
24
#iChannel1 "file://uv-warp.glsl"
35

demos/plasma1.glsl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Created by klk - https://www.shadertoy.com/view/XsVSzW
2+
// Adapted for VS Code Shadertoy
3+
14
// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
25
// Created by S.Guillitte
36
void main()

demos/uv-warp.glsl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Example shader created for VS Code ShaderToy extension
2+
13
void main() {
24
vec2 uv = gl_FragCoord.xy / iResolution.xy;
35

demos/volume_points_0.glsl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Created by FlyGuy - https://www.shadertoy.com/view/MtdcDn
2+
// Adapted for VS Code Shadertoy
3+
14
#include "volume_points_common.glsl"
25

36
vec3 iVResolution = vec3(0);

demos/volume_points_1.glsl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Shader by Flyguy
2-
// Adapted for shadertoy VS-Code from: https://www.shadertoy.com/view/MtdcDn
1+
// Created by FlyGuy - https://www.shadertoy.com/view/MtdcDn
2+
// Adapted for VS Code Shadertoy
33

44
#iChannel0 "volume_points_0.glsl"
55

demos/volume_points_common.glsl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Created by FlyGuy - https://www.shadertoy.com/view/MtdcDn
2+
// Adapted for VS Code Shadertoy
3+
14
const float pi = atan(1.0) * 4.0;
25
const float tau = atan(1.0) * 8.0;
36

0 commit comments

Comments
 (0)