Commit 0571f7e
committed
File tree
- .github/workflows
- include/nbl
- asset/utils
- builtin/hlsl
- bxdf
- base
- ndf
- reflection
- transmission
- cpp_compat/impl
- emulated
- path_tracing
- sampling
- tgmath
- video
- src/nbl
- asset/utils
- builtin
- system
- video
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
87 | 94 | | |
88 | 95 | | |
89 | 96 | | |
| |||
Submodule examples_tests updated 40 files
- 31_HLSLPathTracer/CMakeLists.txt+3-8
- 31_HLSLPathTracer/app_resources/glsl/common.glsl-837
- 31_HLSLPathTracer/app_resources/glsl/litByRectangle.comp-182
- 31_HLSLPathTracer/app_resources/glsl/litBySphere.comp-60
- 31_HLSLPathTracer/app_resources/glsl/litByTriangle.comp-105
- 31_HLSLPathTracer/app_resources/hlsl/compute.render.common.hlsl-12
- 31_HLSLPathTracer/app_resources/hlsl/compute.render.linear.entrypoints.hlsl-21
- 31_HLSLPathTracer/app_resources/hlsl/compute.render.persistent.entrypoints.hlsl-4
- 31_HLSLPathTracer/app_resources/hlsl/compute_render_scene_impl.hlsl+21-30
- 31_HLSLPathTracer/app_resources/hlsl/example_common.hlsl+7-15
- 31_HLSLPathTracer/app_resources/hlsl/intersector.hlsl+3-3
- 31_HLSLPathTracer/app_resources/hlsl/material_system.hlsl+24-48
- 31_HLSLPathTracer/app_resources/hlsl/next_event_estimator.hlsl+58-42
- 31_HLSLPathTracer/app_resources/hlsl/resolve.comp.hlsl+5-5
- 31_HLSLPathTracer/app_resources/hlsl/scene_base.hlsl+2-2
- 31_HLSLPathTracer/app_resources/hlsl/scene_rectangle_light.hlsl+1-1
- 31_HLSLPathTracer/app_resources/hlsl/scene_sphere_light.hlsl+1-1
- 31_HLSLPathTracer/app_resources/hlsl/scene_triangle_light.hlsl+1-1
- 31_HLSLPathTracer/app_resources/hlsl/spirv/pt.compute.rectangle.rwmc.proxy.hlsl
- 31_HLSLPathTracer/app_resources/hlsl/spirv/pt.compute.triangle.methods.shared.hlsl+1-32
- 31_HLSLPathTracer/app_resources/hlsl/spirv/pt.compute.triangle.proxy.hlsl
- 31_HLSLPathTracer/app_resources/hlsl/spirv/pt.compute.triangle.rwmc.proxy.hlsl
- 31_HLSLPathTracer/app_resources/hlsl/spirv/pt.compute.variant.shared.hlsl-7
- 31_HLSLPathTracer/include/nbl/this_example/path_tracer_pipeline_state.hpp+6-5
- 31_HLSLPathTracer/include/nbl/this_example/render_variant_config.hlsl+6-12
- 31_HLSLPathTracer/include/nbl/this_example/render_variant_enums.hlsl+2-2
- 31_HLSLPathTracer/include/nbl/this_example/render_variant_info.hpp+6-9
- 31_HLSLPathTracer/include/nbl/this_example/render_variant_strings.hpp+4-2
- 31_HLSLPathTracer/main.cpp+44-55
- 31_HLSLPathTracer/pt.variant_ids.cmake-1
- 40_PathTracer/app_resources/pathtrace/beauty.hlsl+4-4
- 40_PathTracer/app_resources/pathtrace/common.hlsl+2-2
- 66_HLSLBxDFTests/app_resources/test_compile.comp.hlsl+36-29
- 66_HLSLBxDFTests/app_resources/test_components.hlsl+9-4
- 66_HLSLBxDFTests/app_resources/tests.hlsl+75-53
- 66_HLSLBxDFTests/app_resources/tests_common.hlsl+11-8
- 66_HLSLBxDFTests/main.cpp+1-5
- 66_HLSLBxDFTests/tests.h+34-18
- CMakeLists.txt+1-1
- common/include/nbl/examples/common/CachedPipelineState.hpp+54-62
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
245 | 245 | | |
246 | 246 | | |
247 | 247 | | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
248 | 251 | | |
249 | 252 | | |
250 | 253 | | |
| |||
261 | 264 | | |
262 | 265 | | |
263 | 266 | | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
264 | 270 | | |
265 | 271 | | |
266 | 272 | | |
| |||
269 | 275 | | |
270 | 276 | | |
271 | 277 | | |
272 | | - | |
| 278 | + | |
273 | 279 | | |
274 | 280 | | |
275 | 281 | | |
| |||
361 | 367 | | |
362 | 368 | | |
363 | 369 | | |
364 | | - | |
| 370 | + | |
365 | 371 | | |
366 | 372 | | |
367 | 373 | | |
| |||
389 | 395 | | |
390 | 396 | | |
391 | 397 | | |
| 398 | + | |
392 | 399 | | |
393 | 400 | | |
394 | 401 | | |
| |||
399 | 406 | | |
400 | 407 | | |
401 | 408 | | |
| 409 | + | |
402 | 410 | | |
403 | 411 | | |
404 | 412 | | |
| |||
458 | 466 | | |
459 | 467 | | |
460 | 468 | | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
461 | 472 | | |
462 | 473 | | |
463 | 474 | | |
| |||
0 commit comments