├── .gitignore ├── Makefile ├── README.md ├── all.gif ├── bloom.gif ├── glad.c ├── include ├── KHR │ └── khrplatform.h └── glad │ └── glad.h ├── none.gif ├── phosphor.gif ├── shader.frag ├── shader.vert ├── source.png ├── stb_image.h ├── tv.png └── vector.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | vector 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/README.md -------------------------------------------------------------------------------- /all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/all.gif -------------------------------------------------------------------------------- /bloom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/bloom.gif -------------------------------------------------------------------------------- /glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/glad.c -------------------------------------------------------------------------------- /include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/include/glad/glad.h -------------------------------------------------------------------------------- /none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/none.gif -------------------------------------------------------------------------------- /phosphor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/phosphor.gif -------------------------------------------------------------------------------- /shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/shader.frag -------------------------------------------------------------------------------- /shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/shader.vert -------------------------------------------------------------------------------- /source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/source.png -------------------------------------------------------------------------------- /stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/stb_image.h -------------------------------------------------------------------------------- /tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/tv.png -------------------------------------------------------------------------------- /vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MegaLoler/Vector-Display-Simulation/HEAD/vector.cpp --------------------------------------------------------------------------------