- Use uppercase NOTE: tags. - Correct bNote -> bNode. - Use colon after parameters. - Use doxy-style doc-strings.
11 lines
298 B
GLSL
11 lines
298 B
GLSL
/* SPDX-FileCopyrightText: 2018-2022 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
void main()
|
|
{
|
|
fragColor = gl_FrontFacing ? colorFaceFront : colorFaceBack;
|
|
/* Pre-multiply the output as we do not do any blending in the frame-buffer. */
|
|
fragColor.rgb *= fragColor.a;
|
|
}
|