├── .gitignore ├── LICENSE ├── README.md ├── Visual Studio 2010.bat ├── data ├── white.dds └── white_bc1.dds ├── ddspp.h ├── ddspp.lua ├── main.cpp └── premake ├── linux └── premake5 ├── osx └── premake5 └── win └── premake5.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/README.md -------------------------------------------------------------------------------- /Visual Studio 2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/Visual Studio 2010.bat -------------------------------------------------------------------------------- /data/white.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/data/white.dds -------------------------------------------------------------------------------- /data/white_bc1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/data/white_bc1.dds -------------------------------------------------------------------------------- /ddspp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/ddspp.h -------------------------------------------------------------------------------- /ddspp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/ddspp.lua -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/main.cpp -------------------------------------------------------------------------------- /premake/linux/premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/premake/linux/premake5 -------------------------------------------------------------------------------- /premake/osx/premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/premake/osx/premake5 -------------------------------------------------------------------------------- /premake/win/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redorav/ddspp/HEAD/premake/win/premake5.exe --------------------------------------------------------------------------------