Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated fromΒ
OpenMotionLab/MotionGPT
fjibj
/
MotionGPT
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
MotionGPT
/
pyrender
/
pyrender
/
shaders
/
text.vert
bill-jiang
Init
8554568
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
191 Bytes
#version 330 core
layout
(
location
=
0
)
in
vec4
vertex;
out
vec2
uv;
uniform
mat4
projection;
void
main()
{
gl_Position
= projection *
vec4
(vertex.xy,
0.0
,
1.0
);
uv = vertex.zw;
}