Revision 10386fa23f3a9211e9ef5d8f54e795f9b4005395 authored by Yong He on 03 September 2021, 08:39:17 UTC, committed by Yong He on 03 September 2021, 08:39:17 UTC
1 parent 265f403
Raw File
early-depth-stencil.hlsl.glsl
//TEST_IGNORE_FILE:
#version 450
layout(row_major) uniform;
layout(row_major) buffer;

#line 5 0
layout(location = 0)
out vec4 _S1;

#line 5
layout(early_fragment_tests) in;
void main()
{
    _S1 = vec4(float(1), float(0), float(0), float(1));
    return;
}
back to top