Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pengsida
/
NeuralBody
like
1
Configuration error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/2
NeuralBody
/
tools
/
render
/
quad.vs
pengsida
initial commit
1ba539f
almost 3 years ago
raw
Copy download link
history
blame
Safe
209 Bytes
#version 330 core
layout
(
location
=
0
)
in
vec2
aPos;
layout
(
location
=
1
)
in
vec2
aTexCoord;
out
vec2
TexCoord;
void
main()
{
gl_Position
=
vec4
(aPos.x, aPos.y,
0.0
,
1.0
);
TexCoord = aTexCoord;
}