Sign in
third-party-mirror
/
orbit
/
301094089f7066c20f6885ee60d316d3f550a3c2
/
.
/
qt-everywhere-src-5.15.1
/
qt3d
/
tests
/
manual
/
clip-planes-qml
/
passthrough.frag
blob: ab8310e077284ed5fa4509790678ee47d5ae09fc [
file
] [
log
] [
blame
]
#version 150 core
out
vec4 fragColor
;
in
VertexData
{
vec3 position
;
vec3 normal
;
}
f_in
;
void
main
()
{
fragColor
=
vec4
(
1.0
,
1.0
,
1.0
,
1.0
)
*
vec4
(
f_in
.
position
,
1.0
);
}