This website works better with JavaScript.
Home
Explore
Help
Sign In
er1n
/
zinnia
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
A little toolkit for single-quad fragment shader demos
17
Commits
2
Branches
534 KiB
Tree:
bcf586a2be
zinnia
/
examples
/
test
/
shaders
/
quad.vert
6 lines
100 B
Raw
Normal View
History
Add a demo project
8 years ago
#version 330 core
in
vec2
in_position
;
void
main
(
)
{
gl_Position
=
vec4
(
in_position
,
0.0
,
1.0
)
;
}