├── .gitignore ├── bin └── win32 │ └── release │ ├── cudaAccuracyTest.exe │ ├── cudaCubicAviPlayback.bat │ ├── cudaCubicAviPlayback.exe │ ├── cudaCubicRayCast.bat │ ├── cudaCubicRayCast.exe │ ├── cudaCubicRotate2D.exe │ ├── cudaCubicTexture3D.bat │ ├── cudaCubicTexture3D.exe │ ├── cudart.dll │ ├── cutil32.dll │ ├── glCubicRayCast.bat │ ├── glCubicRayCast.exe │ ├── glew32.dll │ ├── glut32.dll │ ├── referenceCubicTexture3D.bat │ └── referenceCubicTexture3D.exe ├── change_log.txt ├── code ├── castFloat4.cu ├── cubicPrefilter2D.cu ├── cubicPrefilter3D.cu ├── cubicTex1D.cu ├── cubicTex2D.cu ├── cubicTex3D.cu ├── internal │ ├── bspline_kernel.cu │ ├── cubicPrefilter_kernel.cu │ ├── cubicTex1D_kernel.cu │ ├── cubicTex2D_kernel.cu │ ├── cubicTex3D_kernel.cu │ ├── cutil_math_bugfixes.h │ ├── math_func.cu │ └── version.cu └── memcpy.cu ├── examples ├── CUDA5_important_readme.txt ├── CUDA_SDK_3_readme.txt ├── cuda5_fix │ ├── GL │ │ ├── glew.h │ │ ├── glut.h │ │ └── wglew.h │ ├── cutil.h │ ├── exception.h │ ├── helper_timer.h │ └── lib │ │ ├── glew32.lib │ │ └── glut32.lib ├── cudaAccuracyTest │ ├── Makefile │ ├── Makefile_cuda5 │ ├── cudaAccuracyTest.cpp │ ├── cudaAccuracyTest.sln │ ├── cudaAccuracyTest.vcproj │ ├── cudaAccuracyTest_cuda5.sln │ ├── cudaAccuracyTest_cuda5.vcproj │ └── cudaAccuracyTest_kernel.cu ├── cudaCubicAviPlayback │ ├── cudaCubicAviPlayback.cpp │ ├── cudaCubicAviPlayback.sln │ ├── cudaCubicAviPlayback.vcproj │ ├── cudaCubicAviPlayback.vcproj.user │ ├── cudaCubicAviPlayback_cuda5.sln │ ├── cudaCubicAviPlayback_cuda5.vcproj │ ├── cudaCubicAviPlayback_cuda5.vcproj.user │ └── cudaCubicAviPlayback_kernel.cu ├── cudaCubicRayCast │ ├── Makefile │ ├── Makefile_cuda5 │ ├── cudaCubicRayCast.cpp │ ├── cudaCubicRayCast.sln │ ├── cudaCubicRayCast.vcproj │ ├── cudaCubicRayCast.vcproj.user │ ├── cudaCubicRayCast_cuda5.sln │ ├── cudaCubicRayCast_cuda5.vcproj │ ├── cudaCubicRayCast_cuda5.vcproj.user │ └── cudaCubicRayCast_kernel.cu ├── cudaCubicRotate2D │ ├── Makefile │ ├── Makefile_cuda5 │ ├── cudaCubicRotate2D.sln │ ├── cudaCubicRotate2D.vcproj │ ├── cudaCubicRotate2D_cuda5.sln │ ├── cudaCubicRotate2D_cuda5.vcproj │ ├── cudaCubicRotate2D_kernel.cu │ ├── demo.c │ ├── io.c │ └── io.h ├── cudaCubicTexture3D │ ├── Makefile │ ├── Makefile_cuda5 │ ├── cudaCubicTexture3D.cpp │ ├── cudaCubicTexture3D.sln │ ├── cudaCubicTexture3D.vcproj │ ├── cudaCubicTexture3D.vcproj.user │ ├── cudaCubicTexture3D_cuda5.sln │ ├── cudaCubicTexture3D_cuda5.vcproj │ ├── cudaCubicTexture3D_cuda5.vcproj.user │ └── cudaCubicTexture3D_kernel.cu ├── data │ ├── Bucky.raw │ ├── jynx_divx.avi │ └── lena.img ├── glCubicRayCast │ ├── Makefile │ ├── glCubicRayCast.cpp │ ├── glCubicRayCast.sln │ ├── glCubicRayCast.vcproj │ ├── glCubicRayCast.vcproj.user │ └── tricubic.shader └── referenceCubicTexture3D │ ├── cubicFilter3D_kernel.hpp │ ├── cubicFilter3D_kernel_sse.hpp │ ├── cubicPrefilter3D.hpp │ ├── referenceCubicTexture3D.cpp │ ├── referenceCubicTexture3D.sln │ ├── referenceCubicTexture3D.vcproj │ ├── referenceCubicTexture3D.vcproj.user │ └── referenceCubicTexture3D_kernel.cpp ├── license.txt ├── readme.html └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/.gitignore -------------------------------------------------------------------------------- /bin/win32/release/cudaAccuracyTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudaAccuracyTest.exe -------------------------------------------------------------------------------- /bin/win32/release/cudaCubicAviPlayback.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudaCubicAviPlayback.bat -------------------------------------------------------------------------------- /bin/win32/release/cudaCubicAviPlayback.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudaCubicAviPlayback.exe -------------------------------------------------------------------------------- /bin/win32/release/cudaCubicRayCast.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudaCubicRayCast.bat -------------------------------------------------------------------------------- /bin/win32/release/cudaCubicRayCast.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudaCubicRayCast.exe -------------------------------------------------------------------------------- /bin/win32/release/cudaCubicRotate2D.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudaCubicRotate2D.exe -------------------------------------------------------------------------------- /bin/win32/release/cudaCubicTexture3D.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudaCubicTexture3D.bat -------------------------------------------------------------------------------- /bin/win32/release/cudaCubicTexture3D.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudaCubicTexture3D.exe -------------------------------------------------------------------------------- /bin/win32/release/cudart.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cudart.dll -------------------------------------------------------------------------------- /bin/win32/release/cutil32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/cutil32.dll -------------------------------------------------------------------------------- /bin/win32/release/glCubicRayCast.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/glCubicRayCast.bat -------------------------------------------------------------------------------- /bin/win32/release/glCubicRayCast.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/glCubicRayCast.exe -------------------------------------------------------------------------------- /bin/win32/release/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/glew32.dll -------------------------------------------------------------------------------- /bin/win32/release/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/glut32.dll -------------------------------------------------------------------------------- /bin/win32/release/referenceCubicTexture3D.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/referenceCubicTexture3D.bat -------------------------------------------------------------------------------- /bin/win32/release/referenceCubicTexture3D.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/bin/win32/release/referenceCubicTexture3D.exe -------------------------------------------------------------------------------- /change_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/change_log.txt -------------------------------------------------------------------------------- /code/castFloat4.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/castFloat4.cu -------------------------------------------------------------------------------- /code/cubicPrefilter2D.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/cubicPrefilter2D.cu -------------------------------------------------------------------------------- /code/cubicPrefilter3D.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/cubicPrefilter3D.cu -------------------------------------------------------------------------------- /code/cubicTex1D.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/cubicTex1D.cu -------------------------------------------------------------------------------- /code/cubicTex2D.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/cubicTex2D.cu -------------------------------------------------------------------------------- /code/cubicTex3D.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/cubicTex3D.cu -------------------------------------------------------------------------------- /code/internal/bspline_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/internal/bspline_kernel.cu -------------------------------------------------------------------------------- /code/internal/cubicPrefilter_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/internal/cubicPrefilter_kernel.cu -------------------------------------------------------------------------------- /code/internal/cubicTex1D_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/internal/cubicTex1D_kernel.cu -------------------------------------------------------------------------------- /code/internal/cubicTex2D_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/internal/cubicTex2D_kernel.cu -------------------------------------------------------------------------------- /code/internal/cubicTex3D_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/internal/cubicTex3D_kernel.cu -------------------------------------------------------------------------------- /code/internal/cutil_math_bugfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/internal/cutil_math_bugfixes.h -------------------------------------------------------------------------------- /code/internal/math_func.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/internal/math_func.cu -------------------------------------------------------------------------------- /code/internal/version.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/internal/version.cu -------------------------------------------------------------------------------- /code/memcpy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/code/memcpy.cu -------------------------------------------------------------------------------- /examples/CUDA5_important_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/CUDA5_important_readme.txt -------------------------------------------------------------------------------- /examples/CUDA_SDK_3_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/CUDA_SDK_3_readme.txt -------------------------------------------------------------------------------- /examples/cuda5_fix/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cuda5_fix/GL/glew.h -------------------------------------------------------------------------------- /examples/cuda5_fix/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cuda5_fix/GL/glut.h -------------------------------------------------------------------------------- /examples/cuda5_fix/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cuda5_fix/GL/wglew.h -------------------------------------------------------------------------------- /examples/cuda5_fix/cutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cuda5_fix/cutil.h -------------------------------------------------------------------------------- /examples/cuda5_fix/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cuda5_fix/exception.h -------------------------------------------------------------------------------- /examples/cuda5_fix/helper_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cuda5_fix/helper_timer.h -------------------------------------------------------------------------------- /examples/cuda5_fix/lib/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cuda5_fix/lib/glew32.lib -------------------------------------------------------------------------------- /examples/cuda5_fix/lib/glut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cuda5_fix/lib/glut32.lib -------------------------------------------------------------------------------- /examples/cudaAccuracyTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaAccuracyTest/Makefile -------------------------------------------------------------------------------- /examples/cudaAccuracyTest/Makefile_cuda5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaAccuracyTest/Makefile_cuda5 -------------------------------------------------------------------------------- /examples/cudaAccuracyTest/cudaAccuracyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaAccuracyTest/cudaAccuracyTest.cpp -------------------------------------------------------------------------------- /examples/cudaAccuracyTest/cudaAccuracyTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaAccuracyTest/cudaAccuracyTest.sln -------------------------------------------------------------------------------- /examples/cudaAccuracyTest/cudaAccuracyTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaAccuracyTest/cudaAccuracyTest.vcproj -------------------------------------------------------------------------------- /examples/cudaAccuracyTest/cudaAccuracyTest_cuda5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaAccuracyTest/cudaAccuracyTest_cuda5.sln -------------------------------------------------------------------------------- /examples/cudaAccuracyTest/cudaAccuracyTest_cuda5.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaAccuracyTest/cudaAccuracyTest_cuda5.vcproj -------------------------------------------------------------------------------- /examples/cudaAccuracyTest/cudaAccuracyTest_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaAccuracyTest/cudaAccuracyTest_kernel.cu -------------------------------------------------------------------------------- /examples/cudaCubicAviPlayback/cudaCubicAviPlayback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicAviPlayback/cudaCubicAviPlayback.cpp -------------------------------------------------------------------------------- /examples/cudaCubicAviPlayback/cudaCubicAviPlayback.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicAviPlayback/cudaCubicAviPlayback.sln -------------------------------------------------------------------------------- /examples/cudaCubicAviPlayback/cudaCubicAviPlayback.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicAviPlayback/cudaCubicAviPlayback.vcproj -------------------------------------------------------------------------------- /examples/cudaCubicAviPlayback/cudaCubicAviPlayback.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicAviPlayback/cudaCubicAviPlayback.vcproj.user -------------------------------------------------------------------------------- /examples/cudaCubicAviPlayback/cudaCubicAviPlayback_cuda5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicAviPlayback/cudaCubicAviPlayback_cuda5.sln -------------------------------------------------------------------------------- /examples/cudaCubicAviPlayback/cudaCubicAviPlayback_cuda5.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicAviPlayback/cudaCubicAviPlayback_cuda5.vcproj -------------------------------------------------------------------------------- /examples/cudaCubicAviPlayback/cudaCubicAviPlayback_cuda5.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicAviPlayback/cudaCubicAviPlayback_cuda5.vcproj.user -------------------------------------------------------------------------------- /examples/cudaCubicAviPlayback/cudaCubicAviPlayback_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicAviPlayback/cudaCubicAviPlayback_kernel.cu -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/Makefile -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/Makefile_cuda5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/Makefile_cuda5 -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/cudaCubicRayCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/cudaCubicRayCast.cpp -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/cudaCubicRayCast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/cudaCubicRayCast.sln -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/cudaCubicRayCast.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/cudaCubicRayCast.vcproj -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/cudaCubicRayCast.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/cudaCubicRayCast.vcproj.user -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/cudaCubicRayCast_cuda5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/cudaCubicRayCast_cuda5.sln -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/cudaCubicRayCast_cuda5.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/cudaCubicRayCast_cuda5.vcproj -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/cudaCubicRayCast_cuda5.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/cudaCubicRayCast_cuda5.vcproj.user -------------------------------------------------------------------------------- /examples/cudaCubicRayCast/cudaCubicRayCast_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRayCast/cudaCubicRayCast_kernel.cu -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/Makefile -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/Makefile_cuda5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/Makefile_cuda5 -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/cudaCubicRotate2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/cudaCubicRotate2D.sln -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/cudaCubicRotate2D.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/cudaCubicRotate2D.vcproj -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/cudaCubicRotate2D_cuda5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/cudaCubicRotate2D_cuda5.sln -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/cudaCubicRotate2D_cuda5.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/cudaCubicRotate2D_cuda5.vcproj -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/cudaCubicRotate2D_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/cudaCubicRotate2D_kernel.cu -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/demo.c -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/io.c -------------------------------------------------------------------------------- /examples/cudaCubicRotate2D/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicRotate2D/io.h -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/Makefile -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/Makefile_cuda5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/Makefile_cuda5 -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/cudaCubicTexture3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/cudaCubicTexture3D.cpp -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/cudaCubicTexture3D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/cudaCubicTexture3D.sln -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/cudaCubicTexture3D.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/cudaCubicTexture3D.vcproj -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/cudaCubicTexture3D.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/cudaCubicTexture3D.vcproj.user -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/cudaCubicTexture3D_cuda5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/cudaCubicTexture3D_cuda5.sln -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/cudaCubicTexture3D_cuda5.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/cudaCubicTexture3D_cuda5.vcproj -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/cudaCubicTexture3D_cuda5.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/cudaCubicTexture3D_cuda5.vcproj.user -------------------------------------------------------------------------------- /examples/cudaCubicTexture3D/cudaCubicTexture3D_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/cudaCubicTexture3D/cudaCubicTexture3D_kernel.cu -------------------------------------------------------------------------------- /examples/data/Bucky.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/data/Bucky.raw -------------------------------------------------------------------------------- /examples/data/jynx_divx.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/data/jynx_divx.avi -------------------------------------------------------------------------------- /examples/data/lena.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/data/lena.img -------------------------------------------------------------------------------- /examples/glCubicRayCast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/glCubicRayCast/Makefile -------------------------------------------------------------------------------- /examples/glCubicRayCast/glCubicRayCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/glCubicRayCast/glCubicRayCast.cpp -------------------------------------------------------------------------------- /examples/glCubicRayCast/glCubicRayCast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/glCubicRayCast/glCubicRayCast.sln -------------------------------------------------------------------------------- /examples/glCubicRayCast/glCubicRayCast.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/glCubicRayCast/glCubicRayCast.vcproj -------------------------------------------------------------------------------- /examples/glCubicRayCast/glCubicRayCast.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/glCubicRayCast/glCubicRayCast.vcproj.user -------------------------------------------------------------------------------- /examples/glCubicRayCast/tricubic.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/glCubicRayCast/tricubic.shader -------------------------------------------------------------------------------- /examples/referenceCubicTexture3D/cubicFilter3D_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/referenceCubicTexture3D/cubicFilter3D_kernel.hpp -------------------------------------------------------------------------------- /examples/referenceCubicTexture3D/cubicFilter3D_kernel_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/referenceCubicTexture3D/cubicFilter3D_kernel_sse.hpp -------------------------------------------------------------------------------- /examples/referenceCubicTexture3D/cubicPrefilter3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/referenceCubicTexture3D/cubicPrefilter3D.hpp -------------------------------------------------------------------------------- /examples/referenceCubicTexture3D/referenceCubicTexture3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/referenceCubicTexture3D/referenceCubicTexture3D.cpp -------------------------------------------------------------------------------- /examples/referenceCubicTexture3D/referenceCubicTexture3D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/referenceCubicTexture3D/referenceCubicTexture3D.sln -------------------------------------------------------------------------------- /examples/referenceCubicTexture3D/referenceCubicTexture3D.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/referenceCubicTexture3D/referenceCubicTexture3D.vcproj -------------------------------------------------------------------------------- /examples/referenceCubicTexture3D/referenceCubicTexture3D.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/referenceCubicTexture3D/referenceCubicTexture3D.vcproj.user -------------------------------------------------------------------------------- /examples/referenceCubicTexture3D/referenceCubicTexture3D_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/examples/referenceCubicTexture3D/referenceCubicTexture3D_kernel.cpp -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/license.txt -------------------------------------------------------------------------------- /readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/readme.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyRuijters/CubicInterpolationCUDA/HEAD/readme.md --------------------------------------------------------------------------------