gsk: Add missing Mozilla copyright header

I stole one of their shader functions, and if I steal, I might as well
do it right.
This commit is contained in:
Benjamin Otte 2016-12-26 17:06:10 +01:00
parent 599cc995f3
commit 3c8518dce3

View File

@ -12,6 +12,11 @@ struct RoundedRect {
vec4 corners;
};
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
float clip(vec2 pos, RoundedRect r) {
vec2 ref_tl = r.bounds.xy + vec2( r.corners.x, r.corners.x);
vec2 ref_tr = r.bounds.zy + vec2(-r.corners.y, r.corners.y);