Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ruili3
/
LaRI
like
8
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
06b5e66
LaRI
/
src
/
utils3d
/
numpy
/
shaders
/
texture.vsh
ruili3
init LaRI demo
860c6b0
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.
);
}