Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
fffiloni/PSHuman
gradiopro
/
PSHuman
like
1
Running
App
Files
Files
Community
a8d733b
PSHuman
/
lib
/
renderer
/
gl
/
data
/
quad.vs
fffiloni
Migrated from GitHub
2252f3d
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
207 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;
}