├── .gitignore ├── CUDA ├── BC7.cu ├── bc7_cuda.cpp └── bc7_cuda.h ├── License.txt ├── OpenCL ├── BC7.opencl ├── bc7_opencl.cpp └── bc7_opencl.h ├── ReadMe.md ├── bc7_compressed_block.h ├── bc7_decompress.cpp ├── bc7_decompress.h ├── bc7_gpu.h ├── bc7_gpu.sln ├── bc7_gpu.vcxproj ├── bc7_gpu.vcxproj.filters ├── main.cpp ├── scoped_timer.cpp ├── scoped_timer.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── tga ├── tga.cpp └── tga.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/.gitignore -------------------------------------------------------------------------------- /CUDA/BC7.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/CUDA/BC7.cu -------------------------------------------------------------------------------- /CUDA/bc7_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/CUDA/bc7_cuda.cpp -------------------------------------------------------------------------------- /CUDA/bc7_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/CUDA/bc7_cuda.h -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/License.txt -------------------------------------------------------------------------------- /OpenCL/BC7.opencl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/OpenCL/BC7.opencl -------------------------------------------------------------------------------- /OpenCL/bc7_opencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/OpenCL/bc7_opencl.cpp -------------------------------------------------------------------------------- /OpenCL/bc7_opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/OpenCL/bc7_opencl.h -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/ReadMe.md -------------------------------------------------------------------------------- /bc7_compressed_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/bc7_compressed_block.h -------------------------------------------------------------------------------- /bc7_decompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/bc7_decompress.cpp -------------------------------------------------------------------------------- /bc7_decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/bc7_decompress.h -------------------------------------------------------------------------------- /bc7_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/bc7_gpu.h -------------------------------------------------------------------------------- /bc7_gpu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/bc7_gpu.sln -------------------------------------------------------------------------------- /bc7_gpu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/bc7_gpu.vcxproj -------------------------------------------------------------------------------- /bc7_gpu.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/bc7_gpu.vcxproj.filters -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/main.cpp -------------------------------------------------------------------------------- /scoped_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/scoped_timer.cpp -------------------------------------------------------------------------------- /scoped_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/scoped_timer.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/targetver.h -------------------------------------------------------------------------------- /tga/tga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/tga/tga.cpp -------------------------------------------------------------------------------- /tga/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volition-inc/bc7_gpu/HEAD/tga/tga.h --------------------------------------------------------------------------------