Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fffiloni
/
PSHuman
like
44
Running
on
L40S
App
Files
Files
Community
1
c74a022
PSHuman
/
lib
/
renderer
/
gl
/
data
/
quad.fs
fffiloni
Migrated from GitHub
2252f3d
verified
15 days 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);
}