Merge branch 'SL-20730' into DRTVWR-596

master
Brad Linden 2023-12-14 12:06:47 -08:00
commit c74dbc6e5b
1 changed files with 1 additions and 1 deletions

View File

@ -34,6 +34,6 @@ void main()
{
// NOTE: when this shader is used, only alpha is being written to
float a = diffuseLookup(vary_texcoord0.xy).a*vertex_color.a;
frag_color = vec4(0, 0, 0, a);
frag_color = max(vec4(0, 0, 0, a), vec4(0));
}