You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
layout(binding=1) uniform sampler2D texA;
|
|
layout(binding=0) uniform sampler2D texB;
|
|
void main()
|
|
{
|
|
sk_FragColor = sample(texA, half2(0)) * sample(texB, half2(0));
|
|
}
|