This website requires JavaScript.
ReeceSX
Explore
Aurora
Register
Sign In
AuroraMiddleware
/
glslang
Watch
1
Star
0
Fork
0
You've already forked glslang
mirror of
https://github.com/KhronosGroup/glslang
synced
2024-11-08 11:30:06 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
main
glslang
/
Test
/
spv.do-simple.vert
8 lines
78 B
GLSL
Raw
Permalink
Normal View
History
Unescape
Escape
SPV: Require desktop 140 or ES 310 or above.
2016-01-23 00:47:22 +00:00
#version 310 es
glslang -> SPV: improved support for do-while/continue. Contributed by David Neto (dneto@google.com). git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31205 e7fa87d3-cd2b-0410-9028-fcbf551c1848
2015-05-15 18:44:16 +00:00
void
main
(
)
{
int
i
=
0
;
do
{
i
+
+
;
}
while
(
i
<
10
)
;
}
Reference in New Issue
Copy Permalink