Sign in
flutter
/
third_party
/
glslang
/
refs/heads/upstream/vulkan-sdk-1.4.335
/
.
/
Test
/
link.multiUnitLayout.2.vert
blob: f569ec8db11beda6ab218d6cf8a38606f248ea3a [
file
] [
edit
]
#version 450
// Should generate a contradictory xfb_stride error
layout
(
xfb_buffer
=
1
,
xfb_stride
=
34
)
out
;
vec4 computePosition
(
vec4 position
)
{
return
vec4
(
1.0
)
+
2.0
*
position
;
}