Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
YoonaAI
/
yoonaAvatarSpace1
like
0
Build error
App
Files
Files
Fetching metadata from the HF Docker repository...
main
yoonaAvatarSpace1
/
lib
/
renderer
/
gl
/
data
/
quad.fs
YoonaAI
Upload 10 files
0ae44e3
over 2 years ago
raw
Copy download link
history
blame
Safe
157 Bytes
#version
330
core
out vec4 FragColor;
in
vec2 TexCoord;
uniform sampler2D screenTexture;
void
main()
{
FragColor
=
texture(screenTexture, TexCoord);
}