Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Duplicated from
Yuliang/ICON
hehebox17
/
ICON
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ICON
/
lib
/
renderer
/
gl
/
data
/
quad.vs
Yuliang
done
2d5f249
almost 4 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
207 Bytes
#version 330 core
layout
(
location
=
0
)
in
vec2
aPos;
layout
(
location
=
1
)
in
vec2
aTexCoord;
out
vec2
TexCoord;
void
main()
{
gl_Position
=
vec4
(aPos.x, aPos.y,
0.0
,
1.0
);
TexCoord = aTexCoord;
}