зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
462 B
GLSL
17 строки
462 B
GLSL
/* 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/. */
|
|
|
|
void main(void) {
|
|
float alpha = 1.0;
|
|
#ifdef WR_FEATURE_TRANSFORM
|
|
alpha = 0.0;
|
|
init_transform_fs(vLocalPos, alpha);
|
|
#endif
|
|
|
|
#ifdef WR_FEATURE_CLIP
|
|
alpha = min(alpha, do_clip());
|
|
#endif
|
|
oFragColor = vColor * vec4(1.0, 1.0, 1.0, alpha);
|
|
}
|