Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Yuliang
/
ICON
like
421
Runtime error
App
Files
Files
Community
23
refs/pr/2
ICON
/
lib
/
renderer
/
gl
/
data
/
quad.fs
Yuliang
init
162943d
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);
}