bgfx/3rdparty/spirv-cross/shaders-hlsl/frag/dual-source-blending.frag
Бранимир Караџић 3c8b3c81ef Updated spirv-cross.
2019-01-16 18:50:01 -08:00

11 lines
187 B
GLSL

#version 450
layout(location = 0, index = 0) out vec4 FragColor0;
layout(location = 0, index = 1) out vec4 FragColor1;
void main()
{
FragColor0 = vec4(1.0);
FragColor1 = vec4(2.0);
}