st/scroll-view: Ensure float are used explictly

Pineview needs explicit float to prevent error when shader is compiled.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4127
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1815>
This commit is contained in:
Frederic Crozat 2021-04-16 14:09:23 +02:00 committed by Marge Bot
parent 58ed969dd1
commit d9e953e93c

View File

@ -70,6 +70,6 @@ void main ()
cogl_color_out *= ratio;
} else {
cogl_color_out *= 0;
cogl_color_out *= 0.0;
}
}