File tree
22 files changed
+1874
-84
lines changed- include/nbl
- asset/utils
- builtin/hlsl
- cpp_compat
- emulated
- math
- equations
- quadrature/gauss_legendre
- matrix_utils
- portable
- shapes
- spirv_intrinsics
- video
- src/nbl/builtin
22 files changed
+1874
-84
lines changedSubmodule examples_tests updated 41 files
- 02_HelloCompute/main.cpp+2-2
- 11_FFT/CMakeLists.txt+24
- 11_FFT/README.md+188
- 11_FFT/app_resources/common.hlsl+13
- 11_FFT/app_resources/shader.comp.hlsl+76
- 11_FFT/config.json.template+28
- 11_FFT/main.cpp+338
- 11_FFT/pipeline.groovy+50
- 28_FFTBloom/CMakeLists.txt+24
- 28_FFTBloom/app_resources/common.hlsl+51
- 28_FFTBloom/app_resources/fft_common.hlsl+72
- 28_FFTBloom/app_resources/fft_convolve_ifft.hlsl+254
- 28_FFTBloom/app_resources/fft_mirror_common.hlsl+46
- 28_FFTBloom/app_resources/image_fft_first_axis.hlsl+88
- 28_FFTBloom/app_resources/image_ifft_first_axis.hlsl+153
- 28_FFTBloom/app_resources/kernel_fft_first_axis.hlsl+80
- 28_FFTBloom/app_resources/kernel_fft_second_axis.hlsl+214
- 28_FFTBloom/app_resources/kernel_spectrum_normalize.hlsl+19
- 28_FFTBloom/config.json.template+28
- 28_FFTBloom/main.cpp+1.3k
- 28_FFTBloom/pipeline.groovy+50
- 62_CAD/CMakeLists.txt+1
- 62_CAD/DrawResourcesFiller.cpp+27-27
- 62_CAD/DrawResourcesFiller.h+3-3
- 62_CAD/Polyline.cpp+699
- 62_CAD/Polyline.h+59-764
- 62_CAD/main.cpp+6-6
- 62_CAD/shaders/geotexture/common.hlsl+1-1
- 62_CAD/shaders/geotexture/vertex_shader.hlsl+3-3
- 62_CAD/shaders/globals.hlsl+63-19
- 62_CAD/shaders/main_pipeline/common.hlsl+24-24
- 62_CAD/shaders/main_pipeline/vertex_shader.hlsl+89-71
- 64_EmulatedFloatTest/CMakeLists.txt+30
- 64_EmulatedFloatTest/app_resources/benchmark/benchmark.comp.hlsl+124
- 64_EmulatedFloatTest/app_resources/benchmark/common.hlsl+24
- 64_EmulatedFloatTest/app_resources/common.hlsl+60
- 64_EmulatedFloatTest/app_resources/test.comp.hlsl+42
- 64_EmulatedFloatTest/main.cpp+1.2k
- 66_HLSLBxDFTests/app_resources/tests.hlsl+127-18
- 66_HLSLBxDFTests/main.cpp+18-4
- CMakeLists.txt+6-1
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
| 36 | + | |
| 37 | + | |
36 | 38 |
| |
37 | 39 |
| |
38 | 40 |
| |
|
Lines changed: 79 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
14 | 92 |
| |
15 | 93 |
| |
16 | 94 |
| |
| |||
146 | 224 |
| |
147 | 225 |
| |
148 | 226 |
| |
| 227 | + | |
149 | 228 |
| |
150 | 229 |
| |
151 | 230 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
| 10 | + | |
10 | 11 |
| |
11 | 12 |
| |
12 | 13 |
| |
|
0 commit comments