Merge pull request #60386 from bruvzg/label3d

This commit is contained in:
Rémi Verschelde 2022-04-25 15:51:31 +02:00 committed by GitHub
commit 63a052d96b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 2270 additions and 251 deletions

View file

@ -478,10 +478,6 @@ float msdf_median(float r, float g, float b, float a) {
return min(max(min(r, g), min(max(r, g), b)), a);
}
vec2 msdf_map(vec2 value, vec2 in_min, vec2 in_max, vec2 out_min, vec2 out_max) {
return out_min + (out_max - out_min) * (value - in_min) / (in_max - in_min);
}
void main() {
vec4 color = color_interp;
vec2 uv = uv_interp;