Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ruili3
/
LaRI
like
9
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
LaRI
/
src
/
utils3d
/
numpy
/
shaders
/
texture.fsh
ruili3
init LaRI demo
860c6b0
10 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
178 Bytes
#version 330
uniform
sampler2D
tex;
uniform
sampler2D
uv;
in
vec2
scr_coord;
out
vecN tex_color;
void
main() {
tex_color = vecN(
texture
(tex,
texture
(uv, scr_coord).xy));
}