Skip to content

Instantly share code, notes, and snippets.

@kzerot
Created March 5, 2019 07:11
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kzerot/b60cee18a62a80091b2f54a366f07411 to your computer and use it in GitHub Desktop.
Save kzerot/b60cee18a62a80091b2f54a366f07411 to your computer and use it in GitHub Desktop.
Simple sobel edge detection for Godot
shader_type canvas_item;
uniform vec4 edge_color : hint_color = vec4(0.4, 0.4,0.4,1);
uniform vec2 resolution = vec2(800.0,600.0);
void fragment(){
float width = resolution.x;
float height = resolution.y;
float w = 1.0 / width;
float h = 1.0 / height;
vec4 n0 = texture(SCREEN_TEXTURE, SCREEN_UV + vec2( -w, -h));
vec4 n1 = texture(SCREEN_TEXTURE, SCREEN_UV + vec2(0.0, -h));
vec4 n2 = texture(SCREEN_TEXTURE, SCREEN_UV + vec2( w, -h));
vec4 n3 = texture(SCREEN_TEXTURE, SCREEN_UV + vec2( -w, 0.0));
vec4 n4 = texture(SCREEN_TEXTURE, SCREEN_UV);
vec4 n5 = texture(SCREEN_TEXTURE, SCREEN_UV + vec2( w, 0.0));
vec4 n6 = texture(SCREEN_TEXTURE, SCREEN_UV + vec2( -w, h));
vec4 n7 = texture(SCREEN_TEXTURE, SCREEN_UV + vec2(0.0, h));
vec4 n8 = texture(SCREEN_TEXTURE, SCREEN_UV + vec2( w, h));
vec4 sobel_edge_h = n2 + (2.0*n5) + n8 - (n0 + (2.0*n3) + n6);
vec4 sobel_edge_v = n0 + (2.0*n1) + n2 - (n6 + (2.0*n7) + n8);
vec4 sobel = sqrt((sobel_edge_h * sobel_edge_h) + (sobel_edge_v * sobel_edge_v));
float alpha = sobel.r;
alpha += sobel.g;
alpha += sobel.b;
alpha /= 3.0;
COLOR = vec4( edge_color.rgb, alpha );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment