├── .gitignore ├── DirectX 11 ├── 01_Skeleton │ ├── BuildSmall.bat │ ├── GraphicsDemo.sln │ ├── GraphicsDemo.vcxproj │ ├── ReadMe.txt │ ├── Tools │ │ └── crinkler14 │ │ │ ├── crinkler.exe │ │ │ ├── license.txt │ │ │ └── manual.txt │ └── Window.c ├── 02_DirectCompute Julia4D │ ├── BuildSmall.bat │ ├── GraphicsDemo.sln │ ├── GraphicsDemo.vcxproj │ ├── ReadMe.txt │ ├── Tools │ │ ├── crinkler13 │ │ │ ├── crinkler.exe │ │ │ ├── license.txt │ │ │ └── manual.txt │ │ └── crinkler14 │ │ │ ├── crinkler.exe │ │ │ ├── license.txt │ │ │ └── manual.txt │ ├── Window.c │ └── qjulia4D.hlsl ├── 03_DirectCompute PostFX Color Filters │ ├── BuildSmall.bat │ ├── ColorFilters.hlsl │ ├── GraphicsDemo.sln │ ├── GraphicsDemo.vcxproj │ ├── ReadMe.txt │ ├── Tools │ │ └── crinkler14 │ │ │ ├── crinkler.exe │ │ │ ├── license.txt │ │ │ └── manual.txt │ ├── Window.c │ └── qjulia4D.hlsl ├── 04_DirectCompute Parallel Reduction Case Study │ ├── 01_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── Intro.exe │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ │ └── crinkler14 │ │ │ │ ├── crinkler.exe │ │ │ │ ├── license.txt │ │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl │ ├── 02_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ │ └── crinkler14 │ │ │ │ ├── crinkler.exe │ │ │ │ ├── license.txt │ │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl │ ├── 03_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ │ └── crinkler14 │ │ │ │ ├── crinkler.exe │ │ │ │ ├── license.txt │ │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl │ ├── 04_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ │ └── crinkler14 │ │ │ │ ├── crinkler.exe │ │ │ │ ├── license.txt │ │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl │ ├── 05_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ │ └── crinkler14 │ │ │ │ ├── crinkler.exe │ │ │ │ ├── license.txt │ │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl │ ├── 06_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ │ └── crinkler14 │ │ │ │ ├── crinkler.exe │ │ │ │ ├── license.txt │ │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl │ ├── 07_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ │ └── crinkler14 │ │ │ │ ├── crinkler.exe │ │ │ │ ├── license.txt │ │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl │ ├── 08_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ │ └── crinkler14 │ │ │ │ ├── crinkler.exe │ │ │ │ ├── license.txt │ │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl │ └── 09_ParallelReduction │ │ ├── BuildSmall.bat │ │ ├── GraphicsDemo.sln │ │ ├── GraphicsDemo.vcxproj │ │ ├── ParallelReduction.hlsl │ │ ├── ReadMe.txt │ │ ├── Tools │ │ └── crinkler14 │ │ │ ├── crinkler.exe │ │ │ ├── license.txt │ │ │ └── manual.txt │ │ ├── Window.c │ │ └── qjulia4D.hlsl └── UsefulCodeSnippets │ ├── CodeSnippets.c │ └── CompilingComputeShaders.c ├── DirectX 12 ├── 01_Skeleton │ ├── BuildSmall.bat │ ├── GraphicsDemo.sln │ ├── GraphicsDemo.vcxproj │ ├── GraphicsDemo.vcxproj.user │ ├── ReadMe.txt │ ├── Tools │ │ └── crinkler20 │ │ │ ├── crinkler.exe │ │ │ ├── license.txt │ │ │ └── manual.txt │ └── Window.c └── 02_Triangle │ ├── BuildSmall.bat │ ├── Compression.log │ ├── GraphicsDemo.VC.db │ ├── GraphicsDemo.sln │ ├── GraphicsDemo.vcxproj │ ├── GraphicsDemo.vcxproj.user │ ├── Intro.exe │ ├── ReadMe.txt │ ├── Tools │ └── crinkler20 │ │ ├── crinkler.exe │ │ ├── license.txt │ │ └── manual.txt │ ├── Win32 │ ├── Debug │ │ └── GraphicsDemo.exe │ └── Release │ │ ├── GraphicsDemo.exe │ │ ├── GraphicsDemo.log │ │ └── Window.obj │ ├── Window.c │ ├── Window_severalCommandlistsAllocators.c │ ├── pixel.hlsl │ └── vertex.hlsl └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /DirectX 11/01_Skeleton/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/01_Skeleton/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/01_Skeleton/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/01_Skeleton/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/01_Skeleton/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/01_Skeleton/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/01_Skeleton/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/01_Skeleton/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/01_Skeleton/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/01_Skeleton/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/01_Skeleton/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/01_Skeleton/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/01_Skeleton/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/01_Skeleton/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/01_Skeleton/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/01_Skeleton/Window.c -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/Tools/crinkler13/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/Tools/crinkler13/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/Tools/crinkler13/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/Tools/crinkler13/license.txt -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/Tools/crinkler13/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/Tools/crinkler13/manual.txt -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/Window.c -------------------------------------------------------------------------------- /DirectX 11/02_DirectCompute Julia4D/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/02_DirectCompute Julia4D/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/ColorFilters.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/ColorFilters.hlsl -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/Window.c -------------------------------------------------------------------------------- /DirectX 11/03_DirectCompute PostFX Color Filters/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/03_DirectCompute PostFX Color Filters/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Intro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Intro.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/01_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/02_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/03_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/04_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/05_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/06_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/07_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/08_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/ParallelReduction.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/ParallelReduction.hlsl -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/Tools/crinkler14/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/Tools/crinkler14/crinkler.exe -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/Tools/crinkler14/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/Tools/crinkler14/license.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/Tools/crinkler14/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/Tools/crinkler14/manual.txt -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/Window.c -------------------------------------------------------------------------------- /DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/qjulia4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/04_DirectCompute Parallel Reduction Case Study/09_ParallelReduction/qjulia4D.hlsl -------------------------------------------------------------------------------- /DirectX 11/UsefulCodeSnippets/CodeSnippets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/UsefulCodeSnippets/CodeSnippets.c -------------------------------------------------------------------------------- /DirectX 11/UsefulCodeSnippets/CompilingComputeShaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 11/UsefulCodeSnippets/CompilingComputeShaders.c -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/GraphicsDemo.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/GraphicsDemo.vcxproj.user -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/Tools/crinkler20/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/Tools/crinkler20/crinkler.exe -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/Tools/crinkler20/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/Tools/crinkler20/license.txt -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/Tools/crinkler20/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/Tools/crinkler20/manual.txt -------------------------------------------------------------------------------- /DirectX 12/01_Skeleton/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/01_Skeleton/Window.c -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/BuildSmall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/BuildSmall.bat -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Compression.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Compression.log -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/GraphicsDemo.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/GraphicsDemo.VC.db -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/GraphicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/GraphicsDemo.sln -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/GraphicsDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/GraphicsDemo.vcxproj -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/GraphicsDemo.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/GraphicsDemo.vcxproj.user -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Intro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Intro.exe -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/ReadMe.txt -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Tools/crinkler20/crinkler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Tools/crinkler20/crinkler.exe -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Tools/crinkler20/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Tools/crinkler20/license.txt -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Tools/crinkler20/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Tools/crinkler20/manual.txt -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Win32/Debug/GraphicsDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Win32/Debug/GraphicsDemo.exe -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Win32/Release/GraphicsDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Win32/Release/GraphicsDemo.exe -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Win32/Release/GraphicsDemo.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Win32/Release/GraphicsDemo.log -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Win32/Release/Window.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Win32/Release/Window.obj -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Window.c -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/Window_severalCommandlistsAllocators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/Window_severalCommandlistsAllocators.c -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/pixel.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/pixel.hlsl -------------------------------------------------------------------------------- /DirectX 12/02_Triangle/vertex.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/DirectX 12/02_Triangle/vertex.hlsl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfgangfengel/graphicsdemoskeleton/HEAD/README.md --------------------------------------------------------------------------------