Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ruicheng
/
MoGe
like
55
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
239102c
MoGe
/
utils3d
/
numpy
/
shaders
/
texture.vsh
Ruicheng
first commit
ec0c8fa
6 months ago
raw
Copy download link
history
blame
Safe
151 Bytes
#version 330 core
in
vec2
in_vert;
out
vec2
scr_coord;
void
main() {
scr_coord = in_vert *
0.5
+
0.5
;
gl_Position
=
vec4
(in_vert,
0.
,
1.
);
}