├── .gitignore ├── LICENSE ├── README.md ├── pygameoglw.py ├── shader_constants.py ├── shaderlib.py └── texturelib.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaFluffyPotato/pygame-shaderlib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaFluffyPotato/pygame-shaderlib/HEAD/README.md -------------------------------------------------------------------------------- /pygameoglw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaFluffyPotato/pygame-shaderlib/HEAD/pygameoglw.py -------------------------------------------------------------------------------- /shader_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaFluffyPotato/pygame-shaderlib/HEAD/shader_constants.py -------------------------------------------------------------------------------- /shaderlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaFluffyPotato/pygame-shaderlib/HEAD/shaderlib.py -------------------------------------------------------------------------------- /texturelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaFluffyPotato/pygame-shaderlib/HEAD/texturelib.py --------------------------------------------------------------------------------