Hello there! I've written a fairly simple shader that makes holes in a texture that works fine in the editor (Godot 4.1), but doesn't seem to work on my test android device (Galaxy s8). Any obvious gotchas I've missed? Thanks in advance


shader_type canvas_item;

uniform float map_width;
uniform float map_height;

uniform vec3 circle_transforms[32];
uniform int num_circle_transforms = 0;
void fragment() {

	COLOR = texture(TEXTURE, UV); //read from texture
	
	vec2 uv_pos = vec2(UV.x * map_width, UV.y * map_height);
	// Circle transforms
	for (int i = 0; i < num_circle_transforms; i++) {
    	// z is circle radius
		
		float dx = circle_transforms[i].x - uv_pos.x;
		float dy = circle_transforms[i].y - uv_pos.y;
		
		if((dx*dx + dy*dy) < (circle_transforms[i].z * circle_transforms[i].z)){
			COLOR.a = 0.0;
		}
	}
a year later

Hello I think I'm having the same issue, I'm using a similar shader where I apply transparency to some parts of an image but it doesn't work at all on mobile, did you fix this? Thanks and sorry for the necropost