Author SHA1 Message Date
Emil f07eb4091e Add editor right-click context actions
Native and manual checks / native (windows-2025) (push) Waiting to run
Windows editor and software Vulkan / windows-graphics (push) Waiting to run
Native and manual checks / native (ubuntu-24.04) (push) Failing after 1m54s
Native and manual checks / manual (push) Successful in 32s
2026-09-24 15:44:25 +03:00
Emil 3eea1fe9f1 Preserve final Windows SwiftShader acceptance evidence
Native and manual checks / native (ubuntu-24.04) (push) Failing after 32s
Native and manual checks / manual (push) Successful in 29s
Windows editor and software Vulkan / windows-graphics (push) Canceled after 0s
Native and manual checks / native (windows-2025) (push) Canceled after 0s
2026-09-24 06:38:17 +03:00
Emil f645965d56 Document P1 and P3 integrated acceptance 2026-09-24 06:33:34 +03:00
Emil ed523c61c1 Track actual gameplay sources in async build results
Native and manual checks / native (ubuntu-24.04) (push) Failing after 34s
Native and manual checks / manual (push) Successful in 31s
Native and manual checks / native (windows-2025) (push) Canceled after 0s
Windows editor and software Vulkan / windows-graphics (push) Canceled after 0s
2026-09-24 06:03:09 +03:00
Emil 1b0a5ba4d5 Preserve TAA pipelines when GPU visibility switch fails 2026-09-24 06:00:37 +03:00
Emil cba949a558 Record three-path temporal quality and spatial references
Native and manual checks / native (ubuntu-24.04) (push) Failing after 39s
Native and manual checks / manual (push) Successful in 31s
Windows editor and software Vulkan / windows-graphics (push) Canceled after 0s
Native and manual checks / native (windows-2025) (push) Canceled after 0s
2026-09-24 05:38:50 +03:00
Emil 26a682d669 Record active Vulkan validation in temporal 720p profile 2026-09-24 05:38:29 +03:00
Emil d42771e17e Capture temporal quality across visibility paths and spatial references 2026-09-24 05:38:29 +03:00
Emil 14bac631ea Keep temporal diagnostic staging alive through resize 2026-09-24 05:38:29 +03:00
Emil c50710a565 Record combined P1 and P3 checkpoint 2026-09-24 05:38:29 +03:00
Emil 219e796378 Expose opt-in temporal pixel diagnostics 2026-09-24 05:27:44 +03:00
Emil 03e4727109 Reflect P3 features in the Manual entry page 2026-09-24 05:27:44 +03:00
Emil fcf2fab31e Give Windows schema fixture bounded runner headroom 2026-09-24 05:27:17 +03:00
Emil 518b3d0ce0 Link final P1 and P3 records from the Manual
Native and manual checks / native (ubuntu-24.04) (push) Failing after 37s
Native and manual checks / manual (push) Successful in 33s
Windows editor and software Vulkan / windows-graphics (push) Canceled after 0s
Native and manual checks / native (windows-2025) (push) Canceled after 0s
2026-09-24 05:24:53 +03:00
Emil bf2ab0be5a Update project entry points for P1 and P3
Native and manual checks / native (ubuntu-24.04) (push) Failing after 34s
Native and manual checks / manual (push) Successful in 28s
Windows editor and software Vulkan / windows-graphics (push) Canceled after 0s
Native and manual checks / native (windows-2025) (push) Canceled after 0s
2026-09-24 05:21:17 +03:00
Emil 74f584308c Record final combined P1 Release reference and memory miss
Native and manual checks / native (ubuntu-24.04) (push) Failing after 34s
Native and manual checks / manual (push) Successful in 30s
Windows editor and software Vulkan / windows-graphics (push) Canceled after 0s
Native and manual checks / native (windows-2025) (push) Canceled after 0s
2026-09-24 05:18:51 +03:00
Emil cd36df2e4b Describe P3 renderer boundaries in architecture 2026-09-24 05:18:51 +03:00
Emil 1d7a1e5cdd Document integrated P1 budgets and P3 lighting acceptance
Native and manual checks / native (ubuntu-24.04) (push) Failing after 32s
Native and manual checks / manual (push) Successful in 28s
Windows editor and software Vulkan / windows-graphics (push) Canceled after 0s
Native and manual checks / native (windows-2025) (push) Canceled after 0s
2026-09-24 05:17:26 +03:00
Emil d0262be607 Record combined P3 lighting A/B evidence
Native and manual checks / native (ubuntu-24.04) (push) Failing after 37s
Native and manual checks / manual (push) Successful in 30s
Windows editor and software Vulkan / windows-graphics (push) Canceled after 0s
Native and manual checks / native (windows-2025) (push) Canceled after 0s
2026-09-24 05:10:48 +03:00
Emil 92a29719d2 Document temporal quality captures and 720p costs 2026-09-24 05:09:39 +03:00
3542 changed files with 140313 additions and 233 deletions
+7
View File
@@ -81,6 +81,13 @@ if(TARGET faset_editor_commands AND TARGET faset_build_service)
target_link_libraries(faset_editor_session_tests PRIVATE faset_editor_session) target_link_libraries(faset_editor_session_tests PRIVATE faset_editor_session)
target_compile_definitions(faset_editor_session_tests PRIVATE FASET_TEST_ENGINE="${PROJECT_SOURCE_DIR}") target_compile_definitions(faset_editor_session_tests PRIVATE FASET_TEST_ENGINE="${PROJECT_SOURCE_DIR}")
add_test(NAME editor_session_settings COMMAND faset_editor_session_tests) add_test(NAME editor_session_settings COMMAND faset_editor_session_tests)
add_executable(faset_editor_schema_signature_tests tests/editor_schema_signature_tests.cpp)
target_link_libraries(faset_editor_schema_signature_tests PRIVATE faset_editor_session)
target_compile_definitions(faset_editor_schema_signature_tests PRIVATE FASET_TEST_ENGINE="${PROJECT_SOURCE_DIR}")
add_dependencies(faset_editor_schema_signature_tests faset_build_schema_tool)
add_test(NAME editor_schema_signature
COMMAND faset_editor_schema_signature_tests $<TARGET_FILE:faset_build_schema_tool>)
set_tests_properties(editor_schema_signature PROPERTIES TIMEOUT 180)
add_executable(faset_editor_autosave_tests tests/editor_autosave_tests.cpp) add_executable(faset_editor_autosave_tests tests/editor_autosave_tests.cpp)
target_link_libraries(faset_editor_autosave_tests PRIVATE faset_editor_session) target_link_libraries(faset_editor_autosave_tests PRIVATE faset_editor_session)
add_test(NAME editor_autosave COMMAND faset_editor_autosave_tests) add_test(NAME editor_autosave COMMAND faset_editor_autosave_tests)
+49 -17
View File
@@ -1,6 +1,6 @@
# План разработки Faset Engine # План разработки Faset Engine
Версия 1.3 · 23 сентября 2026 года. Версия 1.4 · 24 сентября 2026 года.
**Статус:** C++ MVP реализован и принят; первый tag — **v0.1.0-mvp**. Его исходники проверены на `4cb82556de31268d2bde73948dd1ff1b6c02f162`; [досье M0–M9](docs/validation/mvp-acceptance.md) связывает этапы с проверками и revisions. После MVP реализованы Lua-модуль и P2 GPU visibility/mesh LOD. Для P2 сохранён direct-эталон; [досье Linux-проверок](docs/validation/p2-gpu-visibility-2026-09-23/README.md), [проверка Windows SwiftShader](docs/validation/p2-swiftshader-2026-09-23/README.md), [протокол приёмки](docs/studies/19-p2-gpu-visibility-acceptance.md), [первое измерение](docs/studies/20-p2-gpu-visibility-benchmark-2026-09-23.md) и [повтор после оптимизации](docs/studies/21-p2-gpu-visibility-optimization-2026-09-23.md) фиксируют функциональную и измерительную область. Первый Debug-профиль обнаружил дорогой MainCull; перенос GPU-выходов в device-local память и bounded atomic append устранили эту стоимость в повторном синтетическом тесте. Это не доказывает ускорение любой игры. Windows P2 функционально проверен в native CI через SwiftShader; физический Windows GPU и другие семейства драйверов остаются без проверки. Для MVP Linux проверен на RTX 2080 Ti, Windows — в native CI через SwiftShader; это не сертификация всех GPU/драйверов. Системный IME и физические переходы между мониторами не проверены, native Wayland restore имеет явный skip; XWayland и Windows lifecycle прошли. Контракты находятся в [ARCHITECTURE.md](docs/ARCHITECTURE.md), история — в [журнале реализации](docs/IMPLEMENTATION.md). **Статус:** C++ MVP реализован и принят; первый tag — **v0.1.0-mvp**. Его исходники проверены на `4cb82556de31268d2bde73948dd1ff1b6c02f162`; [досье M0–M9](docs/validation/mvp-acceptance.md) связывает этапы с проверками и revisions. После MVP реализованы Lua-модуль и P2 GPU visibility/mesh LOD. Для P2 сохранён direct-эталон; [досье Linux-проверок](docs/validation/p2-gpu-visibility-2026-09-23/README.md), [проверка Windows SwiftShader](docs/validation/p2-swiftshader-2026-09-23/README.md), [протокол приёмки](docs/studies/19-p2-gpu-visibility-acceptance.md), [первое измерение](docs/studies/20-p2-gpu-visibility-benchmark-2026-09-23.md) и [повтор после оптимизации](docs/studies/21-p2-gpu-visibility-optimization-2026-09-23.md) фиксируют функциональную и измерительную область. Первый Debug-профиль обнаружил дорогой MainCull; перенос GPU-выходов в device-local память и bounded atomic append устранили эту стоимость в повторном синтетическом тесте. Это не доказывает ускорение любой игры. Windows P2 функционально проверен в native CI через SwiftShader; физический Windows GPU и другие семейства драйверов остаются без проверки. Для MVP Linux проверен на RTX 2080 Ti, Windows — в native CI через SwiftShader; это не сертификация всех GPU/драйверов. Системный IME и физические переходы между мониторами не проверены, native Wayland restore имеет явный skip; XWayland и Windows lifecycle прошли. Контракты находятся в [ARCHITECTURE.md](docs/ARCHITECTURE.md), история — в [журнале реализации](docs/IMPLEMENTATION.md).
@@ -192,8 +192,24 @@ CTest и перенос всех трёх Release-игр, включая Lua-onl
[чистой ревизии `4ac02ee`](https://github.com/emil28092005/Faset_Engine/actions/runs/35937433040). [чистой ревизии `4ac02ee`](https://github.com/emil28092005/Faset_Engine/actions/runs/35937433040).
Это функциональная проверка software Vulkan без активного validation layer. Это функциональная проверка software Vulkan без активного validation layer.
Исторический Release benchmark точных демо нельзя Исторический Release benchmark точных демо нельзя
подменять новым Debug workflow; свежий Release reference и физический Windows GPU подменять новым Debug workflow. На чистой совмещённой ревизии `4a3453e`
остаются отдельным покрытием. Dynamic gameplay loading рассматривать при все три Release-игры после переноса и скрытия исходников отрисовали по 120
кадров на физической RTX с активной Vulkan validation и без ошибок. Точные
2D/3D демо отдельно прошли по 240 кадров: p95 полного кадра 2,694/3,036 мс,
GPU 0,573/0,617 мс, readback 0,559/0,561 мс, simulation 0,242/0,300 мс,
snapshot 0,197/0,288 мс; startup 295/248 мс. Эти показатели укладываются
в соответствующие tracking budgets. Явные Vulkan allocations 43,02/43,12 MiB
**превысили** исходный ориентир 20 MiB из-за двух постоянно созданных 2048²
D32 shadow-атласов по 16 MiB; даже 2D-сцена с нулём shadow raster держит оба.
Память требует оптимизации/нового baseline, без подмены бюджета. При
асинхронных Build и Export статус схемы теперь получает хеш фактического
снимка worker, поэтому изменение C++ в очереди не создаёт ложный статус
устаревания. [Финальная совмещённая проверка](docs/validation/p1-p3-final-2026-09-24/README.md)
повторяет перенос трёх Release-игр на чистом `ed523c6`. Физический Windows GPU
остаётся отдельным покрытием. На этой же ревизии [Windows graphics
CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35949830251)
прошёл 78/78 CTest и перенос трёх 120-кадровых игр через SwiftShader.
Dynamic gameplay loading рассматривать при
подтверждённой проблеме линковки, без обещания C++ hot reload в P1. подтверждённой проблеме линковки, без обещания C++ hot reload в P1.
### P2. GPU-driven visibility и LOD ### P2. GPU-driven visibility и LOD
@@ -212,22 +228,38 @@ GPU instance record содержит стабильные slot/generation; пл
### P3. Освещение, тени и temporal reconstruction ### P3. Освещение, тени и temporal reconstruction
**Освещение, тени и измеренный выбор пути реализованы; приёмка всего P3 ещё **P3 реализован и принят в зафиксированном Linux reference GPU и Windows
открыта.** Есть authored directional/point/spot lights, общий shader ABI для SwiftShader профиле; общие claims о качестве/ускорении не делаются.** Authored
Direct и P2, четыре каскада солнца, отдельный 16-face atlas для point/spot, directional/point/spot lights используют общий shader ABI для Direct и P2.
видимость каскадеров из shadow views и общий бюджет 4096 caster draws. Четыре sun cascades, отдельный 16-face atlas point/spot, видимость каскадеров
из shadow views и общий бюджет 4096 caster draws имеют проверяемые счётчики.
Ранжирование 128 local lights, атомарный отказ от шести point faces и Ранжирование 128 local lights, атомарный отказ от шести point faces и
unshadowed fallback доступны с диагностикой. На Linux reference GPU Release unshadowed fallback оставляют избыток явно видимым. На Linux RTX 2080 Ti
1920×1080 измеренный рост стоимости main raster превысил порог для проверки Release 1920×1080 Forward+ gate сработал при 32 источниках; depth-free
Forward+. Depth-free tiled путь 16×16 прошёл image parity, но полный build + 16×16 tiled путь прошёл image parity. Совмещённый повтор на 7 560 кадрах
raster на плотной контрольной сцене оказался медленнее; `Auto` оставлен на показал, что полная цена tile build+raster выше на 11–13% в плотной сцене,
forward, явный tiled доступен для локализованных источников и выиграл в но ниже на 43–54% для локализованного света. Поэтому `Auto` оставлен на
отдельном сценарии. [Исследование](docs/studies/23-p3-forward-plus-2026-09-24.md) forward, а `Tiled` выбирается явно после профилирования. См.
и [протокол проверки](docs/validation/p3-lighting-2026-09-24/README.md) [benchmark](docs/studies/24-p3-integrated-forward-plus-2026-09-24.md) и
фиксируют Linux и Windows SwiftShader checkpoint; совмещённая с temporal [протокол lighting](docs/validation/p3-lighting-2026-09-24/README.md).
ревизия требует отдельной приёмки.
Затем: previous transforms, motion vectors, jitter, history rejection и TAA; temporal upscaling — после устойчивого TAA. Проверять тонкую геометрию, движение, disocclusion, camera cut и смену разрешения, сравнивать с режимом без temporal. У cache/pass видны затраты и причины обновления. Previous transforms, motion vectors, jitter, depth-aware history rejection,
1:1 TAA и 0.67 temporal Upscale теперь доступны для Direct и P2; Off остаётся
default. Scene history независима от HZB, UI выводится после resolve в
полном разрешении, Player получает полную shader/reflection упаковку. Editor
показывает effective mode, reset/fallback, jitter и опциональные GPU-счётчики
принятых/отклонённых пикселей; resize с включённой диагностикой проверен
отдельным физическим GPU регрессионным тестом. При отказе shader bundle во
время смены Direct → GPU старые TAA pipelines и history сохраняются;
повторная попытка после восстановления пакета проходит. Финальная
[матрица качества](docs/validation/p3-temporal-2026-09-24/matrix/integrated-ed523c6/README.md)
содержит 1 386 кадров на трёх путях видимости, включённую Vulkan validation,
восемь кадров после disocclusion, reset-сценарии и сравнение с 2× spatial
reference. В тонкой контрольной геометрии эталон 2× точнее, а разреженная
720p сцена не ускоряется от Upscale; TAA/Upscale оставлены opt-in. Память P1
превышает старый 20 MiB ориентир из-за shadow atlases. Более широкие сцены,
физический Windows GPU и сравнение с коммерческими temporal алгоритмами не
подтверждены этими проверками; GI/virtualization относятся к P4.
### P4. Непрямой свет и продвинутая геометрия ### P4. Непрямой свет и продвинутая геометрия
+3 -2
View File
@@ -2,12 +2,13 @@
Faset is an independent engine project for desktop **2D and 3D games on Linux and Windows**. Its priorities are a custom editor that is comfortable to use by hand and through MCP, integration with Blender, and a path toward advanced graphics. Faset is an independent engine project for desktop **2D and 3D games on Linux and Windows**. Its priorities are a custom editor that is comfortable to use by hand and through MCP, integration with Blender, and a path toward advanced graphics.
**Current status: the C++ MVP is accepted for the recorded Linux and Windows test profiles; Lua and P2 GPU visibility were added afterward.** The MVP includes the native Editor, shared GUI/MCP authoring, gameplay builds, Vulkan Player, Blender import and standalone export. Both playable games passed Release export and relocated execution on both operating systems. P2 adds optional GPU frustum and two-pass HZB occlusion modes, fixed indirect mesh bins, prepared mesh LOD selection, and an Editor HZB diagnostic view. Direct remains the default and comparison reference; an exported Player can explicitly select a mode with `--visibility direct|gpu-frustum|gpu-occlusion`. P2 GPU acceptance and measurements cover the Linux reference device, with a separate software-Vulkan functional check; Windows P2 functional checks passed on pinned SwiftShader; physical Windows GPUs and broader driver families remain untested. The first Debug/validation benchmark exposed slow GPU culling; device-local outputs and a bounded atomic append improved the same synthetic workloads in the repeat. Neither run establishes a general game-speed benefit. Windows MVP graphics acceptance used software Vulkan. See the [MVP acceptance dossier](docs/validation/mvp-acceptance.md), [P2 Linux evidence](docs/validation/p2-gpu-visibility-2026-09-23/README.md), [P2 SwiftShader compatibility](docs/validation/p2-swiftshader-2026-09-23/README.md), [P2 acceptance protocol](docs/studies/19-p2-gpu-visibility-acceptance.md), [initial benchmark](docs/studies/20-p2-gpu-visibility-benchmark-2026-09-23.md), [optimized benchmark](docs/studies/21-p2-gpu-visibility-optimization-2026-09-23.md), and [implementation checkpoints](docs/IMPLEMENTATION.md) for exact scope and limits. **Current status: the C++ MVP is accepted for the recorded Linux and Windows test profiles; P1–P3 have since added Lua and faster iteration, GPU visibility, authored lighting and shadows, and optional temporal rendering.** The MVP includes the native Editor, shared GUI/MCP authoring, gameplay builds, Vulkan Player, Blender import and standalone export. P1 supplies verified build/package reuse, structured compiler diagnostics, C++/Lua starters and safe scene autosave. P2 adds GPU frustum and two-pass HZB occlusion, fixed indirect mesh bins and prepared mesh LOD selection; Direct remains the default and reference. P3 adds directional/point/spot lights, bounded sun/local shadow atlases, an explicit tiled Forward+ path, 1:1 TAA and lower-resolution temporal upscaling. `Auto` lighting keeps the forward path on the measured dense scene; TAA/Upscale remain opt-in and need game-specific image and timing checks. The clean Linux Release reference met the original 2D/3D timing budgets but exceeded the 20 MiB explicit Vulkan allocation target because of the shadow atlases. Linux physical-GPU and Windows software-Vulkan checks have distinct scope; physical Windows GPUs and broader driver families remain untested. See the [MVP dossier](docs/validation/mvp-acceptance.md), [P1 Release reference](docs/validation/p1-iteration-2026-09-24/final-release/README.md), [P2 evidence](docs/validation/p2-gpu-visibility-2026-09-23/README.md), [P3 lighting](docs/validation/p3-lighting-2026-09-24/README.md), [P3 temporal](docs/validation/p3-temporal-2026-09-24/README.md), and [implementation journal](docs/IMPLEMENTATION.md) for exact revisions and limits.
## Start here ## Start here
- [User manual](docs/manual/index.md) — learn C++ gameplay and follow working examples; maintained alongside implementation. - [User manual](docs/manual/index.md) — learn C++ gameplay and follow working examples; maintained alongside implementation.
- [Development plan](PLAN.md) — milestones through MVP, acceptance criteria, and development beyond MVP. - [Development plan](PLAN.md) — milestones through MVP, acceptance criteria, and development beyond MVP.
- [P1/P3 integrated acceptance](docs/validation/p1-p3-final-2026-09-24/README.md) — final code revision, release exports, GPU evidence and limits.
- [Architecture](docs/ARCHITECTURE.md) — accepted decisions and subsystem boundaries. - [Architecture](docs/ARCHITECTURE.md) — accepted decisions and subsystem boundaries.
- [Documentation](docs/README.md) — navigation and maintenance rules. - [Documentation](docs/README.md) — navigation and maintenance rules.
- [Source studies](docs/studies/README.md) — Unreal Engine, Godot, Unity, Blender, ECS, graphics, asset import, and builds. - [Source studies](docs/studies/README.md) — Unreal Engine, Godot, Unity, Blender, ECS, graphics, asset import, and builds.
@@ -39,7 +40,7 @@ This README is in English. The current planning documents, studies, and research
- **Editor-only MCP:** authoring, assets, import, builds, export, Play/Stop, and editor diagnostics. MCP is absent from the Player and exported games. - **Editor-only MCP:** authoring, assets, import, builds, export, Play/Stop, and editor diagnostics. MCP is absent from the Player and exported games.
- Standard, **unmodified Blender**, glTF/GLB import, and an optional add-on for convenient export and stable IDs. - Standard, **unmodified Blender**, glTF/GLB import, and an optional add-on for convenient export and stable IDs.
The MVP provides two small games, one 2D and one 3D, with scene editing, C++ behavior, physics, Play and standalone export. A [Lua-only example](examples/lua) demonstrates the optional scripting module. P2 GPU visibility applies to opaque static meshes; ordered sprites/UI and the shadow pass keep their separate rendering paths. Its LOD policy chooses among meshes supplied by the project; the Editor and Player report the effective visibility mode if device capabilities force a fallback. Automatic LOD generation, advanced shadows, temporal reconstruction and dynamic global illumination remain future work. See [profiling guidance](docs/manual/editor/profiling.md) before interpreting full-frame measurements. The MVP provides two small games, one 2D and one 3D, with scene editing, C++ behavior, physics, Play and standalone export. A [Lua-only example](examples/lua) demonstrates the optional scripting module. P2 GPU visibility applies to opaque static meshes; ordered sprites/UI and shadow passes keep their separate rendering paths. P3 temporal modes render UI at output resolution after scene reconstruction. Automatic LOD generation, virtual shadow maps and dynamic global illumination remain future work. See [lighting](docs/manual/editor/lighting.md), [temporal rendering](docs/manual/editor/temporal.md) and [profiling guidance](docs/manual/editor/profiling.md) before interpreting full-frame measurements.
## Run the research map ## Run the research map
+8
View File
@@ -188,6 +188,14 @@ Json profileFrames(const std::vector<ProfileSample>& samples) {
{"temporal_internal_width", sample.lighting.temporal_internal_width}, {"temporal_internal_width", sample.lighting.temporal_internal_width},
{"temporal_internal_height", sample.lighting.temporal_internal_height}, {"temporal_internal_height", sample.lighting.temporal_internal_height},
{"temporal_jitter", sample.lighting.temporal_jitter}, {"temporal_jitter", sample.lighting.temporal_jitter},
{"temporal_counters_valid",
sample.lighting.temporal_counters_valid},
{"temporal_accepted_pixels",
sample.lighting.temporal_counters_valid
? Json(sample.lighting.temporal_accepted_pixels) : Json(nullptr)},
{"temporal_rejected_pixels",
sample.lighting.temporal_counters_valid
? Json(sample.lighting.temporal_rejected_pixels) : Json(nullptr)},
{"gpu_temporal_resolve_ms", {"gpu_temporal_resolve_ms",
gpuMeasured ? Json(sample.lighting.gpu_temporal_resolve_ms) : Json(nullptr)}, gpuMeasured ? Json(sample.lighting.gpu_temporal_resolve_ms) : Json(nullptr)},
{"gpu_temporal_composite_ms", {"gpu_temporal_composite_ms",
+5 -3
View File
@@ -24,10 +24,12 @@ if(BUILD_TESTING)
add_dependencies(faset_build_schema_tests faset_build_schema_tool) add_dependencies(faset_build_schema_tests faset_build_schema_tool)
add_test(NAME build_schema_publication COMMAND faset_build_schema_tests $<TARGET_FILE:faset_build_schema_tool> ${PROJECT_SOURCE_DIR}) add_test(NAME build_schema_publication COMMAND faset_build_schema_tests $<TARGET_FILE:faset_build_schema_tool> ${PROJECT_SOURCE_DIR})
# This fixture performs many full cache invalidations and process launches. # This fixture performs many full cache invalidations and process launches.
# Windows runner startup and antivirus overhead exceed 60 seconds even when # Windows runner startup and antivirus overhead vary across otherwise
# individual native fixture commands finish normally. # identical native jobs. The combined P1/P3 fixture completed in 218 s on
# one runner and hit the former 240 s limit on another; retain a bounded
# timeout with enough headroom for this integration-heavy check.
if(WIN32) if(WIN32)
set_tests_properties(build_schema_publication PROPERTIES TIMEOUT 240) set_tests_properties(build_schema_publication PROPERTIES TIMEOUT 360)
else() else()
set_tests_properties(build_schema_publication PROPERTIES TIMEOUT 60) set_tests_properties(build_schema_publication PROPERTIES TIMEOUT 60)
endif() endif()
+5
View File
@@ -45,6 +45,11 @@ if(TARGET faset_ui AND TARGET faset_editor_session AND TARGET faset_scene_view)
target_compile_definitions(faset_editor_gizmo_ui_tests PRIVATE FASET_TEST_ENGINE="${PROJECT_SOURCE_DIR}") target_compile_definitions(faset_editor_gizmo_ui_tests PRIVATE FASET_TEST_ENGINE="${PROJECT_SOURCE_DIR}")
add_test(NAME editor_ui_gizmos COMMAND faset_editor_gizmo_ui_tests) add_test(NAME editor_ui_gizmos COMMAND faset_editor_gizmo_ui_tests)
set_tests_properties(editor_ui_gizmos PROPERTIES LABELS "gpu") set_tests_properties(editor_ui_gizmos PROPERTIES LABELS "gpu")
add_executable(faset_editor_context_menu_ui_tests ${PROJECT_SOURCE_DIR}/tests/editor_ui_context_menu.cpp)
target_link_libraries(faset_editor_context_menu_ui_tests PRIVATE faset_editor_ui)
target_compile_definitions(faset_editor_context_menu_ui_tests PRIVATE FASET_TEST_ENGINE="${PROJECT_SOURCE_DIR}")
add_test(NAME editor_ui_context_menu COMMAND faset_editor_context_menu_ui_tests)
set_tests_properties(editor_ui_context_menu PROPERTIES LABELS "gpu")
add_test(NAME editor_ui_authoring COMMAND faset_editor_ui_tests) add_test(NAME editor_ui_authoring COMMAND faset_editor_ui_tests)
set_tests_properties(editor_ui_authoring PROPERTIES LABELS "gpu") set_tests_properties(editor_ui_authoring PROPERTIES LABELS "gpu")
add_executable(faset_editor_ui_latency ${PROJECT_SOURCE_DIR}/tests/editor_ui_latency.cpp) add_executable(faset_editor_ui_latency ${PROJECT_SOURCE_DIR}/tests/editor_ui_latency.cpp)
+14
View File
@@ -108,6 +108,10 @@ if(BUILD_TESTING)
target_link_libraries(faset_render_temporal_acceptance_tests PRIVATE faset_render) target_link_libraries(faset_render_temporal_acceptance_tests PRIVATE faset_render)
add_test(NAME render_temporal_acceptance COMMAND faset_render_temporal_acceptance_tests) add_test(NAME render_temporal_acceptance COMMAND faset_render_temporal_acceptance_tests)
set_tests_properties(render_temporal_acceptance PROPERTIES LABELS "gpu") set_tests_properties(render_temporal_acceptance PROPERTIES LABELS "gpu")
add_test(NAME render_temporal_quality_matrix COMMAND
"${Python3_EXECUTABLE}" "${PROJECT_SOURCE_DIR}/tests/test_temporal_quality_matrix.py"
"$<TARGET_FILE:faset_render_temporal_acceptance_tests>")
set_tests_properties(render_temporal_quality_matrix PROPERTIES LABELS "p3")
add_executable(faset_render_temporal_shader_contract_tests "${PROJECT_SOURCE_DIR}/tests/render_temporal_shader_contract_tests.cpp") add_executable(faset_render_temporal_shader_contract_tests "${PROJECT_SOURCE_DIR}/tests/render_temporal_shader_contract_tests.cpp")
target_include_directories(faset_render_temporal_shader_contract_tests PRIVATE "${PROJECT_SOURCE_DIR}/src/render") target_include_directories(faset_render_temporal_shader_contract_tests PRIVATE "${PROJECT_SOURCE_DIR}/src/render")
target_link_libraries(faset_render_temporal_shader_contract_tests PRIVATE faset_render faset_core) target_link_libraries(faset_render_temporal_shader_contract_tests PRIVATE faset_render faset_core)
@@ -169,5 +173,15 @@ if(BUILD_TESTING)
"${Python3_EXECUTABLE}" "${PROJECT_SOURCE_DIR}/tests/test_p3_lighting_benchmark.py" "${Python3_EXECUTABLE}" "${PROJECT_SOURCE_DIR}/tests/test_p3_lighting_benchmark.py"
--real-executable "$<TARGET_FILE:faset_p3_lighting_benchmark>") --real-executable "$<TARGET_FILE:faset_p3_lighting_benchmark>")
set_tests_properties(render_lighting_benchmark_smoke PROPERTIES LABELS "gpu;p3" TIMEOUT 90) set_tests_properties(render_lighting_benchmark_smoke PROPERTIES LABELS "gpu;p3" TIMEOUT 90)
add_executable(faset_render_temporal_diagnostics_tests
"${PROJECT_SOURCE_DIR}/tests/render_temporal_diagnostics_tests.cpp")
target_link_libraries(faset_render_temporal_diagnostics_tests PRIVATE
faset_render SDL3::SDL3 Vulkan::Vulkan)
add_test(NAME render_temporal_diagnostics COMMAND faset_render_temporal_diagnostics_tests)
set_tests_properties(render_temporal_diagnostics PROPERTIES LABELS "gpu;p3")
add_test(NAME render_temporal_diagnostics_resize COMMAND
faset_render_temporal_diagnostics_tests --window-resize)
set_tests_properties(render_temporal_diagnostics_resize PROPERTIES
LABELS "gpu;window;p3" TIMEOUT 35 SKIP_RETURN_CODE 77)
endif() endif()
install(FILES ${FASET_SHADER_OUTPUTS} DESTINATION shaders) install(FILES ${FASET_SHADER_OUTPUTS} DESTINATION shaders)
+50 -2
View File
@@ -1,6 +1,6 @@
# Faset Engine — архитектура # Faset Engine — архитектура
Редакция 1.3 · 24 сентября 2026 · **MVP принят; реализация P1/P2 описана отдельно от исходных решений**. Редакция 1.4 · 24 сентября 2026 · **MVP принят; реализация P1–P3 описана отдельно от исходных решений**.
Этот файл фиксирует решения пользователя. **Принято** означает выбранное направление реализации, а не автоматически завершённую возможность движка. Работающий код, выполненные проверки и текущие ограничения перечислены в [журнале реализации](IMPLEMENTATION.md). Этапы до MVP и после него, зависимости работ и критерии готовности находятся в [PLAN.md](../PLAN.md). Этот файл фиксирует решения пользователя. **Принято** означает выбранное направление реализации, а не автоматически завершённую возможность движка. Работающий код, выполненные проверки и текущие ограничения перечислены в [журнале реализации](IMPLEMENTATION.md). Этапы до MVP и после него, зависимости работ и критерии готовности находятся в [PLAN.md](../PLAN.md).
@@ -124,7 +124,10 @@ toolchain, шейдерных и runtime-входов. Повторное исп
метаданные устаревшими. Исходный каталог и копия повторно хешируются после native метаданные устаревшими. Исходный каталог и копия повторно хешируются после native
build и перед повторным использованием кэша или публикацией. Это обнаруживает сохранившееся изменение; build и перед повторным использованием кэша или публикацией. Это обнаруживает сохранившееся изменение;
запись и восстановление прежних байтов другим процессом того же пользователя во запись и восстановление прежних байтов другим процессом того же пользователя во
время чтения компилятором не исключены. Экспорт отдельно проверяет asset generations. время чтения компилятором не исключены. Build и Export возвращают хеш снимка,
который захватил worker, а не хеш на момент постановки команды в очередь;
Session использует его для статуса Inspector. Экспорт отдельно проверяет asset
generations.
Структурированные сообщения компилятора/Lua дополняют сырой лог. Для исходников Структурированные сообщения компилятора/Lua дополняют сырой лог. Для исходников
проекта Editor и MCP вызывают один `faset_source_open` с относительным путём и проекта Editor и MCP вызывают один `faset_source_open` с относительным путём и
@@ -146,6 +149,50 @@ Release reference baseline точных демо. Исходный отчёт, r
синтетическая сцена выявляет стоимость CPU simulation/snapshot; её время нельзя синтетическая сцена выявляет стоимость CPU simulation/snapshot; её время нельзя
переносить на 2D/3D демо или выдавать за обещание кадровой частоты. переносить на 2D/3D демо или выдавать за обещание кадровой частоты.
## 11. P3 — освещение, тени и temporal reconstruction
Один типизированный Light schema подаёт directional, point и spot sources в
Direct и GPU visibility пути через общий shader ABI. При наличии любого
авторского Light compatibility sun не создаётся. В кадре не более 128 local
lights: selection ранжируется по priority, экранному влиянию и стабильному ID,
а omitted lights явно видны в диагностике. Материал остаётся descriptor set 0,
освещение — set 1, GPU scene graphics — set 2. Тени рассчитываются из frustum
камеры и light views независимо от camera culling и prepared LOD: до четырёх
стабилизированных sun cascades, отдельный атлас 16 spot/point faces и общий
лимит 4096 caster draws. Шесть граней point-light резервируются атомарно; при
переполнении свет сохраняется, но его тень отключается. Sun/local атласы пока
создаются заранее и требуют памяти даже для сцены без shadow raster.
Режим `Auto` использует прямой перебор submitted lights во фрагментном шейдере.
Отдельный depth-free `Tiled` строит списки для 16×16 tiles, максимум 64 индекса
на tile; переполнение возвращается к полному списку. Это безопасный явный выбор
для измеренной сцены с локализованным светом. На плотном reference workload
tile construction и raster вместе медленнее, поэтому автоматический выбор не
основан на непроверенной occupancy-эвристике. [Совмещённый benchmark](studies/24-p3-integrated-forward-plus-2026-09-24.md)
публикует оба результата и исходные кадры.
`Off` остаётся default и эталонным выходом renderer. `TAA` рендерит 3D scene
в выходном разрешении с jitter; `Upscale` использует внутреннее разрешение
`ceil(output × scale)` при scale `[0.5, 1)`, но хранит color/depth history в
выходном разрешении. Оба режима обрабатывают непрозрачную scene до отдельного
UI pass, так что Editor/game UI не проходит temporal resolve. Предыдущие
transforms и motion vectors имеют stable instance identity. Истории HZB и
temporal color независимы; cut, смена view/projection/viewport/scale, resize,
несовместимый shader reload и teleport сбрасывают temporal history. Pixels с
невалидным motion, depth mismatch или reactive geometry используют текущий
цвет. Упаковка Player содержит готовые Slang SPIR-V и reflection; runtime не
требует Slang compiler. Фактический режим и причина fallback видны в профиле.
При неудачной пересборке temporal pipelines во время переключения Direct → GPU
активные pipelines, layout fingerprints и TAA history сохраняются; после
исправления shader package переключение можно повторить.
TAA/Upscale пока **опциональны**: малые фиксированные сцены показывают
уменьшение temporal variation, но тонкая геометрия теряет часть пиковой
контрастности, а sparse 720p сцена не выигрывает по GPU времени. Оба режима
добавляют output-resolution histories и повышают явные GPU allocations.
[Датированная temporal-проверка](validation/p3-temporal-2026-09-24/README.md)
показывает кадры, метрики и ограничения; это не эквивалент TSR/FSR/DLSS.
## История решений ## История решений
- **17.09.2026:** выбраны имя Faset Engine, Linux/Windows desktop 2D/3D, ручная работа и MCP, интеграция с Blender, Box2D и Box3D; подготовлены исследования. - **17.09.2026:** выбраны имя Faset Engine, Linux/Windows desktop 2D/3D, ручная работа и MCP, интеграция с Blender, Box2D и Box3D; подготовлены исследования.
@@ -154,5 +201,6 @@ Release reference baseline точных демо. Исходный отчёт, r
- **18.09.2026:** английский принят основным языком интерфейса, диагностик и публичного API; уточнена граница прямых Vulkan-вызовов внутри собственного backend. - **18.09.2026:** английский принят основным языком интерфейса, диагностик и публичного API; уточнена граница прямых Vulkan-вызовов внутри собственного backend.
- **23.09.2026:** после принятого MVP выполнен P2 GPU visibility/LOD на Linux reference GPU; direct renderer сохранён как начальный режим и эталон, ограничения и измерения вынесены в отдельный [протокол](studies/19-p2-gpu-visibility-acceptance.md). - **23.09.2026:** после принятого MVP выполнен P2 GPU visibility/LOD на Linux reference GPU; direct renderer сохранён как начальный режим и эталон, ограничения и измерения вынесены в отдельный [протокол](studies/19-p2-gpu-visibility-acceptance.md).
- **24.09.2026:** P1 итерация фиксирует проверяемое повторное использование schema/package, структурированную диагностику, стартовые C++/Lua проекты, безопасный autosave и измерительный протокол без C++ hot reload. - **24.09.2026:** P1 итерация фиксирует проверяемое повторное использование schema/package, структурированную диагностику, стартовые C++/Lua проекты, безопасный autosave и измерительный протокол без C++ hot reload.
- **24.09.2026:** P3 реализует typed lights, bounded shadow views, measured Forward+/forward selection и opt-in TAA/upscale с отдельными histories и sharp UI; результаты привязаны к контрольным сценам и GPU.
Реализация идёт по [PLAN.md](../PLAN.md). Последующие изменения принятых контрактов фиксируются здесь с причиной и способом проверки. Реализация идёт по [PLAN.md](../PLAN.md). Последующие изменения принятых контрактов фиксируются здесь с причиной и способом проверки.
+82 -6
View File
@@ -501,7 +501,18 @@ scene reached 149.39 ms p95 wall time, dominated by CPU simulation/snapshot;
this is a visible scalability issue, not a tiny-demo Release budget comparison. this is a visible scalability issue, not a tiny-demo Release budget comparison.
The historical exact-scene Release budgets were met in the earlier 2026-09-18 The historical exact-scene Release budgets were met in the earlier 2026-09-18
record, but that evolving working-tree baseline does not certify the current record, but that evolving working-tree baseline does not certify the current
revision. A quiet-host current Release rerun is pending. revision. A clean `4a3453e` physical-GPU rerun now covers both exact-scene
source-hidden Release games, sequentially for 240 frames at 1280×720 with
active Khronos validation. 2D/3D p95 frame wall was 2.694/3.036 ms, GPU
0.573/0.617 ms, readback 0.559/0.561 ms, simulation 0.242/0.300 ms, snapshot
0.197/0.288 ms; startup from `main()` was 295.4/248.3 ms. These meet their
initial tracking budgets. Explicit Vulkan allocation instead reached
45,112,032/45,212,272 bytes (43.02/43.12 MiB), exceeding the 20 MiB target:
eager 2048² D32 sun and local atlases consume 16 MiB each even in the 2D
fixture with zero shadow raster. This memory miss is recorded, not silently
rebaselined. The same clean build exported and source-hidden relocated C++ 2D,
C++ 3D with Blender import, and Lua-only games; all rendered 120 frames with
validation active and zero reported errors.
Linux focused cache, diagnostics, schema and workflow-math tests pass; a real Linux focused cache, diagnostics, schema and workflow-math tests pass; a real
failed-build replay now reports navigable `Scripts/Gameplay.cpp:73:2`. The failed-build replay now reports navigable `Scripts/Gameplay.cpp:73:2`. The
@@ -516,7 +527,9 @@ passed all 61 CTests and the real export integration. Two C++ and one Lua-only
Release package validated and rendered 120 frames each after relocation with Release package validated and rendered 120 frames each after relocation with
source paths unavailable; the [raw Windows report](validation/p1-iteration-2026-09-24/windows-4ac02ee/playable-report.json) source paths unavailable; the [raw Windows report](validation/p1-iteration-2026-09-24/windows-4ac02ee/playable-report.json)
records hashes and software Vulkan device identity. The later `d7a7a7c` records hashes and software Vulkan device identity. The later `d7a7a7c`
real-diagnostic-navigation assertion still awaits its Windows CI result. real-diagnostic-navigation assertion is covered by the clean combined
[`4a3453e` Windows graphics run](https://github.com/emil28092005/Faset_Engine/actions/runs/35944875002):
74/74 CTests, real export integration and three relocated games passed.
Windows had no active Khronos validation layer, and no physical Windows GPU Windows had no active Khronos validation layer, and no physical Windows GPU
performance result is claimed. performance result is claimed.
@@ -560,8 +573,8 @@ lights, Direct/GPU frustum/GPU occlusion, shadows on/off, three independent
repeats, ten warm-up and thirty measured frames per configuration. It reached repeats, ten warm-up and thirty measured frames per configuration. It reached
the agreed Forward+ gate: main-raster overhead at 32 lights was about 0.50 ms the agreed Forward+ gate: main-raster overhead at 32 lights was about 0.50 ms
relative to the matching zero-light case, roughly 30% of that GPU frame; relative to the matching zero-light case, roughly 30% of that GPU frame;
64 and 128 lights added about 1.02 and 2.03 ms. Its raw CSV/report are being 64 and 128 lights added about 1.02 and 2.03 ms. Its exact-revision raw CSV and
published separately with the exact benchmark revision and driver. report are retained in [study 22](studies/22-p3-lighting-benchmark-2026-09-24.md).
Revision `a0a4e29` adds an explicit depth-free 16×16 tiled Forward+ path. One Revision `a0a4e29` adds an explicit depth-free 16×16 tiled Forward+ path. One
compute invocation tests every submitted point/spot range sphere against a compute invocation tests every submitted point/spot range sphere against a
@@ -584,5 +597,68 @@ pinned Linux SwiftShader passed all six P3 cases. At `a0a4e29`,
[native/manual CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35939232585) [native/manual CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35939232585)
and [Windows graphics/SwiftShader CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35939232615) and [Windows graphics/SwiftShader CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35939232615)
passed. The Windows job completed all 64 CTests and ran two relocated Release passed. The Windows job completed all 64 CTests and ran two relocated Release
games for 120 frames each. P3 temporal reconstruction and the final combined games for 120 frames each. The later combined and temporal acceptance follows
revision still require their own acceptance. below; this paragraph describes only the original lighting checkpoint.
## P1+P3 combined renderer checkpoint
At clean source `4a3453e`, the integrated P1 cache, P3 lighting/Forward+ and
first-generation temporal renderer built on Linux and passed 72 of 73 Debug
CTests with one compositor-dependent native window skip and no failures. The
[native/manual CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35944874993)
passed on Linux and Windows; the
[Windows graphics CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35944875002)
passed 74/74 CTests on pinned SwiftShader, the real Release export integration,
and three relocated 120-frame C++ 2D, C++ 3D and Lua-only games. The matching
Linux physical-GPU export check rendered the same three source-hidden packages
for 120 frames with active Khronos validation and no reported errors; the P1
[final Release dossier](validation/p1-iteration-2026-09-24/final-release/README.md)
also profiles the exact C++ demo scenes for 240 frames. Their time budgets
passed, but the old ≤20 MiB explicit-allocation target missed at 43.02/43.12
MiB due to two eager 16 MiB shadow atlases.
The [integrated P3 lighting repeat](studies/24-p3-integrated-forward-plus-2026-09-24.md)
retains 7,560 per-frame raw rows at 1920×1080, both shadow states, three
visibility paths and a separately labelled localized-light workload. On the
dense fixture, tile build plus raster was 11–13% slower at 32–128 lights;
localized light ranges made it 43–54% faster. `Auto` therefore remains forward
and `Tiled` explicit. This is pass-local cost on a single GPU, not a full-game
speedup or a physical Windows performance claim. The
[temporal dossier](validation/p3-temporal-2026-09-24/README.md) records Off,
TAA and 0.67 Upscale raw image sequences and bounded 720p cost on the physical
Linux GPU, with its own exact shader-source revision. TAA/Upscale remain opt-in
because scene quality and whole-frame
timing require game-specific comparison.
At clean source `ed523c6`, the final integrated temporal matrix repeated all
1,386 lossless frames across Direct, GPU frustum and GPU occlusion after adding
optional accepted/rejected-history pixel diagnostics and fixing the resize path
with diagnostic readback enabled. The failed Direct-to-GPU mode switch now
restores active TAA pipelines and history for a safe retry; a real Vulkan RED
test reproduced the old null-pipeline failure. Every frame used active Vulkan
validation and
reported zero errors; the 1,388 generated PNGs, including two contact sheets,
were byte-identical to the earlier branch matrix. The
[final matrix dossier](validation/p3-temporal-2026-09-24/matrix/integrated-ed523c6/README.md)
records the exact binary and shader hashes, eight post-open disocclusion frames,
reset comparisons, the 2× spatial reference and a separate 90-frame 720p
Off/TAA/Upscale profile. This bounded fixture shows reduced static-wire frame
variation, but its spatial reference has lower error and 0.67 Upscale does not
improve whole-frame GPU time. Both temporal modes remain opt-in; the diagnostic
GPU counter remains off during performance measurements.
At the same clean revision, Build and Export results carry the worker's
validated gameplay-source hash. A controlled queued-edit test first reproduced
the false stale-schema state, then passed after the fix. The complete Linux
Debug suite passed 76 of 77 CTests with one compositor-dependent window skip;
24 focused Linux Release tests passed. The real Release Editor exported the C++
2D, C++ 3D with Blender asset, and Lua-only games; each relocated package ran
120 offscreen frames on the physical RTX 2080 Ti with active Vulkan validation
and zero errors while the source project paths were hidden. The
[final combined dossier](validation/p1-p3-final-2026-09-24/README.md) holds the
clean-source verifier report and package manifests. At that same code revision,
[Windows graphics CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35949830251)
passed 78/78 CTests, the Release export integration and three relocated
120-frame C++/Lua game runs on SwiftShader. The
[native/manual CI](https://github.com/emil28092005/Faset_Engine/actions/runs/35949830254)
passed Linux and Windows native checks and strict MkDocs.
+2 -2
View File
@@ -1,6 +1,6 @@
# Документация Faset Engine # Документация Faset Engine
Актуализировано 18.09.2026. C++ MVP реализован и принят в зафиксированных профилях Linux и Windows; результаты и пределы проверок — в [досье приёмки](validation/mvp-acceptance.md). Manual описывает текущие функции, PLAN отделяет их от следующих этапов. Актуализировано 24.09.2026. C++ MVP реализован и принят в зафиксированных профилях Linux и Windows; после него добавлены P1–P3. Результаты и пределы проверок находятся в [досье MVP](validation/mvp-acceptance.md), [финальной совмещённой проверке P1/P3](validation/p1-p3-final-2026-09-24/README.md), [P1 Release reference](validation/p1-iteration-2026-09-24/final-release/README.md), [P3 lighting](validation/p3-lighting-2026-09-24/README.md) и [P3 temporal](validation/p3-temporal-2026-09-24/README.md). Manual описывает текущие функции, PLAN отделяет их от следующих этапов.
## Канонические документы ## Канонические документы
@@ -21,7 +21,7 @@
## Что уже выбрано ## Что уже выбрано
C++ с последующим Lua; EnTT; Vulkan 1.3, Render Graph и Slang; SDL3; Box2D/Box3D; собственный retained UI редактора с тёмной темой; ImGui для отладки; CMake/Ninja/Clang; JSON authoring и cooked binary; отдельный Player; статический gameplay и DLL/SO-плагины редактора под согласованный SDK; вложенные сцены и overrides; fixed tick и Update/FixedUpdate/LateUpdate. C++ gameplay и подключаемый Lua-модуль; EnTT; Vulkan 1.3, Render Graph и Slang; SDL3; Box2D/Box3D; собственный retained UI редактора с тёмной темой; ImGui для отладки; CMake/Ninja/Clang; JSON authoring и cooked binary; отдельный Player; статический gameplay и DLL/SO-плагины редактора под согласованный SDK; вложенные сцены и overrides; fixed tick и Update/FixedUpdate/LateUpdate.
**MCP принадлежит только редактору и его сервисам.** Обычный Blender остаётся внешним инструментом; дополнительный плагин не является модификацией Blender. Сборка первой версии под каждую ОС проверяется на этой ОС. **MCP принадлежит только редактору и его сервисам.** Обычный Blender остаётся внешним инструментом; дополнительный плагин не является модификацией Blender. Сборка первой версии под каждую ОС проверяется на этой ОС.
+10 -1
View File
@@ -1,4 +1,4 @@
# P1 editor visual references # Editor visual references
These image prototypes were generated from the recorded native editor screenshot in These image prototypes were generated from the recorded native editor screenshot in
`docs/validation/checkpoint5-linux-2026-09-18/editor-blender.png` before changing the `docs/validation/checkpoint5-linux-2026-09-18/editor-blender.png` before changing the
@@ -15,3 +15,12 @@ Both were created with the built-in image generation tool using the cited screen
as the edit reference. The accepted behavior and validation criteria are in the as the edit reference. The accepted behavior and validation criteria are in the
[P1 design](../superpowers/specs/2026-09-24-p1-iteration-design.md) and [P1 design](../superpowers/specs/2026-09-24-p1-iteration-design.md) and
[`PLAN.md`](../../PLAN.md). [`PLAN.md`](../../PLAN.md).
The [editor context-menu reference](editor-context-menu-reference.png) explores
the hierarchy, asset-browser, and viewport menus in the same dark editor style.
It is a **visual reference**, not the authority for enabled actions, wording,
positions, or behavior. The [Editor workspace manual](../manual/editor/workspace.md#right-click-context-menus)
describes the intended interaction; source code and tests determine the implemented
behavior.
The [Linux implementation capture](../validation/context-menus-2026-09-24/scene-context.png)
shows the Scene-root menu rendered by the acceptance test.
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

+6 -3
View File
@@ -37,9 +37,12 @@ Use the **Visibility** selector to compare **Direct**, **GPU frustum**, and **GP
Use the **Temporal** selector for **Off**, **TAA**, or **Upscale**. Upscale shows a Use the **Temporal** selector for **Off**, **TAA**, or **Upscale**. Upscale shows a
50–99% render-scale slider; output UI remains sharp. The requested/effective 50–99% render-scale slider; output UI remains sharp. The requested/effective
mode, fallback reason, internal extent, history reset reason and temporal GPU mode, fallback reason, internal extent, clip/internal-pixel jitter, history
pass times are shown separately from visibility and HZB history. This selector reset reason and temporal GPU pass times are shown separately from visibility
only changes the live Editor viewport. See [Temporal rendering](temporal.md). and HZB history. **Count temporal pixels (GPU readback)** optionally shows
accepted and rejected history samples for output-scene pixels; it adds GPU
work and is off by default. This selector only changes the live Editor
viewport. See [Temporal rendering](temporal.md).
The panel reports the previous completed frame: renderer wall time, GPU timestamp time where available, synchronous readback time, draw calls, packed vertices, culled meshes, textures, explicit Vulkan allocation sizes, actual validation availability/errors, and GPU pass-label count. It also shows whether GPU visibility ran, submitted indirect bins, visible instances, frustum rejects, deferred and post-pass visible instances, HZB history validity, counts per prepared LOD level, and GPU pass timings where available. GPU counts are explicitly marked unavailable until the first frame rendered with diagnostics open; only a displayed zero is a measured zero. **Previous HZB history: invalid** is expected after a camera cut or resize until compatible depth history is available. A current HZB preview can still exist after that first frame because it was built from the current depth. Renderer wall time includes waiting for GPU work; it is not thread CPU usage. Memory excludes driver-internal allocations. The overlay itself adds drawing work, so hide it for a baseline performance measurement. The panel reports the previous completed frame: renderer wall time, GPU timestamp time where available, synchronous readback time, draw calls, packed vertices, culled meshes, textures, explicit Vulkan allocation sizes, actual validation availability/errors, and GPU pass-label count. It also shows whether GPU visibility ran, submitted indirect bins, visible instances, frustum rejects, deferred and post-pass visible instances, HZB history validity, counts per prepared LOD level, and GPU pass timings where available. GPU counts are explicitly marked unavailable until the first frame rendered with diagnostics open; only a displayed zero is a measured zero. **Previous HZB history: invalid** is expected after a camera cut or resize until compatible depth history is available. A current HZB preview can still exist after that first frame because it was built from the current depth. Renderer wall time includes waiting for GPU work; it is not thread CPU usage. Memory excludes driver-internal allocations. The overlay itself adds drawing work, so hide it for a baseline performance measurement.
+5
View File
@@ -21,6 +21,11 @@ Play captures the authoring document when requested. Editing the document while
build runs does not silently change that snapshot. Runtime movement, spawned objects, build runs does not silently change that snapshot. Runtime movement, spawned objects,
and gameplay progress do not write back into authoring or its Undo history. and gameplay progress do not write back into authoring or its Undo history.
Build and Export capture gameplay sources when their worker begins. If you edit C++
while a job waits in the queue, it builds the newer snapshot and the Inspector's
schema status uses that snapshot's hash. An edit during the active build causes
the job to reject changed sources; run Build again after the edit.
The Player supports pause and single-step. Editor controls use a private session The Player supports pause and single-step. Editor controls use a private session
control file; they do not expose runtime entity queries through MCP. Closing the control file; they do not expose runtime entity queries through MCP. Closing the
Player is observed by the Editor, which keeps its logs and authoring state. Player is observed by the Editor, which keeps its logs and authoring state.
+6 -1
View File
@@ -72,6 +72,10 @@ a 1×1 sampled D32 fallback image can, affected lights remain unshadowed and
report unavailable shadow views. A device without sampled D32 support cannot report unavailable shadow views. A device without sampled D32 support cannot
start this renderer. Scheduled atlas tiles are cleared and redrawn each frame; start this renderer. Scheduled atlas tiles are cleared and redrawn each frame;
there is no persistent shadow cache yet. there is no persistent shadow cache yet.
Both 2048² atlases are currently allocated when the renderer starts; together
they account for 32 MiB of explicit Vulkan allocation even if a scene does not
render a shadow face. The [clean Release reference](https://github.com/emil28092005/Faset_Engine/blob/main/docs/validation/p1-iteration-2026-09-24/final-release/README.md)
records the resulting memory budget miss in both small example games.
Sprite-only scenes, a missing sun, and a sun with `casts_shadow: false` skip sun Sprite-only scenes, a missing sun, and a sun with `casts_shadow: false` skip sun
shadow raster work. shadow raster work.
@@ -92,7 +96,8 @@ fixed dense benchmark was slower after including tile construction, so there
is no automatic scene-dependent switch yet. The Player profile reports is no automatic scene-dependent switch yet. The Player profile reports
`effective_lighting_path`, tile GPU time and grid size; optional Editor `effective_lighting_path`, tile GPU time and grid size; optional Editor
diagnostics also report stored candidates and overflowing tiles. See diagnostics also report stored candidates and overflowing tiles. See
[Profiling](profiling.md) and the [measured Forward+ study](https://github.com/emil28092005/Faset_Engine/blob/main/docs/studies/23-p3-forward-plus-2026-09-24.md). [Profiling](profiling.md), the [original Forward+ study](https://github.com/emil28092005/Faset_Engine/blob/main/docs/studies/23-p3-forward-plus-2026-09-24.md),
and the [combined-code repeat](https://github.com/emil28092005/Faset_Engine/blob/main/docs/studies/24-p3-integrated-forward-plus-2026-09-24.md).
## Add a point light through MCP ## Add a point light through MCP
+10 -2
View File
@@ -168,7 +168,11 @@ otherwise they are `null`. `gpu_allocated_bytes` includes live temporal targets
and histories, subject to the allocation limits described above. Compare full and histories, subject to the allocation limits described above. Compare full
frame GPU and renderer wall time too: scene raster savings can be offset by frame GPU and renderer wall time too: scene raster savings can be offset by
resolve, memory and synchronous readback. A valid frame-level history flag says resolve, memory and synchronous readback. A valid frame-level history flag says
the previous frame may be sampled, not that every pixel accepted it. For image the previous frame may be sampled, not that every pixel accepted it. Normal
Player profiles set `temporal_counters_valid: false` and leave
`temporal_accepted_pixels`/`temporal_rejected_pixels` null. The Editor's optional
**Count temporal pixels (GPU readback)** toggle measures them for diagnostic
frames but adds GPU work, so keep it off for performance runs. For image
quality, inspect a still thin edge, a slow pan and a newly uncovered surface, and quality, inspect a still thin edge, a slow pan and a newly uncovered surface, and
compare the same frame against Off. See [Temporal rendering](temporal.md) for compare the same frame against Off. See [Temporal rendering](temporal.md) for
mode controls and native C++ configuration. mode controls and native C++ configuration.
@@ -236,7 +240,11 @@ separately labelled workload. Compare `gpu_build_plus_raster_ms`, which includes
frame with `--tile-diagnostics on` reports candidate and overflow counts but frame with `--tile-diagnostics on` reports candidate and overflow counts but
adds a GPU readback, so do not mix it into the timed runs. The adds a GPU readback, so do not mix it into the timed runs. The
[Forward+ measurement](https://github.com/emil28092005/Faset_Engine/blob/main/docs/studies/23-p3-forward-plus-2026-09-24.md) retains [Forward+ measurement](https://github.com/emil28092005/Faset_Engine/blob/main/docs/studies/23-p3-forward-plus-2026-09-24.md) retains
raw frames, shader hashes, and the decision. raw frames, shader hashes, and the initial decision. The
[combined P1+P3 repeat](https://github.com/emil28092005/Faset_Engine/blob/main/docs/studies/24-p3-integrated-forward-plus-2026-09-24.md)
retains 7,560 further frame rows under both shadow settings. Timed tile-count
fields are unavailable when diagnostic readback is off; do not interpret their
placeholder zero as proof that no tile overflowed.
## Current performance scope ## Current performance scope
+23
View File
@@ -17,6 +17,15 @@ view, resize, scale switch or compatible shader reload is expected. A valid hist
does not imply every pixel reused it: newly visible surfaces can still reject does not imply every pixel reused it: newly visible surfaces can still reject
their individual history samples. their individual history samples.
The panel also shows the jitter in clip coordinates and the equivalent internal
pixel offset. Turn on **Count temporal pixels (GPU readback)** only when you need
to inspect how many output-scene pixels actually blended previous color versus
rejected it. The counts are unavailable until a frame completes with the toggle
on; a displayed zero is a measured zero. This optional GPU buffer clear, atomic
count and readback add diagnostic work. Leave it off for timing comparisons.
The toggle affects only the Editor viewport. Counting pauses while the panel is
closed and resumes when it reopens with the checkbox still selected.
For a Player or exported game, select the mode at launch: For a Player or exported game, select the mode at launch:
```sh ```sh
@@ -52,3 +61,17 @@ World transparency and sprites use the scene depth/order and reject stale color
their reactive pixels. TAA and Upscale are optional image-quality paths; compare their reactive pixels. TAA and Upscale are optional image-quality paths; compare
them against Off on the actual game scene, especially thin geometry, slow pans, them against Off on the actual game scene, especially thin geometry, slow pans,
newly revealed surfaces and moving transparent content. newly revealed surfaces and moving transparent content.
These are first-generation, opt-in reconstruction modes. They can reduce shimmer
on a stationary edge while lowering the peak brightness of a subpixel line, and
a newly revealed edge can differ by one pixel from its settled appearance. The
amount depends on scene content, resolution and motion. Upscale also trades
internal render resolution for resolve cost and extra images; it is not always
faster. Compare Off, TAA and Upscale at the target output resolution with both
still and moving cameras, and inspect thin objects and opening doors before
choosing a mode for a game. The [P3 temporal validation record](https://github.com/emil28092005/Faset_Engine/blob/main/docs/validation/p3-temporal-2026-09-24/README.md)
contains source captures, paired image measurements and a bounded 720p cost
profile. The [integrated three-path matrix](https://github.com/emil28092005/Faset_Engine/blob/main/docs/validation/p3-temporal-2026-09-24/matrix/integrated-ed523c6/README.md)
also compares Direct, GPU frustum and GPU occlusion, eight open-door frames,
and a 2× spatial reference. In that fixed thin-wire scene the 2× reference
remains closer to the target than TAA or Upscale.
+36
View File
@@ -94,6 +94,42 @@ These shortcuts apply when a text or numeric editor is not consuming the key.
The viewport camera is an editing camera; navigating it does not rewrite a scene The viewport camera is an editing camera; navigating it does not rewrite a scene
camera component. camera component.
## Right-click context menus
Right-click a Scene-tree row to act on that row. Right-click the scene root or
empty space in the tree to **Create object**, **Create cube**, **Create plane**,
or **Create sprite**. An ordinary local object offers **Frame selection**,
**Rename**, **Add child object**, **Duplicate**, and **Delete**. Duplicate and
Delete are single authoring actions; use **Undo** to reverse either one.
Add child creates an object parented to the
selected row. Right-clicking also selects the target, so an action applies to the
row under the pointer rather than a previously selected object.
Template content keeps its ownership rules. An inherited object offers
**Frame selection**, **Open template source**, **Add local child**, and
**Hide in this scene**. Locally added objects have no corresponding source
object, so they omit **Open template source**. Open an inherited object's source
scene to rename or change its inherited structure; suppression hides it only in
the containing instance. A top-level instance group offers **Open template source**,
**Add local object**, and **Remove instance**. Nested instance groups direct
structural changes to their source. See [Scene templates](templates.md) for
restoring suppressed objects and the difference between source and local edits.
In **Assets**, right-click a project file to select it and show actions appropriate
to its type: **Open script** or **Open scene**, **Import / Reimport** for a
supported source asset, and **Copy project path**. An imported-asset row offers
**Copy asset ID**, **Place in scene** when the cooked asset is available, and
**Reimport source** when it still has a source file. Import and Reimport start jobs;
check **Jobs** or **Console** for the result.
See [Assets and Blender](assets.md) for supported formats and reimport behavior.
A short right-click in the viewport opens the menu for the object under the
pointer, or creation actions when the pointer is over empty space. Moving while
holding the right button past the drag threshold keeps the existing camera
gesture: orbit in 3D or pan in 2D, with no menu on release. Press **Escape** or
click outside a menu to close it. These menus edit the scene through the same
authoring commands as the toolbar and MCP; they do not affect the running Player.
## Edit components and undo ## Edit components and undo
The Inspector uses the registered component schema to show numbers, vectors, The Inspector uses the registered component schema to show numbers, vectors,
+5 -2
View File
@@ -12,8 +12,11 @@ and how those functions interact with scenes, physics, and the editor.
for exact source revisions and coverage limits. The optional Lua module is for exact source revisions and coverage limits. The optional Lua module is
documented separately; those historical acceptance results do not certify later documented separately; those historical acceptance results do not certify later
changes. GPU visibility and prepared mesh LOD arrived after that MVP; see the changes. GPU visibility and prepared mesh LOD arrived after that MVP; see the
[visibility guide](editor/visibility-lod.md). Advanced lighting and geometry [visibility guide](editor/visibility-lod.md). Authored local lights,
systems remain later milestones. cascaded and local shadows, and opt-in temporal reconstruction arrived in
P3; see [Lighting](editor/lighting.md) and
[Temporal rendering](editor/temporal.md). Dynamic GI and virtualized geometry
remain later milestones.
Start with [how gameplay works](scripting/index.md), then read Start with [how gameplay works](scripting/index.md), then read
[frame and physics updates](scripting/lifecycle.md). See [frame and physics updates](scripting/lifecycle.md). See
@@ -0,0 +1,123 @@
# P3 integrated Forward+ decision on the P1+P3 renderer checkpoint
The P1+P3 integration keeps `Auto` on the simple forward light loop. On the
fixed, dense 1920 × 1080 scene, the complete tile-build-plus-raster work is
slower at every nonzero light count in all three visibility modes and both
shadow states. Explicit `Tiled` remains available: when the same lights have a
shorter range, it wins in the affected passes. This is a measured choice for the
recorded fixture, not a universal performance claim or an automatic light-
occupancy heuristic.
This is the **combined final-code repeat** of [the initial 32-light gate](22-p3-lighting-benchmark-2026-09-24.md)
and [the Forward+ implementation experiment](23-p3-forward-plus-2026-09-24.md).
Both A/B paths used clean source revision
`4a3453e2b1868555d833f578d43f48b8bc47d41a`, the same Release
benchmark executable SHA-256
`ceb4fbde8f65bad60a3eb4d24c917619769ff058c66851bc10748ef0af5b45fd`,
and an unchanged, per-file hashed shader bundle. This revision contains the
integrated temporal shader and P1 build changes, although temporal was **off**
in this lighting benchmark. The GPU was a physical NVIDIA GeForce RTX 2080 Ti,
Linux driver 595.84, with Vulkan validation disabled for timings.
## Method and results
Each path ran 36 configurations: shadows on/off × Direct/GPU frustum/GPU
occlusion × 0/4/16/32/64/128 lights. There were three fresh-process repeats
per configuration, ten warm-up plus thirty measured frames per repeat: **108
runs and 3,240 measured frame rows per path**, 6,480 rows total. The wrapper
checked clean source, binary and shader hashes, actual Vulkan device, requested
lighting and visibility path, light counts, per-frame GPU timestamps, shadow
face counts, and zero reported validation errors. Zero errors in these
validation-off sweeps is not a validation-layer result. Values below are the
median of the three process medians; the change is the paired median difference
reported by the comparison tool. Units are GPU milliseconds, 1920 × 1080.
| Shadows | Dense lights | Forward build + raster | Tile build | Tiled raster | Tiled build + raster | Tiled change |
| --- | ---: | ---: | ---: | ---: | ---: | ---: |
| Off | 32 | 0.5519 | 0.0621 | 0.5541 | 0.6161 | +0.0642 (+11.6%) |
| Off | 64 | 1.0653 | 0.1185 | 1.0784 | 1.1968 | +0.1321 (+12.4%) |
| Off | 128 | 2.1048 | 0.2240 | 2.1223 | 2.3460 | +0.2402 (+11.4%) |
| On | 32 | 0.5811 | 0.0622 | 0.5898 | 0.6519 | +0.0712 (+12.2%) |
| On | 64 | 1.1052 | 0.1189 | 1.1158 | 1.2351 | +0.1301 (+11.8%) |
| On | 128 | 2.1509 | 0.2242 | 2.1688 | 2.3924 | +0.2414 (+11.2%) |
The other two visibility modes follow the same direction. Across all three
modes, the 32-light dense penalty spans +0.0642–0.0710 ms with shadows off
and +0.0688–0.0720 ms with shadows on; at 128 lights it spans
+0.2402–0.2425 ms off and +0.2343–0.2420 ms on. The [36-configuration
comparison](data/p3-combined-2026-09-24/comparison.json) holds every point
and paired-run difference. The forward 32-light overhead from its matched
zero-light scene is 0.512–0.548 ms across the six shadow/visibility
combinations; the 15% initial Forward+ investigation gate still triggers.
A triggered investigation gate does not imply that its candidate wins.
A second A/B used the benchmark's `localized` layout (range 1.75 instead of
8 world units, all other scene inputs unchanged). It ran Direct visibility at
32/64/128 lights, shadows off/on, three repeats per path, another **36 runs and
1,080 measured frames**. On this workload the tile pass avoids most fragment
light evaluations:
| Shadows | Localized lights | Forward build + raster | Tiled build + raster | Tiled change |
| --- | ---: | ---: | ---: | ---: |
| Off | 32 | 0.2348 | 0.1327 | −0.1021 (−43.5%) |
| Off | 64 | 0.4260 | 0.2117 | −0.2143 (−50.3%) |
| Off | 128 | 0.8146 | 0.3716 | −0.4430 (−54.4%) |
| On | 32 | 0.2364 | 0.1340 | −0.1025 (−43.3%) |
| On | 64 | 0.4291 | 0.2133 | −0.2158 (−50.3%) |
| On | 128 | 0.8149 | 0.3723 | −0.4426 (−54.3%) |
The table isolates the changed passes; it does **not** say the whole Player
frame improves by the same percentages. The renderer benchmark also performs
visibility, shadow handling and synchronous image readback. The localized
A/B, like the dense sweep, is a synthetic scene on one device and driver.
Explicit `Tiled` is useful for a measured localized-light scene; `Auto` stays
forward until a representative runtime occupancy predictor and broader scene
set justify changing the default.
## Reproduce and inspect
From a clean build of that revision with the Release benchmark target:
```sh
python3 tools/benchmark_p3_lighting.py --sweep \
--executable build/linux-release/faset_p3_lighting_benchmark \
--output /tmp/p3-forward --shadows both --lighting forward \
--validation off --driver 'NVIDIA GeForce RTX 2080 Ti 595.84'
python3 tools/benchmark_p3_lighting.py --sweep \
--executable build/linux-release/faset_p3_lighting_benchmark \
--output /tmp/p3-tiled --shadows both --lighting tiled \
--validation off --driver 'NVIDIA GeForce RTX 2080 Ti 595.84'
python3 tools/benchmark_p3_lighting.py --compare \
--forward-summary /tmp/p3-forward/summary.json \
--tiled-summary /tmp/p3-tiled/summary.json \
--comparison-output /tmp/p3-comparison.json
```
The checked-in [forward](data/p3-combined-2026-09-24/forward/summary.json)
and [tiled](data/p3-combined-2026-09-24/tiled/summary.json) summaries
contain all acquisition-order and hash metadata. Their adjacent `merged.csv`
files and 216 individual `raw/` CSVs retain every frame. The
[localized paired summary](data/p3-combined-2026-09-24/localized/summary.json)
and its 36 adjacent CSVs retain that fixture. The localized paired recorder saved source/binary hashes but did not embed its
own shader-bundle manifest, so exact historical shader identity for that
secondary fixture is less strongly attested than for the dense comparison.
The localized paired command
varied `--light-layout localized`, `--lights`, `--shadows`, and `--lighting`
while preserving the same binary and 1920 × 1080 output; source and binary
hashes are in its summary. The earlier [Forward+ study](23-p3-forward-plus-2026-09-24.md)
contains a separate untimed tile-occupancy diagnostic and byte-identical
image-parity captures. This repeat is a performance check on combined code,
not a new image-parity or occupancy claim. The timed CSVs deliberately have
`light_tile_counts_valid = 0`; their zero `light_tile_overflow_count` field is
a placeholder, not evidence that any tile avoided overflow. The 128-light
dense fixture is expected from its geometry and tile capacity to fall back
to a full per-fragment scan. Likewise, the shadows-on fixture requests up to
768 local faces at 128 lights but renders only 12 under its fixed atlas budget.
The table does not imply 128 fully shadowed point lights.
Functional correctness belongs to the GPU image tests, including the
Direct/P2 image equivalence, tile overflow fallback, shadows, shader reload,
and temporal cases. The separate [P3 acceptance record](../validation/p3-lighting-2026-09-24/README.md)
tracks those checks and the Linux/Windows CI revisions. The benchmark cannot
prove physical Windows GPU performance, broad scene performance, or that
Vulkan validation was active during its timed captures.
+2 -1
View File
@@ -40,9 +40,10 @@ Linux/Windows, десктопные 2D/3D, C++ сначала и Lua следу
- [18 — Сборка и доставка](18-build-cook-and-delivery.md): инкрементальность, cache, состав Player и единый BuildService. - [18 — Сборка и доставка](18-build-cook-and-delivery.md): инкрементальность, cache, состав Player и единый BuildService.
- [19 — P2 GPU visibility: протокол приёмки](19-p2-gpu-visibility-acceptance.md): GPU-сценарии, допуски сравнения и методика измерений; отделяет проверку реализации от предложений исследования 15. - [19 — P2 GPU visibility: протокол приёмки](19-p2-gpu-visibility-acceptance.md): GPU-сценарии, допуски сравнения и методика измерений; отделяет проверку реализации от предложений исследования 15.
- [20 — P2 GPU visibility: первый benchmark](20-p2-gpu-visibility-benchmark-2026-09-23.md): три запуска, raw CSV, p50/p95 и границы интерпретации на Linux reference GPU. - [20 — P2 GPU visibility: первый benchmark](20-p2-gpu-visibility-benchmark-2026-09-23.md): три запуска, raw CSV, p50/p95 и границы интерпретации на Linux reference GPU.
- [22 — P3 light scaling and Forward+ decision](22-p3-lighting-benchmark-2026-09-24.md): Release-замеры 0–128 источников света, все три режима видимости, raw CSV и проверка порога для Forward+.
- [21 — P2 GPU visibility: оптимизация MainCull](21-p2-gpu-visibility-optimization-2026-09-23.md): отдельные измерения переноса выходных буферов в память GPU и замены CAS-цикла на atomic add. - [21 — P2 GPU visibility: оптимизация MainCull](21-p2-gpu-visibility-optimization-2026-09-23.md): отдельные измерения переноса выходных буферов в память GPU и замены CAS-цикла на atomic add.
- [22 — P3 light scaling and Forward+ decision](22-p3-lighting-benchmark-2026-09-24.md): Release-замеры 0–128 источников света, все три режима видимости, raw CSV и проверка порога для Forward+.
- [23 — P3 Forward+: корректность и стоимость](23-p3-forward-plus-2026-09-24.md): сравнение полной цены построения плиток и рисования на плотной и локализованной сценах, raw CSV и точный shader/binary provenance. - [23 — P3 Forward+: корректность и стоимость](23-p3-forward-plus-2026-09-24.md): сравнение полной цены построения плиток и рисования на плотной и локализованной сценах, raw CSV и точный shader/binary provenance.
- [24 — P3 integrated Forward+ decision](24-p3-integrated-forward-plus-2026-09-24.md): повтор 7 560 кадров на чистой совмещённой ревизии P1+P3, обе shadow-конфигурации, плотная и локализованная сцены; `Auto` остаётся forward.
## Происхождение и воспроизводимость ## Происхождение и воспроизводимость
@@ -0,0 +1,548 @@
{
"format": "faset.p3-lighting-comparison",
"version": 1,
"source_revision": "4a3453e2b1868555d833f578d43f48b8bc47d41a",
"benchmark_sha256": "ceb4fbde8f65bad60a3eb4d24c917619769ff058c66851bc10748ef0af5b45fd",
"shader_bundle": {
"compatibility.spv": "83d519113c99c7b14cf92bc6e0e9867edd91da1f370f964df6ba978d51470a54",
"fragmentMain.reflection.json": "2b07af2aae7578bdb6c2aa22658538821608b1dd5aeddd7b06e42b2e78cedf12",
"fragmentMain.spv": "fea4dd48664a510bad12b5e8582f2db798d4dbea62ce0de35dc2acfe32372733",
"gpuCullMain.reflection.json": "8986a45a8d29743d16f0caece9181b18c85d6490d93b4a56cdb4f53052890f3f",
"gpuCullMain.spv": "e5ea6589ddb3613b59f8e58420be95a534cf4149816bc65bae26b1395c638955",
"gpuHzbMain.reflection.json": "589818f670881c64f3aba726ee3bc82fe4b9d835a347f99134e0e157dc4a112e",
"gpuHzbMain.spv": "08682362ee2120ed19d260e613285071747c3e436bb09bb6238e46f9cedc2308",
"gpuPostCullMain.reflection.json": "19ce128388c7f88e0c517fb58a25e46f1382e35ae5f376b10eebe155a2811c4c",
"gpuPostCullMain.spv": "1f8edd3be1f99f9433494a6f7be68f1317d6e7099e19354a7b8130d5d932224d",
"gpuShadowMain.reflection.json": "96b3620b163dadf214933cfba6600b1b6a835c4d98b75b1f83e6ccd3dedb2425",
"gpuShadowMain.spv": "f56e0ae3e9b31cb1e3f24e379c81e11c853f8a7102648aaaebc92a17c7e8e53c",
"gpuTemporalVertexMain.reflection.json": "7a8efe2645e7ce465ca44d19f8cfb2eb6c767abd1c3ce12ed69a149a50be8a8c",
"gpuTemporalVertexMain.spv": "dfe7309aafbd41974668b295e179354965db440e4156b9f12d6a67db16b357f9",
"gpuVertexMain.reflection.json": "01a6cc1bbf3c11c558560d6f8557fd4582d392906ed20a8c729673d0ebf640ed",
"gpuVertexMain.spv": "32421d4a91f3a88d5210fee7af34b48bcad83072f14e2ccb9ef2ff983e45f78f",
"lightTileMain.reflection.json": "bf6a9256aaa6d6edacfa1e1c265d7c8ce2c1e4ea4036e0bea078c22fd4b536ca",
"lightTileMain.spv": "92850edcc5ee5b586a90ce84ee69a98075a6fff3c13db4a57528d9431afe8b68",
"shadowMain.reflection.json": "d39e2f83c797589296eac9dce139b9ad836a895d6685bc40f79dd2609d687fee",
"shadowMain.spv": "7643b4d688492b5ee923b9606f0b0e70343ca05fa67673838206119a6f86d8d8",
"temporalCompositeFragmentMain.reflection.json": "44765a41fc362c9a97b1a19834f285e2e7facb24d8715e3d8559b8e9633a7a0e",
"temporalCompositeFragmentMain.spv": "9e21c8534c0e70a58ae018fb2d143bf9cfb70112e71b67585f525eef0aecad1b",
"temporalCompositeVertexMain.reflection.json": "a3a2ea858bd038423896043b0703704f707addceb5bd56721cd897f6bd092065",
"temporalCompositeVertexMain.spv": "6b19f65b64f40d0a249660fdfba9dd5d95831ffab7314a307bf1f5cf39c6a248",
"temporalFragmentMain.reflection.json": "e36452227788f3703d7342b6d9a7a0efef74ce4da3aa96bb176a26e169ec3628",
"temporalFragmentMain.spv": "03adc6673276979b3ea46becf3a36940d3061af77cb8c965c7471feff8dbf89a",
"temporalResolveMain.reflection.json": "9407ee1522f32df231d996ea691224863c023c1ca42cc02ccd7e16de1d873082",
"temporalResolveMain.spv": "4c5fc0da7a4c424e5426694c2c2d9f3cd17d1a64066712f5defe882ad8776662",
"temporalVertexMain.reflection.json": "6f7812ce88b14bca62a6d2ad82a8657e2ee48c252558f34677c6a2bd980a7edb",
"temporalVertexMain.spv": "6cc3535c952a33ee46fd417fbec7fcad8f24357508b2119256b3077be3d60955",
"vertexMain.reflection.json": "b3bdff863d53a0b385e06a36701a83a6ecafe9a93e97281a732cce8ff862c0db",
"vertexMain.spv": "1ad2631c35d654f48166321ae43d4165043e1b919b14f1dc61caf97b1ada0898"
},
"device": "NVIDIA GeForce RTX 2080 Ti",
"driver": "NVIDIA GeForce RTX 2080 Ti 595.84",
"configurations": 36,
"comparisons": [
{
"shadows": "off",
"visibility": "direct",
"light_count": 0,
"median_forward_ms": 0.035823999999999995,
"median_tiled_ms": 0.03608,
"delta_tiled_minus_forward_ms": 0.0002560000000000062,
"relative_change_percent": 0.7146047342563819,
"repeat_deltas_ms": [
-0.00033600000000000296,
0.0002560000000000062,
0.0004159999999999997
]
},
{
"shadows": "off",
"visibility": "direct",
"light_count": 4,
"median_forward_ms": 0.09262400000000001,
"median_tiled_ms": 0.109104,
"delta_tiled_minus_forward_ms": 0.01623999999999999,
"relative_change_percent": 17.533252720677133,
"repeat_deltas_ms": [
0.016720000000000013,
0.01623999999999999,
0.016063999999999995
]
},
{
"shadows": "off",
"visibility": "direct",
"light_count": 16,
"median_forward_ms": 0.28555200000000003,
"median_tiled_ms": 0.3236,
"delta_tiled_minus_forward_ms": 0.038031999999999955,
"relative_change_percent": 13.318765058553241,
"repeat_deltas_ms": [
0.03825600000000001,
0.038031999999999955,
0.03697600000000001
]
},
{
"shadows": "off",
"visibility": "direct",
"light_count": 32,
"median_forward_ms": 0.551856,
"median_tiled_ms": 0.616064,
"delta_tiled_minus_forward_ms": 0.06422399999999995,
"relative_change_percent": 11.637818561363824,
"repeat_deltas_ms": [
0.043904000000000054,
0.06811199999999995,
0.06422399999999995
]
},
{
"shadows": "off",
"visibility": "direct",
"light_count": 64,
"median_forward_ms": 1.06528,
"median_tiled_ms": 1.1968480000000001,
"delta_tiled_minus_forward_ms": 0.132096,
"relative_change_percent": 12.400120156203062,
"repeat_deltas_ms": [
0.13222400000000012,
0.132096,
0.11894399999999994
]
},
{
"shadows": "off",
"visibility": "direct",
"light_count": 128,
"median_forward_ms": 2.1048,
"median_tiled_ms": 2.346016,
"delta_tiled_minus_forward_ms": 0.24024,
"relative_change_percent": 11.413911060433296,
"repeat_deltas_ms": [
0.2479680000000002,
0.24024,
0.22716800000000026
]
},
{
"shadows": "off",
"visibility": "gpu-frustum",
"light_count": 0,
"median_forward_ms": 0.033952,
"median_tiled_ms": 0.034224000000000004,
"delta_tiled_minus_forward_ms": 6.400000000000156e-05,
"relative_change_percent": 0.18850141376060778,
"repeat_deltas_ms": [
0.0002720000000000014,
0.0,
6.400000000000156e-05
]
},
{
"shadows": "off",
"visibility": "gpu-frustum",
"light_count": 4,
"median_forward_ms": 0.090976,
"median_tiled_ms": 0.108112,
"delta_tiled_minus_forward_ms": 0.016944,
"relative_change_percent": 18.624692226521283,
"repeat_deltas_ms": [
0.016944,
0.016848000000000002,
0.017712000000000006
]
},
{
"shadows": "off",
"visibility": "gpu-frustum",
"light_count": 16,
"median_forward_ms": 0.28222400000000003,
"median_tiled_ms": 0.32104,
"delta_tiled_minus_forward_ms": 0.03881599999999996,
"relative_change_percent": 13.75361415046203,
"repeat_deltas_ms": [
0.03875200000000001,
0.03881599999999996,
0.03967999999999999
]
},
{
"shadows": "off",
"visibility": "gpu-frustum",
"light_count": 32,
"median_forward_ms": 0.545936,
"median_tiled_ms": 0.617728,
"delta_tiled_minus_forward_ms": 0.07095999999999991,
"relative_change_percent": 12.997860555083363,
"repeat_deltas_ms": [
0.07095999999999991,
0.07179200000000008,
0.07079999999999997
]
},
{
"shadows": "off",
"visibility": "gpu-frustum",
"light_count": 64,
"median_forward_ms": 1.0663200000000002,
"median_tiled_ms": 1.1959520000000001,
"delta_tiled_minus_forward_ms": 0.12811199999999978,
"relative_change_percent": 12.014404681521473,
"repeat_deltas_ms": [
0.12811199999999978,
0.13142399999999999,
0.12640000000000007
]
},
{
"shadows": "off",
"visibility": "gpu-frustum",
"light_count": 128,
"median_forward_ms": 2.094576,
"median_tiled_ms": 2.337072,
"delta_tiled_minus_forward_ms": 0.24249600000000004,
"relative_change_percent": 11.577331163920528,
"repeat_deltas_ms": [
0.24249600000000004,
0.23665599999999998,
0.2443360000000001
]
},
{
"shadows": "off",
"visibility": "gpu-occlusion",
"light_count": 0,
"median_forward_ms": 0.039824,
"median_tiled_ms": 0.039760000000000004,
"delta_tiled_minus_forward_ms": -0.00015999999999999348,
"relative_change_percent": -0.4017677782241701,
"repeat_deltas_ms": [
-6.399999999999462e-05,
-0.00019200000000000467,
-0.00015999999999999348
]
},
{
"shadows": "off",
"visibility": "gpu-occlusion",
"light_count": 4,
"median_forward_ms": 0.09688,
"median_tiled_ms": 0.113168,
"delta_tiled_minus_forward_ms": 0.01680000000000001,
"relative_change_percent": 17.341040462427756,
"repeat_deltas_ms": [
0.017168000000000003,
0.01513600000000001,
0.01680000000000001
]
},
{
"shadows": "off",
"visibility": "gpu-occlusion",
"light_count": 16,
"median_forward_ms": 0.288624,
"median_tiled_ms": 0.325312,
"delta_tiled_minus_forward_ms": 0.03851199999999999,
"relative_change_percent": 13.343311713509616,
"repeat_deltas_ms": [
0.03854399999999997,
0.035616000000000037,
0.03851199999999999
]
},
{
"shadows": "off",
"visibility": "gpu-occlusion",
"light_count": 32,
"median_forward_ms": 0.5551200000000001,
"median_tiled_ms": 0.62232,
"delta_tiled_minus_forward_ms": 0.06985600000000003,
"relative_change_percent": 12.583945813517802,
"repeat_deltas_ms": [
0.07079999999999997,
0.06719999999999993,
0.06985600000000003
]
},
{
"shadows": "off",
"visibility": "gpu-occlusion",
"light_count": 64,
"median_forward_ms": 1.07736,
"median_tiled_ms": 1.2016,
"delta_tiled_minus_forward_ms": 0.13207999999999998,
"relative_change_percent": 12.259597534714485,
"repeat_deltas_ms": [
0.13207999999999998,
0.12041600000000008,
0.13246399999999992
]
},
{
"shadows": "off",
"visibility": "gpu-occlusion",
"light_count": 128,
"median_forward_ms": 2.112208,
"median_tiled_ms": 2.3392,
"delta_tiled_minus_forward_ms": 0.24222400000000022,
"relative_change_percent": 11.467809988410243,
"repeat_deltas_ms": [
0.24222400000000022,
0.21299199999999985,
0.24228800000000028
]
},
{
"shadows": "on",
"visibility": "direct",
"light_count": 0,
"median_forward_ms": 0.036208000000000004,
"median_tiled_ms": 0.036336,
"delta_tiled_minus_forward_ms": 0.00015999999999999348,
"relative_change_percent": 0.44189129474147554,
"repeat_deltas_ms": [
-6.400000000000156e-05,
0.00015999999999999348,
0.0002079999999999929
]
},
{
"shadows": "on",
"visibility": "direct",
"light_count": 4,
"median_forward_ms": 0.129152,
"median_tiled_ms": 0.147728,
"delta_tiled_minus_forward_ms": 0.018544000000000005,
"relative_change_percent": 14.35827552031715,
"repeat_deltas_ms": [
0.018543999999999977,
0.019247999999999987,
0.018544000000000005
]
},
{
"shadows": "on",
"visibility": "direct",
"light_count": 16,
"median_forward_ms": 0.318784,
"median_tiled_ms": 0.3584,
"delta_tiled_minus_forward_ms": 0.03958400000000001,
"relative_change_percent": 12.417185304155796,
"repeat_deltas_ms": [
0.039296,
0.04108799999999996,
0.03958400000000001
]
},
{
"shadows": "on",
"visibility": "direct",
"light_count": 32,
"median_forward_ms": 0.5811200000000001,
"median_tiled_ms": 0.651888,
"delta_tiled_minus_forward_ms": 0.07118399999999991,
"relative_change_percent": 12.249449339207032,
"repeat_deltas_ms": [
0.06895999999999991,
0.07118399999999991,
0.072048
]
},
{
"shadows": "on",
"visibility": "direct",
"light_count": 64,
"median_forward_ms": 1.105216,
"median_tiled_ms": 1.2350560000000002,
"delta_tiled_minus_forward_ms": 0.13014399999999982,
"relative_change_percent": 11.775435751925398,
"repeat_deltas_ms": [
0.13174399999999986,
0.13014399999999982,
0.12984000000000018
]
},
{
"shadows": "on",
"visibility": "direct",
"light_count": 128,
"median_forward_ms": 2.15088,
"median_tiled_ms": 2.3924,
"delta_tiled_minus_forward_ms": 0.24139200000000027,
"relative_change_percent": 11.22294130774382,
"repeat_deltas_ms": [
0.24139200000000027,
0.24350399999999972,
0.23708799999999952
]
},
{
"shadows": "on",
"visibility": "gpu-frustum",
"light_count": 0,
"median_forward_ms": 0.034112,
"median_tiled_ms": 0.034432,
"delta_tiled_minus_forward_ms": 0.0002400000000000041,
"relative_change_percent": 0.7035647279549838,
"repeat_deltas_ms": [
0.0004159999999999997,
0.0001759999999999956,
0.0002400000000000041
]
},
{
"shadows": "on",
"visibility": "gpu-frustum",
"light_count": 4,
"median_forward_ms": 0.12596800000000002,
"median_tiled_ms": 0.14544,
"delta_tiled_minus_forward_ms": 0.01947199999999999,
"relative_change_percent": 15.457894068334804,
"repeat_deltas_ms": [
0.01947199999999999,
0.019648,
0.017855999999999983
]
},
{
"shadows": "on",
"visibility": "gpu-frustum",
"light_count": 16,
"median_forward_ms": 0.312736,
"median_tiled_ms": 0.35175999999999996,
"delta_tiled_minus_forward_ms": 0.03899199999999997,
"relative_change_percent": 12.468024148163297,
"repeat_deltas_ms": [
0.04039999999999999,
0.03899199999999997,
0.03870399999999996
]
},
{
"shadows": "on",
"visibility": "gpu-frustum",
"light_count": 32,
"median_forward_ms": 0.5816,
"median_tiled_ms": 0.6535679999999999,
"delta_tiled_minus_forward_ms": 0.07196799999999992,
"relative_change_percent": 12.374140302613467,
"repeat_deltas_ms": [
0.07196799999999992,
0.07254400000000005,
0.0689439999999999
]
},
{
"shadows": "on",
"visibility": "gpu-frustum",
"light_count": 64,
"median_forward_ms": 1.108976,
"median_tiled_ms": 1.238176,
"delta_tiled_minus_forward_ms": 0.12919999999999998,
"relative_change_percent": 11.650387384397858,
"repeat_deltas_ms": [
0.1331199999999999,
0.12919999999999998,
0.1180159999999999
]
},
{
"shadows": "on",
"visibility": "gpu-frustum",
"light_count": 128,
"median_forward_ms": 2.143744,
"median_tiled_ms": 2.38072,
"delta_tiled_minus_forward_ms": 0.2343200000000003,
"relative_change_percent": 10.93040960114642,
"repeat_deltas_ms": [
0.2343200000000003,
0.23708799999999997,
0.22540799999999983
]
},
{
"shadows": "on",
"visibility": "gpu-occlusion",
"light_count": 0,
"median_forward_ms": 0.039744,
"median_tiled_ms": 0.039888,
"delta_tiled_minus_forward_ms": 0.00012799999999999617,
"relative_change_percent": 0.3220611916263994,
"repeat_deltas_ms": [
0.00012799999999999617,
0.0001759999999999956,
-0.00011200000000000099
]
},
{
"shadows": "on",
"visibility": "gpu-occlusion",
"light_count": 4,
"median_forward_ms": 0.13144,
"median_tiled_ms": 0.15016000000000002,
"delta_tiled_minus_forward_ms": 0.018720000000000014,
"relative_change_percent": 14.242239805234338,
"repeat_deltas_ms": [
0.020176,
0.018720000000000014,
0.018143999999999993
]
},
{
"shadows": "on",
"visibility": "gpu-occlusion",
"light_count": 16,
"median_forward_ms": 0.317088,
"median_tiled_ms": 0.356592,
"delta_tiled_minus_forward_ms": 0.0388,
"relative_change_percent": 12.236350792209103,
"repeat_deltas_ms": [
0.04044799999999993,
0.0388,
0.03547200000000006
]
},
{
"shadows": "on",
"visibility": "gpu-occlusion",
"light_count": 32,
"median_forward_ms": 0.587824,
"median_tiled_ms": 0.656576,
"delta_tiled_minus_forward_ms": 0.06875200000000004,
"relative_change_percent": 11.6960178556847,
"repeat_deltas_ms": [
0.06875200000000004,
0.07057599999999997,
0.06574400000000002
]
},
{
"shadows": "on",
"visibility": "gpu-occlusion",
"light_count": 64,
"median_forward_ms": 1.1133600000000001,
"median_tiled_ms": 1.2440799999999999,
"delta_tiled_minus_forward_ms": 0.12927999999999984,
"relative_change_percent": 11.611697923403016,
"repeat_deltas_ms": [
0.12927999999999984,
0.13236799999999982,
0.12646400000000013
]
},
{
"shadows": "on",
"visibility": "gpu-occlusion",
"light_count": 128,
"median_forward_ms": 2.14672,
"median_tiled_ms": 2.3892160000000002,
"delta_tiled_minus_forward_ms": 0.242016,
"relative_change_percent": 11.273757173734813,
"repeat_deltas_ms": [
0.242016,
0.24249600000000004,
0.22891200000000023
]
}
]
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.046304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.046304,0,0,0,0,1.284544,2.528209,0.904597
0,dense,off,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.046912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.046912,0,0,0,0,2.007840,3.823292,0.842589
0,dense,off,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.046880,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.046880,0,0,0,0,1.476192,2.858883,0.873037
0,dense,off,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.046912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.046912,0,0,0,0,1.997984,3.652740,0.843522
0,dense,off,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.047552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.047552,0,0,0,0,1.294624,2.499044,0.847599
0,dense,off,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.047168,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.047168,0,0,0,0,2.419616,3.728303,0.798145
0,dense,off,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.046016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.046016,0,0,0,0,1.306240,2.793569,0.897102
0,dense,off,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045760,0,0,0,0,2.495552,4.207116,0.893405
0,dense,off,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.046272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.046272,0,0,0,0,1.302368,2.645230,0.921769
0,dense,off,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045792,0,0,0,0,1.923744,3.539406,0.901000
0,dense,off,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045728,0,0,0,0,1.492448,3.141706,0.927199
0,dense,off,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045824,0,0,0,0,1.559168,3.034474,0.895429
0,dense,off,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045856,0,0,0,0,1.435008,2.922072,0.956514
0,dense,off,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045888,0,0,0,0,1.280928,2.728076,1.030955
0,dense,off,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.044928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.044928,0,0,0,0,1.985184,3.610270,0.903014
0,dense,off,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045888,0,0,0,0,1.274656,2.636544,0.982834
0,dense,off,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045696,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045696,0,0,0,0,1.796288,4.010906,0.859371
0,dense,off,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045600,0,0,0,0,1.467424,2.973328,0.965691
0,dense,off,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.046080,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.046080,0,0,0,0,1.985216,3.793476,0.884709
0,dense,off,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045760,0,0,0,0,1.313280,2.689964,0.996129
0,dense,off,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.046112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.046112,0,0,0,0,2.199936,3.679661,0.901040
0,dense,off,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.045920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.045920,0,0,0,0,1.302656,2.627266,0.938811
0,dense,off,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036832,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036832,0,0,0,0,1.611424,2.878630,0.906550
0,dense,off,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037408,0,0,0,0,1.407008,2.931128,0.932119
0,dense,off,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037984,0,0,0,0,1.273216,2.402743,0.911870
0,dense,off,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037408,0,0,0,0,1.839392,3.210316,0.871154
0,dense,off,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037440,0,0,0,0,1.279680,2.539791,0.953078
0,dense,off,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037472,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037472,0,0,0,0,1.708704,3.033041,0.849973
0,dense,off,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037152,0,0,0,0,1.407776,2.803318,0.894237
0,dense,off,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037824,0,0,0,0,1.266592,2.370180,0.905508
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.046304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.046304 0 0 0 0 1.284544 2.528209 0.904597
3 0 dense off direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.046912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.046912 0 0 0 0 2.007840 3.823292 0.842589
4 0 dense off direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.046880 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.046880 0 0 0 0 1.476192 2.858883 0.873037
5 0 dense off direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.046912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.046912 0 0 0 0 1.997984 3.652740 0.843522
6 0 dense off direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.047552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.047552 0 0 0 0 1.294624 2.499044 0.847599
7 0 dense off direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.047168 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.047168 0 0 0 0 2.419616 3.728303 0.798145
8 0 dense off direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.046016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.046016 0 0 0 0 1.306240 2.793569 0.897102
9 0 dense off direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045760 0 0 0 0 2.495552 4.207116 0.893405
10 0 dense off direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.046272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.046272 0 0 0 0 1.302368 2.645230 0.921769
11 0 dense off direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045792 0 0 0 0 1.923744 3.539406 0.901000
12 0 dense off direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045728 0 0 0 0 1.492448 3.141706 0.927199
13 0 dense off direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045824 0 0 0 0 1.559168 3.034474 0.895429
14 0 dense off direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045856 0 0 0 0 1.435008 2.922072 0.956514
15 0 dense off direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045888 0 0 0 0 1.280928 2.728076 1.030955
16 0 dense off direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.044928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.044928 0 0 0 0 1.985184 3.610270 0.903014
17 0 dense off direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045888 0 0 0 0 1.274656 2.636544 0.982834
18 0 dense off direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045696 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045696 0 0 0 0 1.796288 4.010906 0.859371
19 0 dense off direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045600 0 0 0 0 1.467424 2.973328 0.965691
20 0 dense off direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.046080 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.046080 0 0 0 0 1.985216 3.793476 0.884709
21 0 dense off direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045760 0 0 0 0 1.313280 2.689964 0.996129
22 0 dense off direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.046112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.046112 0 0 0 0 2.199936 3.679661 0.901040
23 0 dense off direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.045920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.045920 0 0 0 0 1.302656 2.627266 0.938811
24 0 dense off direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036832 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036832 0 0 0 0 1.611424 2.878630 0.906550
25 0 dense off direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037408 0 0 0 0 1.407008 2.931128 0.932119
26 0 dense off direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037984 0 0 0 0 1.273216 2.402743 0.911870
27 0 dense off direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037408 0 0 0 0 1.839392 3.210316 0.871154
28 0 dense off direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037440 0 0 0 0 1.279680 2.539791 0.953078
29 0 dense off direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037472 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037472 0 0 0 0 1.708704 3.033041 0.849973
30 0 dense off direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037152 0 0 0 0 1.407776 2.803318 0.894237
31 0 dense off direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037824 0 0 0 0 1.266592 2.370180 0.905508
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035424,0,0,0,0,1.272512,2.478184,0.867286
0,dense,off,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035904,0,0,0,0,1.762592,3.195278,0.801301
0,dense,off,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035968,0,0,0,0,1.552384,2.879962,0.796703
0,dense,off,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036160,0,0,0,0,1.492800,3.009898,0.876373
0,dense,off,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035392,0,0,0,0,1.456768,2.707247,0.804097
0,dense,off,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.034912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034912,0,0,0,0,1.271744,2.499685,0.893756
0,dense,off,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035968,0,0,0,0,2.147520,3.602455,0.842650
0,dense,off,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035552,0,0,0,0,1.272480,2.439973,0.831198
0,dense,off,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036384,0,0,0,0,1.474976,2.742052,0.821810
0,dense,off,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036064,0,0,0,0,1.383232,2.732184,0.910438
0,dense,off,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035872,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035872,0,0,0,0,1.585888,3.269197,1.139068
0,dense,off,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035584,0,0,0,0,1.815360,3.132649,0.876153
0,dense,off,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035296,0,0,0,0,1.275584,2.474938,0.879459
0,dense,off,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035424,0,0,0,0,1.884352,3.050414,0.832651
0,dense,off,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035776,0,0,0,0,1.260832,2.525494,0.870111
0,dense,off,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035392,0,0,0,0,1.414080,2.641462,0.933751
0,dense,off,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035744,0,0,0,0,2.048512,3.324882,0.856565
0,dense,off,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.039104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.039104,0,0,0,0,1.280928,2.561642,0.960653
0,dense,off,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035904,0,0,0,0,1.687360,2.916181,0.902943
0,dense,off,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035840,0,0,0,0,1.605088,2.925168,0.842349
0,dense,off,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035616,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035616,0,0,0,0,1.278240,2.441786,0.928341
0,dense,off,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036000,0,0,0,0,1.787136,3.427555,0.905247
0,dense,off,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035264,0,0,0,0,1.274816,2.592150,0.920817
0,dense,off,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036064,0,0,0,0,2.157632,3.709658,0.861896
0,dense,off,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036576,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036576,0,0,0,0,1.273280,2.569157,0.926768
0,dense,off,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035744,0,0,0,0,1.774080,2.971075,0.872055
0,dense,off,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035392,0,0,0,0,1.404640,2.851769,0.964349
0,dense,off,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035808,0,0,0,0,1.277280,2.474358,0.948108
0,dense,off,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035872,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035872,0,0,0,0,2.149600,3.516273,0.934613
0,dense,off,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036128,0,0,0,0,1.287200,2.556593,0.943860
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035424 0 0 0 0 1.272512 2.478184 0.867286
3 0 dense off direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035904 0 0 0 0 1.762592 3.195278 0.801301
4 0 dense off direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035968 0 0 0 0 1.552384 2.879962 0.796703
5 0 dense off direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036160 0 0 0 0 1.492800 3.009898 0.876373
6 0 dense off direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035392 0 0 0 0 1.456768 2.707247 0.804097
7 0 dense off direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.034912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034912 0 0 0 0 1.271744 2.499685 0.893756
8 0 dense off direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035968 0 0 0 0 2.147520 3.602455 0.842650
9 0 dense off direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035552 0 0 0 0 1.272480 2.439973 0.831198
10 0 dense off direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036384 0 0 0 0 1.474976 2.742052 0.821810
11 0 dense off direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036064 0 0 0 0 1.383232 2.732184 0.910438
12 0 dense off direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035872 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035872 0 0 0 0 1.585888 3.269197 1.139068
13 0 dense off direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035584 0 0 0 0 1.815360 3.132649 0.876153
14 0 dense off direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035296 0 0 0 0 1.275584 2.474938 0.879459
15 0 dense off direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035424 0 0 0 0 1.884352 3.050414 0.832651
16 0 dense off direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035776 0 0 0 0 1.260832 2.525494 0.870111
17 0 dense off direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035392 0 0 0 0 1.414080 2.641462 0.933751
18 0 dense off direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035744 0 0 0 0 2.048512 3.324882 0.856565
19 0 dense off direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.039104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.039104 0 0 0 0 1.280928 2.561642 0.960653
20 0 dense off direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035904 0 0 0 0 1.687360 2.916181 0.902943
21 0 dense off direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035840 0 0 0 0 1.605088 2.925168 0.842349
22 0 dense off direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035616 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035616 0 0 0 0 1.278240 2.441786 0.928341
23 0 dense off direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036000 0 0 0 0 1.787136 3.427555 0.905247
24 0 dense off direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035264 0 0 0 0 1.274816 2.592150 0.920817
25 0 dense off direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036064 0 0 0 0 2.157632 3.709658 0.861896
26 0 dense off direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036576 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036576 0 0 0 0 1.273280 2.569157 0.926768
27 0 dense off direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035744 0 0 0 0 1.774080 2.971075 0.872055
28 0 dense off direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035392 0 0 0 0 1.404640 2.851769 0.964349
29 0 dense off direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035808 0 0 0 0 1.277280 2.474358 0.948108
30 0 dense off direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035872 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035872 0 0 0 0 2.149600 3.516273 0.934613
31 0 dense off direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036128 0 0 0 0 1.287200 2.556593 0.943860
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035648,0,0,0,0,1.848448,3.111329,0.817803
0,dense,off,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036032,0,0,0,0,1.278656,2.611757,0.951485
0,dense,off,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035648,0,0,0,0,1.598880,2.874272,0.837870
0,dense,off,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035808,0,0,0,0,1.402432,2.806003,0.921038
0,dense,off,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036096,0,0,0,0,1.871584,3.112061,0.873899
0,dense,off,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036000,0,0,0,0,1.462592,3.085731,0.942077
0,dense,off,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036064,0,0,0,0,1.854144,3.383712,0.865833
0,dense,off,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036256,0,0,0,0,1.846560,3.470616,1.164556
0,dense,off,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036032,0,0,0,0,1.270464,2.776217,0.969969
0,dense,off,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035680,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035680,0,0,0,0,1.818272,3.123943,0.853631
0,dense,off,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035616,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035616,0,0,0,0,1.262688,2.640901,1.015465
0,dense,off,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035584,0,0,0,0,1.468320,3.002123,0.853510
0,dense,off,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.048832,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.048832,0,0,0,0,1.421472,2.887838,1.026757
0,dense,off,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035968,0,0,0,0,1.861312,3.207781,0.837350
0,dense,off,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036000,0,0,0,0,1.435328,3.089939,0.954421
0,dense,off,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035424,0,0,0,0,1.886528,3.227328,0.849342
0,dense,off,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035360,0,0,0,0,1.853376,3.025867,0.841979
0,dense,off,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036064,0,0,0,0,1.261824,2.700864,1.014484
0,dense,off,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035776,0,0,0,0,1.596640,2.936599,0.853871
0,dense,off,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036224,0,0,0,0,1.404256,2.934686,1.012510
0,dense,off,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035040,0,0,0,0,1.593152,2.959864,0.860143
0,dense,off,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035392,0,0,0,0,1.441344,2.795974,0.907341
0,dense,off,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035392,0,0,0,0,1.844576,3.200498,0.834855
0,dense,off,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035616,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035616,0,0,0,0,1.852320,3.154430,0.855654
0,dense,off,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036320,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036320,0,0,0,0,1.262400,2.619941,0.959219
0,dense,off,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035520,0,0,0,0,1.597184,2.907574,0.840075
0,dense,off,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035072,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035072,0,0,0,0,1.403168,2.917093,0.980289
0,dense,off,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035296,0,0,0,0,1.605696,3.018204,0.884719
0,dense,off,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035488,0,0,0,0,1.466304,2.875955,0.943500
0,dense,off,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035584,0,0,0,0,1.877120,3.245401,0.860653
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035648 0 0 0 0 1.848448 3.111329 0.817803
3 0 dense off direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036032 0 0 0 0 1.278656 2.611757 0.951485
4 0 dense off direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035648 0 0 0 0 1.598880 2.874272 0.837870
5 0 dense off direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035808 0 0 0 0 1.402432 2.806003 0.921038
6 0 dense off direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036096 0 0 0 0 1.871584 3.112061 0.873899
7 0 dense off direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036000 0 0 0 0 1.462592 3.085731 0.942077
8 0 dense off direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036064 0 0 0 0 1.854144 3.383712 0.865833
9 0 dense off direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036256 0 0 0 0 1.846560 3.470616 1.164556
10 0 dense off direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036032 0 0 0 0 1.270464 2.776217 0.969969
11 0 dense off direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035680 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035680 0 0 0 0 1.818272 3.123943 0.853631
12 0 dense off direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035616 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035616 0 0 0 0 1.262688 2.640901 1.015465
13 0 dense off direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035584 0 0 0 0 1.468320 3.002123 0.853510
14 0 dense off direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.048832 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.048832 0 0 0 0 1.421472 2.887838 1.026757
15 0 dense off direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035968 0 0 0 0 1.861312 3.207781 0.837350
16 0 dense off direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036000 0 0 0 0 1.435328 3.089939 0.954421
17 0 dense off direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035424 0 0 0 0 1.886528 3.227328 0.849342
18 0 dense off direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035360 0 0 0 0 1.853376 3.025867 0.841979
19 0 dense off direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036064 0 0 0 0 1.261824 2.700864 1.014484
20 0 dense off direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035776 0 0 0 0 1.596640 2.936599 0.853871
21 0 dense off direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036224 0 0 0 0 1.404256 2.934686 1.012510
22 0 dense off direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035040 0 0 0 0 1.593152 2.959864 0.860143
23 0 dense off direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035392 0 0 0 0 1.441344 2.795974 0.907341
24 0 dense off direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035392 0 0 0 0 1.844576 3.200498 0.834855
25 0 dense off direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035616 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035616 0 0 0 0 1.852320 3.154430 0.855654
26 0 dense off direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036320 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036320 0 0 0 0 1.262400 2.619941 0.959219
27 0 dense off direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035520 0 0 0 0 1.597184 2.907574 0.840075
28 0 dense off direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035072 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035072 0 0 0 0 1.403168 2.917093 0.980289
29 0 dense off direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035296 0 0 0 0 1.605696 3.018204 0.884719
30 0 dense off direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035488 0 0 0 0 1.466304 2.875955 0.943500
31 0 dense off direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035584 0 0 0 0 1.877120 3.245401 0.860653
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092320,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092320,0,0,0,0,1.663520,3.040846,0.929032
4,dense,off,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093536,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093536,0,0,0,0,1.865696,3.111349,0.934593
4,dense,off,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092160,0,0,0,0,1.329248,2.647184,0.957196
4,dense,off,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093056,0,0,0,0,1.322496,2.545662,0.880170
4,dense,off,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092352,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092352,0,0,0,0,1.729536,3.027360,0.848481
4,dense,off,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091456,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091456,0,0,0,0,1.541728,2.893518,0.967125
4,dense,off,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093184,0,0,0,0,1.475968,3.052197,0.933932
4,dense,off,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092832,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092832,0,0,0,0,1.331744,2.541725,0.884729
4,dense,off,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092384,0,0,0,0,1.864640,3.318390,1.005216
4,dense,off,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092704,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092704,0,0,0,0,1.317664,2.626845,0.951394
4,dense,off,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092640,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092640,0,0,0,0,1.323264,2.690075,1.009274
4,dense,off,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091904,0,0,0,0,1.712352,3.090128,0.911850
4,dense,off,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092416,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092416,0,0,0,0,1.549568,3.039974,0.981471
4,dense,off,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092640,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092640,0,0,0,0,1.475520,3.345110,0.972936
4,dense,off,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092032,0,0,0,0,1.485440,2.922492,0.994937
4,dense,off,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091584,0,0,0,0,1.864448,3.291790,0.978305
4,dense,off,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092672,0,0,0,0,1.318112,2.614271,0.949000
4,dense,off,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092768,0,0,0,0,1.321088,3.207680,1.469131
4,dense,off,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.094048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.094048,0,0,0,0,1.580352,3.643773,1.462679
4,dense,off,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092512,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092512,0,0,0,0,1.322336,3.389303,1.518364
4,dense,off,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092352,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092352,0,0,0,0,1.649920,3.937047,1.443333
4,dense,off,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092128,0,0,0,0,1.318368,2.679685,0.966864
4,dense,off,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092384,0,0,0,0,1.430560,3.006902,1.105675
4,dense,off,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092192,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092192,0,0,0,0,1.651392,3.168267,1.003253
4,dense,off,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092320,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092320,0,0,0,0,1.512736,3.065282,1.087080
4,dense,off,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092992,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092992,0,0,0,0,1.888224,3.390416,1.031716
4,dense,off,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091872,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091872,0,0,0,0,1.515168,3.235563,1.143968
4,dense,off,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093120,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093120,0,0,0,0,1.342720,2.879391,1.072493
4,dense,off,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092256,0,0,0,0,1.867168,3.360369,1.040512
4,dense,off,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092224,0,0,0,0,1.348576,3.048059,1.002731
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092320 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092320 0 0 0 0 1.663520 3.040846 0.929032
3 4 dense off direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093536 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093536 0 0 0 0 1.865696 3.111349 0.934593
4 4 dense off direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092160 0 0 0 0 1.329248 2.647184 0.957196
5 4 dense off direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093056 0 0 0 0 1.322496 2.545662 0.880170
6 4 dense off direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092352 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092352 0 0 0 0 1.729536 3.027360 0.848481
7 4 dense off direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091456 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091456 0 0 0 0 1.541728 2.893518 0.967125
8 4 dense off direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093184 0 0 0 0 1.475968 3.052197 0.933932
9 4 dense off direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092832 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092832 0 0 0 0 1.331744 2.541725 0.884729
10 4 dense off direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092384 0 0 0 0 1.864640 3.318390 1.005216
11 4 dense off direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092704 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092704 0 0 0 0 1.317664 2.626845 0.951394
12 4 dense off direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092640 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092640 0 0 0 0 1.323264 2.690075 1.009274
13 4 dense off direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091904 0 0 0 0 1.712352 3.090128 0.911850
14 4 dense off direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092416 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092416 0 0 0 0 1.549568 3.039974 0.981471
15 4 dense off direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092640 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092640 0 0 0 0 1.475520 3.345110 0.972936
16 4 dense off direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092032 0 0 0 0 1.485440 2.922492 0.994937
17 4 dense off direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091584 0 0 0 0 1.864448 3.291790 0.978305
18 4 dense off direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092672 0 0 0 0 1.318112 2.614271 0.949000
19 4 dense off direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092768 0 0 0 0 1.321088 3.207680 1.469131
20 4 dense off direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.094048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.094048 0 0 0 0 1.580352 3.643773 1.462679
21 4 dense off direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092512 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092512 0 0 0 0 1.322336 3.389303 1.518364
22 4 dense off direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092352 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092352 0 0 0 0 1.649920 3.937047 1.443333
23 4 dense off direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092128 0 0 0 0 1.318368 2.679685 0.966864
24 4 dense off direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092384 0 0 0 0 1.430560 3.006902 1.105675
25 4 dense off direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092192 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092192 0 0 0 0 1.651392 3.168267 1.003253
26 4 dense off direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092320 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092320 0 0 0 0 1.512736 3.065282 1.087080
27 4 dense off direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092992 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092992 0 0 0 0 1.888224 3.390416 1.031716
28 4 dense off direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091872 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091872 0 0 0 0 1.515168 3.235563 1.143968
29 4 dense off direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093120 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093120 0 0 0 0 1.342720 2.879391 1.072493
30 4 dense off direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092256 0 0 0 0 1.867168 3.360369 1.040512
31 4 dense off direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092224 0 0 0 0 1.348576 3.048059 1.002731
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091968,0,0,0,0,1.505856,2.966846,0.970901
4,dense,off,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092416,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092416,0,0,0,0,1.458976,2.865425,0.944591
4,dense,off,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092352,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092352,0,0,0,0,2.193824,3.636469,0.907983
4,dense,off,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.112288,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.112288,0,0,0,0,1.366912,2.612468,0.909135
4,dense,off,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092000,0,0,0,0,2.207456,3.503168,0.869199
4,dense,off,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092160,0,0,0,0,1.350432,2.490297,0.843070
4,dense,off,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091936,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091936,0,0,0,0,1.465408,2.931008,0.833161
4,dense,off,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092768,0,0,0,0,1.431232,3.075652,1.171851
4,dense,off,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092672,0,0,0,0,1.524352,3.303952,1.197880
4,dense,off,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092384,0,0,0,0,1.481952,3.243207,1.197950
4,dense,off,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092256,0,0,0,0,1.318432,2.923935,1.182921
4,dense,off,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092256,0,0,0,0,1.863136,3.422987,0.971352
4,dense,off,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093024,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093024,0,0,0,0,1.330496,2.728246,1.034702
4,dense,off,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092736,0,0,0,0,2.196608,3.677777,1.013031
4,dense,off,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092512,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092512,0,0,0,0,1.347968,2.809359,1.030494
4,dense,off,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091968,0,0,0,0,2.033952,3.476338,0.979578
4,dense,off,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092672,0,0,0,0,1.458272,2.924837,1.031095
4,dense,off,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092704,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092704,0,0,0,0,1.589088,3.049352,0.971853
4,dense,off,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092992,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092992,0,0,0,0,1.318112,2.694202,0.941836
4,dense,off,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092800,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092800,0,0,0,0,1.531264,3.010078,0.999826
4,dense,off,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092800,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092800,0,0,0,0,1.863104,3.369976,1.011919
4,dense,off,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093152,0,0,0,0,1.336384,2.786676,1.024042
4,dense,off,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093088,0,0,0,0,1.863648,3.622052,0.988143
4,dense,off,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092448,0,0,0,0,1.342208,2.720171,0.997221
4,dense,off,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092992,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092992,0,0,0,0,2.034496,3.490845,0.992021
4,dense,off,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092672,0,0,0,0,1.332096,2.620543,0.916990
4,dense,off,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091808,0,0,0,0,1.466752,2.941478,0.983856
4,dense,off,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092160,0,0,0,0,1.452192,2.997014,0.962866
4,dense,off,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092896,0,0,0,0,1.526752,3.011651,0.991621
4,dense,off,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092576,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092576,0,0,0,0,1.506496,3.262544,0.982653
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091968 0 0 0 0 1.505856 2.966846 0.970901
3 4 dense off direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092416 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092416 0 0 0 0 1.458976 2.865425 0.944591
4 4 dense off direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092352 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092352 0 0 0 0 2.193824 3.636469 0.907983
5 4 dense off direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.112288 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.112288 0 0 0 0 1.366912 2.612468 0.909135
6 4 dense off direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092000 0 0 0 0 2.207456 3.503168 0.869199
7 4 dense off direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092160 0 0 0 0 1.350432 2.490297 0.843070
8 4 dense off direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091936 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091936 0 0 0 0 1.465408 2.931008 0.833161
9 4 dense off direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092768 0 0 0 0 1.431232 3.075652 1.171851
10 4 dense off direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092672 0 0 0 0 1.524352 3.303952 1.197880
11 4 dense off direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092384 0 0 0 0 1.481952 3.243207 1.197950
12 4 dense off direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092256 0 0 0 0 1.318432 2.923935 1.182921
13 4 dense off direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092256 0 0 0 0 1.863136 3.422987 0.971352
14 4 dense off direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093024 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093024 0 0 0 0 1.330496 2.728246 1.034702
15 4 dense off direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092736 0 0 0 0 2.196608 3.677777 1.013031
16 4 dense off direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092512 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092512 0 0 0 0 1.347968 2.809359 1.030494
17 4 dense off direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091968 0 0 0 0 2.033952 3.476338 0.979578
18 4 dense off direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092672 0 0 0 0 1.458272 2.924837 1.031095
19 4 dense off direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092704 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092704 0 0 0 0 1.589088 3.049352 0.971853
20 4 dense off direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092992 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092992 0 0 0 0 1.318112 2.694202 0.941836
21 4 dense off direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092800 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092800 0 0 0 0 1.531264 3.010078 0.999826
22 4 dense off direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092800 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092800 0 0 0 0 1.863104 3.369976 1.011919
23 4 dense off direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093152 0 0 0 0 1.336384 2.786676 1.024042
24 4 dense off direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093088 0 0 0 0 1.863648 3.622052 0.988143
25 4 dense off direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092448 0 0 0 0 1.342208 2.720171 0.997221
26 4 dense off direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092992 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092992 0 0 0 0 2.034496 3.490845 0.992021
27 4 dense off direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092672 0 0 0 0 1.332096 2.620543 0.916990
28 4 dense off direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091808 0 0 0 0 1.466752 2.941478 0.983856
29 4 dense off direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092160 0 0 0 0 1.452192 2.997014 0.962866
30 4 dense off direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092896 0 0 0 0 1.526752 3.011651 0.991621
31 4 dense off direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092576 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092576 0 0 0 0 1.506496 3.262544 0.982653
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.091968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091968,0,0,0,0,1.512064,3.088115,0.923382
4,dense,off,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.102848,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.102848,0,0,0,0,1.681056,3.014867,0.821610
4,dense,off,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093152,0,0,0,0,1.867616,3.224923,0.910106
4,dense,off,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092928,0,0,0,0,1.334848,2.631964,0.882795
4,dense,off,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093344,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093344,0,0,0,0,1.464800,3.008325,0.948328
4,dense,off,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092512,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092512,0,0,0,0,1.333184,2.668003,0.949592
4,dense,off,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093792,0,0,0,0,1.433536,3.133320,0.988845
4,dense,off,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093696,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093696,0,0,0,0,1.528192,2.940506,0.818324
4,dense,off,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092032,0,0,0,0,1.477728,2.859304,0.909786
4,dense,off,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093408,0,0,0,0,1.878816,3.650677,1.260438
4,dense,off,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092896,0,0,0,0,1.616128,3.058399,0.881943
4,dense,off,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093248,0,0,0,0,1.863232,3.233028,0.925636
4,dense,off,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092736,0,0,0,0,1.550880,3.048510,0.960502
4,dense,off,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092800,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092800,0,0,0,0,1.322752,2.569677,0.891241
4,dense,off,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092160,0,0,0,0,1.448640,2.906302,0.882244
4,dense,off,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092928,0,0,0,0,1.749184,3.108303,0.882504
4,dense,off,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093216,0,0,0,0,1.528384,3.038411,0.935936
4,dense,off,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093024,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093024,0,0,0,0,1.559200,2.964201,0.857587
4,dense,off,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092864,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092864,0,0,0,0,1.877312,3.243569,0.909716
4,dense,off,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093024,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093024,0,0,0,0,1.569504,2.994288,0.898776
4,dense,off,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093056,0,0,0,0,1.322848,2.540543,0.848541
4,dense,off,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092000,0,0,0,0,1.460352,2.776757,0.849983
4,dense,off,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093312,0,0,0,0,1.746208,3.085530,0.851546
4,dense,off,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093120,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093120,0,0,0,0,1.528192,3.228991,0.948349
4,dense,off,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.092704,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092704,0,0,0,0,1.627616,3.064761,0.884989
4,dense,off,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093184,0,0,0,0,1.866656,3.243648,0.896221
4,dense,off,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093184,0,0,0,0,1.578208,3.168788,1.027608
4,dense,off,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093152,0,0,0,0,1.867520,3.559654,1.136424
4,dense,off,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093344,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093344,0,0,0,0,1.680608,3.556328,1.341100
4,dense,off,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,10,59577712,0.093376,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.093376,0,0,0,0,1.864416,3.554294,1.165348
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.091968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091968 0 0 0 0 1.512064 3.088115 0.923382
3 4 dense off direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.102848 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.102848 0 0 0 0 1.681056 3.014867 0.821610
4 4 dense off direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093152 0 0 0 0 1.867616 3.224923 0.910106
5 4 dense off direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092928 0 0 0 0 1.334848 2.631964 0.882795
6 4 dense off direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093344 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093344 0 0 0 0 1.464800 3.008325 0.948328
7 4 dense off direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092512 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092512 0 0 0 0 1.333184 2.668003 0.949592
8 4 dense off direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093792 0 0 0 0 1.433536 3.133320 0.988845
9 4 dense off direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093696 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093696 0 0 0 0 1.528192 2.940506 0.818324
10 4 dense off direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092032 0 0 0 0 1.477728 2.859304 0.909786
11 4 dense off direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093408 0 0 0 0 1.878816 3.650677 1.260438
12 4 dense off direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092896 0 0 0 0 1.616128 3.058399 0.881943
13 4 dense off direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093248 0 0 0 0 1.863232 3.233028 0.925636
14 4 dense off direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092736 0 0 0 0 1.550880 3.048510 0.960502
15 4 dense off direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092800 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092800 0 0 0 0 1.322752 2.569677 0.891241
16 4 dense off direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092160 0 0 0 0 1.448640 2.906302 0.882244
17 4 dense off direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092928 0 0 0 0 1.749184 3.108303 0.882504
18 4 dense off direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093216 0 0 0 0 1.528384 3.038411 0.935936
19 4 dense off direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093024 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093024 0 0 0 0 1.559200 2.964201 0.857587
20 4 dense off direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092864 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092864 0 0 0 0 1.877312 3.243569 0.909716
21 4 dense off direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093024 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093024 0 0 0 0 1.569504 2.994288 0.898776
22 4 dense off direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093056 0 0 0 0 1.322848 2.540543 0.848541
23 4 dense off direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092000 0 0 0 0 1.460352 2.776757 0.849983
24 4 dense off direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093312 0 0 0 0 1.746208 3.085530 0.851546
25 4 dense off direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093120 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093120 0 0 0 0 1.528192 3.228991 0.948349
26 4 dense off direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.092704 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092704 0 0 0 0 1.627616 3.064761 0.884989
27 4 dense off direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093184 0 0 0 0 1.866656 3.243648 0.896221
28 4 dense off direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093184 0 0 0 0 1.578208 3.168788 1.027608
29 4 dense off direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093152 0 0 0 0 1.867520 3.559654 1.136424
30 4 dense off direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093344 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093344 0 0 0 0 1.680608 3.556328 1.341100
31 4 dense off direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 10 59577712 0.093376 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.093376 0 0 0 0 1.864416 3.554294 1.165348
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.283904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283904,0,0,0,0,1.941024,3.277333,0.894527
16,dense,off,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285760,0,0,0,0,1.724288,3.079589,0.887524
16,dense,off,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285984,0,0,0,0,1.929760,3.290176,0.904536
16,dense,off,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286272,0,0,0,0,1.737088,3.075801,0.906069
16,dense,off,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285408,0,0,0,0,1.905920,3.300445,0.919865
16,dense,off,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285664,0,0,0,0,1.867648,3.247005,0.922390
16,dense,off,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284768,0,0,0,0,1.907744,3.600101,0.925135
16,dense,off,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285088,0,0,0,0,1.865344,3.279116,0.942017
16,dense,off,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285664,0,0,0,0,1.909120,3.671225,0.947628
16,dense,off,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284896,0,0,0,0,1.871552,3.373153,1.004275
16,dense,off,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286432,0,0,0,0,1.908000,3.597866,0.940324
16,dense,off,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285248,0,0,0,0,1.869440,3.322718,0.952306
16,dense,off,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286272,0,0,0,0,1.671712,3.337336,1.044871
16,dense,off,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284896,0,0,0,0,1.522048,2.916210,0.969569
16,dense,off,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285920,0,0,0,0,2.220768,3.607635,0.938170
16,dense,off,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284512,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284512,0,0,0,0,1.523968,2.863482,0.958107
16,dense,off,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286432,0,0,0,0,2.063168,3.566728,0.970741
16,dense,off,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284896,0,0,0,0,1.654880,3.101210,0.919084
16,dense,off,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285440,0,0,0,0,2.284576,3.733312,0.945724
16,dense,off,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286816,0,0,0,0,1.526560,2.721173,0.845915
16,dense,off,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285280,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285280,0,0,0,0,1.656416,2.972346,0.872656
16,dense,off,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285792,0,0,0,0,1.925792,3.296268,0.851687
16,dense,off,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284928,0,0,0,0,1.736832,3.082505,0.893095
16,dense,off,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285568,0,0,0,0,1.930464,3.172685,0.799228
16,dense,off,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284288,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284288,0,0,0,0,1.743712,3.136626,0.878908
16,dense,off,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284544,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284544,0,0,0,0,1.625312,2.952009,0.854973
16,dense,off,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285504,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285504,0,0,0,0,1.746240,3.095069,0.881964
16,dense,off,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284576,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284576,0,0,0,0,2.060032,3.448204,0.949251
16,dense,off,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285152,0,0,0,0,1.527520,2.764405,0.884749
16,dense,off,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284640,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284640,0,0,0,0,2.220992,3.671696,0.989837
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.283904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283904 0 0 0 0 1.941024 3.277333 0.894527
3 16 dense off direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285760 0 0 0 0 1.724288 3.079589 0.887524
4 16 dense off direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285984 0 0 0 0 1.929760 3.290176 0.904536
5 16 dense off direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286272 0 0 0 0 1.737088 3.075801 0.906069
6 16 dense off direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285408 0 0 0 0 1.905920 3.300445 0.919865
7 16 dense off direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285664 0 0 0 0 1.867648 3.247005 0.922390
8 16 dense off direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284768 0 0 0 0 1.907744 3.600101 0.925135
9 16 dense off direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285088 0 0 0 0 1.865344 3.279116 0.942017
10 16 dense off direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285664 0 0 0 0 1.909120 3.671225 0.947628
11 16 dense off direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284896 0 0 0 0 1.871552 3.373153 1.004275
12 16 dense off direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286432 0 0 0 0 1.908000 3.597866 0.940324
13 16 dense off direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285248 0 0 0 0 1.869440 3.322718 0.952306
14 16 dense off direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286272 0 0 0 0 1.671712 3.337336 1.044871
15 16 dense off direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284896 0 0 0 0 1.522048 2.916210 0.969569
16 16 dense off direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285920 0 0 0 0 2.220768 3.607635 0.938170
17 16 dense off direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284512 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284512 0 0 0 0 1.523968 2.863482 0.958107
18 16 dense off direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286432 0 0 0 0 2.063168 3.566728 0.970741
19 16 dense off direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284896 0 0 0 0 1.654880 3.101210 0.919084
20 16 dense off direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285440 0 0 0 0 2.284576 3.733312 0.945724
21 16 dense off direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286816 0 0 0 0 1.526560 2.721173 0.845915
22 16 dense off direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285280 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285280 0 0 0 0 1.656416 2.972346 0.872656
23 16 dense off direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285792 0 0 0 0 1.925792 3.296268 0.851687
24 16 dense off direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284928 0 0 0 0 1.736832 3.082505 0.893095
25 16 dense off direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285568 0 0 0 0 1.930464 3.172685 0.799228
26 16 dense off direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284288 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284288 0 0 0 0 1.743712 3.136626 0.878908
27 16 dense off direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284544 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284544 0 0 0 0 1.625312 2.952009 0.854973
28 16 dense off direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285504 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285504 0 0 0 0 1.746240 3.095069 0.881964
29 16 dense off direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284576 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284576 0 0 0 0 2.060032 3.448204 0.949251
30 16 dense off direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285152 0 0 0 0 1.527520 2.764405 0.884749
31 16 dense off direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284640 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284640 0 0 0 0 2.220992 3.671696 0.989837
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285312,0,0,0,0,1.864064,3.181131,0.905969
16,dense,off,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286592,0,0,0,0,2.232800,3.409041,0.880501
16,dense,off,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286656,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286656,0,0,0,0,1.876032,3.149321,0.856887
16,dense,off,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286784,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286784,0,0,0,0,2.229632,3.443676,0.872906
16,dense,off,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285792,0,0,0,0,1.902272,3.152166,0.836889
16,dense,off,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285856,0,0,0,0,1.774400,2.891344,0.825938
16,dense,off,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285600,0,0,0,0,1.648992,3.193424,0.863509
16,dense,off,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286816,0,0,0,0,1.515968,2.704641,0.864851
16,dense,off,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285824,0,0,0,0,1.700832,3.269156,0.908805
16,dense,off,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285376,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285376,0,0,0,0,1.802784,3.135625,0.894577
16,dense,off,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285216,0,0,0,0,2.061248,3.372291,0.871334
16,dense,off,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287360,0,0,0,0,1.823200,3.203242,0.920376
16,dense,off,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286016,0,0,0,0,2.057792,3.640777,0.891010
16,dense,off,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285600,0,0,0,0,1.862400,3.195448,0.925025
16,dense,off,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286048,0,0,0,0,2.228064,3.487308,0.959319
16,dense,off,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285600,0,0,0,0,1.862432,3.165882,0.886762
16,dense,off,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285504,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285504,0,0,0,0,2.226976,3.438977,0.909045
16,dense,off,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.283520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283520,0,0,0,0,1.893120,3.193684,0.876223
16,dense,off,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284768,0,0,0,0,2.228288,3.472090,0.925957
16,dense,off,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284544,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284544,0,0,0,0,1.864384,3.326164,1.012470
16,dense,off,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285920,0,0,0,0,2.061472,3.253548,0.844784
16,dense,off,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285344,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285344,0,0,0,0,1.792800,3.045294,0.918563
16,dense,off,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284896,0,0,0,0,1.770080,3.332506,1.033279
16,dense,off,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285216,0,0,0,0,1.651584,3.210556,0.940975
16,dense,off,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285888,0,0,0,0,1.517248,2.731432,0.935305
16,dense,off,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284288,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284288,0,0,0,0,1.809920,3.890770,1.020135
16,dense,off,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284608,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284608,0,0,0,0,1.513600,2.941929,0.972114
16,dense,off,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284736,0,0,0,0,1.814752,3.728423,1.012340
16,dense,off,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284928,0,0,0,0,1.517376,2.994449,1.043448
16,dense,off,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.284544,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284544,0,0,0,0,1.829024,3.690120,0.991941
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285312 0 0 0 0 1.864064 3.181131 0.905969
3 16 dense off direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286592 0 0 0 0 2.232800 3.409041 0.880501
4 16 dense off direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286656 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286656 0 0 0 0 1.876032 3.149321 0.856887
5 16 dense off direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286784 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286784 0 0 0 0 2.229632 3.443676 0.872906
6 16 dense off direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285792 0 0 0 0 1.902272 3.152166 0.836889
7 16 dense off direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285856 0 0 0 0 1.774400 2.891344 0.825938
8 16 dense off direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285600 0 0 0 0 1.648992 3.193424 0.863509
9 16 dense off direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286816 0 0 0 0 1.515968 2.704641 0.864851
10 16 dense off direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285824 0 0 0 0 1.700832 3.269156 0.908805
11 16 dense off direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285376 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285376 0 0 0 0 1.802784 3.135625 0.894577
12 16 dense off direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285216 0 0 0 0 2.061248 3.372291 0.871334
13 16 dense off direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287360 0 0 0 0 1.823200 3.203242 0.920376
14 16 dense off direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286016 0 0 0 0 2.057792 3.640777 0.891010
15 16 dense off direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285600 0 0 0 0 1.862400 3.195448 0.925025
16 16 dense off direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286048 0 0 0 0 2.228064 3.487308 0.959319
17 16 dense off direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285600 0 0 0 0 1.862432 3.165882 0.886762
18 16 dense off direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285504 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285504 0 0 0 0 2.226976 3.438977 0.909045
19 16 dense off direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.283520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283520 0 0 0 0 1.893120 3.193684 0.876223
20 16 dense off direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284768 0 0 0 0 2.228288 3.472090 0.925957
21 16 dense off direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284544 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284544 0 0 0 0 1.864384 3.326164 1.012470
22 16 dense off direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285920 0 0 0 0 2.061472 3.253548 0.844784
23 16 dense off direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285344 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285344 0 0 0 0 1.792800 3.045294 0.918563
24 16 dense off direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284896 0 0 0 0 1.770080 3.332506 1.033279
25 16 dense off direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285216 0 0 0 0 1.651584 3.210556 0.940975
26 16 dense off direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285888 0 0 0 0 1.517248 2.731432 0.935305
27 16 dense off direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284288 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284288 0 0 0 0 1.809920 3.890770 1.020135
28 16 dense off direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284608 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284608 0 0 0 0 1.513600 2.941929 0.972114
29 16 dense off direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284736 0 0 0 0 1.814752 3.728423 1.012340
30 16 dense off direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284928 0 0 0 0 1.517376 2.994449 1.043448
31 16 dense off direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.284544 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284544 0 0 0 0 1.829024 3.690120 0.991941
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287200,0,0,0,0,1.528064,2.821041,0.941546
16,dense,off,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286368,0,0,0,0,2.400704,3.644925,0.821148
16,dense,off,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287200,0,0,0,0,1.513568,2.859234,0.993253
16,dense,off,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286560,0,0,0,0,2.406752,3.665755,0.827090
16,dense,off,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287232,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287232,0,0,0,0,1.512992,2.761339,0.930475
16,dense,off,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287072,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287072,0,0,0,0,1.851808,3.477159,0.933230
16,dense,off,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285888,0,0,0,0,1.512288,3.057277,1.002411
16,dense,off,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287520,0,0,0,0,1.776416,3.006401,0.904766
16,dense,off,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286720,0,0,0,0,1.849952,3.195027,0.904527
16,dense,off,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287616,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287616,0,0,0,0,1.779072,3.171282,0.945013
16,dense,off,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.288192,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.288192,0,0,0,0,1.847008,3.421023,0.936106
16,dense,off,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287424,0,0,0,0,1.789344,3.192452,0.928091
16,dense,off,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286240,0,0,0,0,1.846304,3.759592,0.906510
16,dense,off,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.288064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.288064,0,0,0,0,1.776896,3.102442,0.889238
16,dense,off,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287104,0,0,0,0,2.007104,3.731579,0.880712
16,dense,off,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287808,0,0,0,0,1.789632,3.128962,0.911619
16,dense,off,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286464,0,0,0,0,1.654464,3.660595,0.927469
16,dense,off,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287136,0,0,0,0,1.523072,2.838505,0.932799
16,dense,off,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286688,0,0,0,0,2.224480,3.608998,0.915978
16,dense,off,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286848,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286848,0,0,0,0,1.540704,2.827122,0.920306
16,dense,off,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286912,0,0,0,0,2.293696,3.680733,0.912812
16,dense,off,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285376,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285376,0,0,0,0,1.532384,2.877087,0.970420
16,dense,off,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287424,0,0,0,0,2.067360,3.613165,1.062274
16,dense,off,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.288160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.288160,0,0,0,0,1.514304,3.076073,1.052355
16,dense,off,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287104,0,0,0,0,2.065856,3.525901,0.957756
16,dense,off,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286528,0,0,0,0,1.664416,3.199555,1.007561
16,dense,off,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.285888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285888,0,0,0,0,2.228064,3.693518,0.892674
16,dense,off,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287392,0,0,0,0,1.513152,2.804109,0.889117
16,dense,off,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.287104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.287104,0,0,0,0,2.025056,3.346753,0.945333
16,dense,off,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,10,59578672,0.286784,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.286784,0,0,0,0,1.781856,3.318089,1.019162
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287200 0 0 0 0 1.528064 2.821041 0.941546
3 16 dense off direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286368 0 0 0 0 2.400704 3.644925 0.821148
4 16 dense off direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287200 0 0 0 0 1.513568 2.859234 0.993253
5 16 dense off direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286560 0 0 0 0 2.406752 3.665755 0.827090
6 16 dense off direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287232 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287232 0 0 0 0 1.512992 2.761339 0.930475
7 16 dense off direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287072 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287072 0 0 0 0 1.851808 3.477159 0.933230
8 16 dense off direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285888 0 0 0 0 1.512288 3.057277 1.002411
9 16 dense off direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287520 0 0 0 0 1.776416 3.006401 0.904766
10 16 dense off direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286720 0 0 0 0 1.849952 3.195027 0.904527
11 16 dense off direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287616 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287616 0 0 0 0 1.779072 3.171282 0.945013
12 16 dense off direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.288192 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.288192 0 0 0 0 1.847008 3.421023 0.936106
13 16 dense off direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287424 0 0 0 0 1.789344 3.192452 0.928091
14 16 dense off direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286240 0 0 0 0 1.846304 3.759592 0.906510
15 16 dense off direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.288064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.288064 0 0 0 0 1.776896 3.102442 0.889238
16 16 dense off direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287104 0 0 0 0 2.007104 3.731579 0.880712
17 16 dense off direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287808 0 0 0 0 1.789632 3.128962 0.911619
18 16 dense off direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286464 0 0 0 0 1.654464 3.660595 0.927469
19 16 dense off direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287136 0 0 0 0 1.523072 2.838505 0.932799
20 16 dense off direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286688 0 0 0 0 2.224480 3.608998 0.915978
21 16 dense off direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286848 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286848 0 0 0 0 1.540704 2.827122 0.920306
22 16 dense off direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286912 0 0 0 0 2.293696 3.680733 0.912812
23 16 dense off direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285376 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285376 0 0 0 0 1.532384 2.877087 0.970420
24 16 dense off direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287424 0 0 0 0 2.067360 3.613165 1.062274
25 16 dense off direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.288160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.288160 0 0 0 0 1.514304 3.076073 1.052355
26 16 dense off direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287104 0 0 0 0 2.065856 3.525901 0.957756
27 16 dense off direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286528 0 0 0 0 1.664416 3.199555 1.007561
28 16 dense off direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.285888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285888 0 0 0 0 2.228064 3.693518 0.892674
29 16 dense off direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287392 0 0 0 0 1.513152 2.804109 0.889117
30 16 dense off direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.287104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.287104 0 0 0 0 2.025056 3.346753 0.945333
31 16 dense off direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 10 59578672 0.286784 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.286784 0 0 0 0 1.781856 3.318089 1.019162
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.575072,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.575072,0,0,0,0,1.923456,3.457322,0.913283
32,dense,off,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.572640,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.572640,0,0,0,0,1.970848,3.322748,0.890229
32,dense,off,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.571840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.571840,0,0,0,0,2.194880,3.766845,0.894898
32,dense,off,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.573184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.573184,0,0,0,0,1.925696,3.246965,0.876724
32,dense,off,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.572672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.572672,0,0,0,0,1.919712,3.322346,0.903424
32,dense,off,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.573856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.573856,0,0,0,0,1.968960,3.297771,0.886182
32,dense,off,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.572768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.572768,0,0,0,0,2.212480,3.904695,0.849552
32,dense,off,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.574816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.574816,0,0,0,0,1.960224,3.289826,0.889999
32,dense,off,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.571584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.571584,0,0,0,0,1.964480,3.446671,0.931287
32,dense,off,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.572096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.572096,0,0,0,0,2.134176,3.450980,0.861335
32,dense,off,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.572544,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.572544,0,0,0,0,1.919584,3.354177,0.893355
32,dense,off,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.572128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.572128,0,0,0,0,1.956128,3.697725,1.204582
32,dense,off,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.576768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.576768,0,0,0,0,1.972064,3.668119,0.957566
32,dense,off,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.574336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.574336,0,0,0,0,1.802144,3.116960,0.899687
32,dense,off,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.575200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.575200,0,0,0,0,2.215744,3.523827,0.834654
32,dense,off,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.571840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.571840,0,0,0,0,1.798336,3.093135,0.949781
32,dense,off,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.573568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.573568,0,0,0,0,2.215840,3.824113,0.904195
32,dense,off,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547264,0,0,0,0,1.777920,3.104275,0.895490
32,dense,off,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551360,0,0,0,0,1.943520,3.485404,0.957295
32,dense,off,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.548576,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548576,0,0,0,0,2.140672,3.576787,0.948730
32,dense,off,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549408,0,0,0,0,2.168448,3.601995,0.915838
32,dense,off,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549376,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549376,0,0,0,0,1.778144,3.184998,0.964570
32,dense,off,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547200,0,0,0,0,1.931968,3.455909,0.989817
32,dense,off,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547200,0,0,0,0,2.135136,3.543444,0.931628
32,dense,off,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.546816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546816,0,0,0,0,1.932000,3.438456,0.979668
32,dense,off,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.548000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548000,0,0,0,0,2.108896,3.502668,0.917040
32,dense,off,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547712,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547712,0,0,0,0,2.169248,3.540218,0.898395
32,dense,off,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.548128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548128,0,0,0,0,1.777888,3.159280,0.970281
32,dense,off,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.548224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548224,0,0,0,0,1.932064,3.467871,0.997702
32,dense,off,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547136,0,0,0,0,2.092960,3.515662,0.904767
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.575072 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.575072 0 0 0 0 1.923456 3.457322 0.913283
3 32 dense off direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.572640 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.572640 0 0 0 0 1.970848 3.322748 0.890229
4 32 dense off direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.571840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.571840 0 0 0 0 2.194880 3.766845 0.894898
5 32 dense off direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.573184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.573184 0 0 0 0 1.925696 3.246965 0.876724
6 32 dense off direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.572672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.572672 0 0 0 0 1.919712 3.322346 0.903424
7 32 dense off direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.573856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.573856 0 0 0 0 1.968960 3.297771 0.886182
8 32 dense off direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.572768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.572768 0 0 0 0 2.212480 3.904695 0.849552
9 32 dense off direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.574816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.574816 0 0 0 0 1.960224 3.289826 0.889999
10 32 dense off direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.571584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.571584 0 0 0 0 1.964480 3.446671 0.931287
11 32 dense off direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.572096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.572096 0 0 0 0 2.134176 3.450980 0.861335
12 32 dense off direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.572544 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.572544 0 0 0 0 1.919584 3.354177 0.893355
13 32 dense off direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.572128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.572128 0 0 0 0 1.956128 3.697725 1.204582
14 32 dense off direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.576768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.576768 0 0 0 0 1.972064 3.668119 0.957566
15 32 dense off direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.574336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.574336 0 0 0 0 1.802144 3.116960 0.899687
16 32 dense off direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.575200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.575200 0 0 0 0 2.215744 3.523827 0.834654
17 32 dense off direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.571840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.571840 0 0 0 0 1.798336 3.093135 0.949781
18 32 dense off direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.573568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.573568 0 0 0 0 2.215840 3.824113 0.904195
19 32 dense off direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547264 0 0 0 0 1.777920 3.104275 0.895490
20 32 dense off direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551360 0 0 0 0 1.943520 3.485404 0.957295
21 32 dense off direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.548576 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548576 0 0 0 0 2.140672 3.576787 0.948730
22 32 dense off direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549408 0 0 0 0 2.168448 3.601995 0.915838
23 32 dense off direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549376 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549376 0 0 0 0 1.778144 3.184998 0.964570
24 32 dense off direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547200 0 0 0 0 1.931968 3.455909 0.989817
25 32 dense off direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547200 0 0 0 0 2.135136 3.543444 0.931628
26 32 dense off direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.546816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546816 0 0 0 0 1.932000 3.438456 0.979668
27 32 dense off direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.548000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548000 0 0 0 0 2.108896 3.502668 0.917040
28 32 dense off direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547712 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547712 0 0 0 0 2.169248 3.540218 0.898395
29 32 dense off direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.548128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548128 0 0 0 0 1.777888 3.159280 0.970281
30 32 dense off direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.548224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548224 0 0 0 0 1.932064 3.467871 0.997702
31 32 dense off direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547136 0 0 0 0 2.092960 3.515662 0.904767
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547488,0,0,0,0,1.773568,2.990721,0.890990
32,dense,off,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547936,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547936,0,0,0,0,2.466400,3.720669,0.788116
32,dense,off,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.546304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546304,0,0,0,0,1.885984,3.244600,0.937709
32,dense,off,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.546752,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546752,0,0,0,0,2.659008,3.920586,0.849713
32,dense,off,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.546592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546592,0,0,0,0,1.772320,3.007353,0.891822
32,dense,off,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.545824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545824,0,0,0,0,2.535104,3.787043,0.826910
32,dense,off,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547744,0,0,0,0,1.773760,3.241986,0.910467
32,dense,off,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.545920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545920,0,0,0,0,2.478880,3.730466,0.821419
32,dense,off,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.554368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.554368,0,0,0,0,1.797728,3.073668,0.907712
32,dense,off,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547968,0,0,0,0,2.539456,3.843821,0.869219
32,dense,off,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.545792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545792,0,0,0,0,1.772448,3.333097,1.161200
32,dense,off,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.544160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544160,0,0,0,0,2.535840,3.951443,0.884959
32,dense,off,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.546112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546112,0,0,0,0,1.772960,3.031648,0.892604
32,dense,off,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.545856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545856,0,0,0,0,2.071104,3.798405,0.870272
32,dense,off,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.546528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546528,0,0,0,0,1.914304,3.244500,0.846317
32,dense,off,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.547776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547776,0,0,0,0,1.886432,3.397288,0.850484
32,dense,off,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549472,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549472,0,0,0,0,1.775936,3.184116,1.021157
32,dense,off,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.548256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548256,0,0,0,0,2.655104,4.010284,0.892854
32,dense,off,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551904,0,0,0,0,1.778208,3.283484,1.058357
32,dense,off,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549056,0,0,0,0,1.892800,3.651538,0.962355
32,dense,off,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.548160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548160,0,0,0,0,1.782048,3.177363,0.946846
32,dense,off,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549824,0,0,0,0,1.893472,3.432715,0.850825
32,dense,off,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.548896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548896,0,0,0,0,1.774528,3.097102,0.938651
32,dense,off,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.550688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550688,0,0,0,0,2.186592,4.085406,0.903995
32,dense,off,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551552,0,0,0,0,1.805664,3.145534,0.947577
32,dense,off,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.546560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546560,0,0,0,0,2.183488,3.643713,0.892213
32,dense,off,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549408,0,0,0,0,1.778688,3.230944,1.052866
32,dense,off,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549504,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549504,0,0,0,0,1.893568,3.536500,0.877596
32,dense,off,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.548672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548672,0,0,0,0,1.900992,3.243187,0.869520
32,dense,off,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.550112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550112,0,0,0,0,1.890752,3.582488,0.849542
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547488 0 0 0 0 1.773568 2.990721 0.890990
3 32 dense off direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547936 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547936 0 0 0 0 2.466400 3.720669 0.788116
4 32 dense off direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.546304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546304 0 0 0 0 1.885984 3.244600 0.937709
5 32 dense off direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.546752 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546752 0 0 0 0 2.659008 3.920586 0.849713
6 32 dense off direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.546592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546592 0 0 0 0 1.772320 3.007353 0.891822
7 32 dense off direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.545824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545824 0 0 0 0 2.535104 3.787043 0.826910
8 32 dense off direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547744 0 0 0 0 1.773760 3.241986 0.910467
9 32 dense off direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.545920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545920 0 0 0 0 2.478880 3.730466 0.821419
10 32 dense off direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.554368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.554368 0 0 0 0 1.797728 3.073668 0.907712
11 32 dense off direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547968 0 0 0 0 2.539456 3.843821 0.869219
12 32 dense off direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.545792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545792 0 0 0 0 1.772448 3.333097 1.161200
13 32 dense off direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.544160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544160 0 0 0 0 2.535840 3.951443 0.884959
14 32 dense off direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.546112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546112 0 0 0 0 1.772960 3.031648 0.892604
15 32 dense off direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.545856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545856 0 0 0 0 2.071104 3.798405 0.870272
16 32 dense off direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.546528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546528 0 0 0 0 1.914304 3.244500 0.846317
17 32 dense off direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.547776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547776 0 0 0 0 1.886432 3.397288 0.850484
18 32 dense off direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549472 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549472 0 0 0 0 1.775936 3.184116 1.021157
19 32 dense off direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.548256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548256 0 0 0 0 2.655104 4.010284 0.892854
20 32 dense off direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551904 0 0 0 0 1.778208 3.283484 1.058357
21 32 dense off direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549056 0 0 0 0 1.892800 3.651538 0.962355
22 32 dense off direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.548160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548160 0 0 0 0 1.782048 3.177363 0.946846
23 32 dense off direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549824 0 0 0 0 1.893472 3.432715 0.850825
24 32 dense off direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.548896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548896 0 0 0 0 1.774528 3.097102 0.938651
25 32 dense off direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.550688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550688 0 0 0 0 2.186592 4.085406 0.903995
26 32 dense off direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551552 0 0 0 0 1.805664 3.145534 0.947577
27 32 dense off direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.546560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546560 0 0 0 0 2.183488 3.643713 0.892213
28 32 dense off direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549408 0 0 0 0 1.778688 3.230944 1.052866
29 32 dense off direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549504 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549504 0 0 0 0 1.893568 3.536500 0.877596
30 32 dense off direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.548672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548672 0 0 0 0 1.900992 3.243187 0.869520
31 32 dense off direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.550112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550112 0 0 0 0 1.890752 3.582488 0.849542
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.550688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550688,0,0,0,0,1.925536,3.387890,0.947036
32,dense,off,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.550048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550048,0,0,0,0,1.920736,3.310885,0.894487
32,dense,off,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.550432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550432,0,0,0,0,1.778336,3.042890,0.876784
32,dense,off,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549632,0,0,0,0,1.775744,3.232257,0.983596
32,dense,off,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549792,0,0,0,0,2.264992,3.811901,0.881663
32,dense,off,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551488,0,0,0,0,1.915520,3.375808,0.965051
32,dense,off,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549760,0,0,0,0,1.982016,3.637722,0.892032
32,dense,off,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.552064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.552064,0,0,0,0,1.916000,3.474544,1.006047
32,dense,off,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.550720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550720,0,0,0,0,2.100896,3.549185,0.945293
32,dense,off,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551136,0,0,0,0,1.777440,3.212930,1.010155
32,dense,off,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.550144,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550144,0,0,0,0,2.105632,3.515912,0.938550
32,dense,off,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551232,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551232,0,0,0,0,1.777952,3.216718,1.029592
32,dense,off,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.549536,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549536,0,0,0,0,2.077152,3.499841,0.920096
32,dense,off,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551552,0,0,0,0,1.916096,3.443125,1.009063
32,dense,off,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.554112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.554112,0,0,0,0,2.114688,3.518758,0.939242
32,dense,off,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.553632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.553632,0,0,0,0,1.917600,3.465928,1.000036
32,dense,off,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.555008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.555008,0,0,0,0,2.113632,3.536541,0.943069
32,dense,off,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551136,0,0,0,0,1.921568,3.498650,0.992302
32,dense,off,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.552384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.552384,0,0,0,0,2.106720,3.552501,1.001830
32,dense,off,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551744,0,0,0,0,1.915328,3.460778,0.973426
32,dense,off,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.552096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.552096,0,0,0,0,2.105312,3.484613,0.925757
32,dense,off,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.552992,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.552992,0,0,0,0,1.915232,3.660815,1.205474
32,dense,off,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.553888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.553888,0,0,0,0,2.328032,4.115213,1.119501
32,dense,off,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.552000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.552000,0,0,0,0,2.044192,3.962254,1.277029
32,dense,off,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.553792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.553792,0,0,0,0,1.895552,4.383789,1.178253
32,dense,off,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.553152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.553152,0,0,0,0,2.100032,4.136784,1.152133
32,dense,off,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.552224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.552224,0,0,0,0,1.777728,3.556529,1.216294
32,dense,off,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.553280,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.553280,0,0,0,0,1.924416,3.708705,1.167271
32,dense,off,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.552736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.552736,0,0,0,0,1.779872,3.510692,1.168704
32,dense,off,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,10,59579952,0.551968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551968,0,0,0,0,2.551072,4.314519,1.177531
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.550688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550688 0 0 0 0 1.925536 3.387890 0.947036
3 32 dense off direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.550048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550048 0 0 0 0 1.920736 3.310885 0.894487
4 32 dense off direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.550432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550432 0 0 0 0 1.778336 3.042890 0.876784
5 32 dense off direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549632 0 0 0 0 1.775744 3.232257 0.983596
6 32 dense off direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549792 0 0 0 0 2.264992 3.811901 0.881663
7 32 dense off direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551488 0 0 0 0 1.915520 3.375808 0.965051
8 32 dense off direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549760 0 0 0 0 1.982016 3.637722 0.892032
9 32 dense off direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.552064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.552064 0 0 0 0 1.916000 3.474544 1.006047
10 32 dense off direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.550720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550720 0 0 0 0 2.100896 3.549185 0.945293
11 32 dense off direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551136 0 0 0 0 1.777440 3.212930 1.010155
12 32 dense off direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.550144 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550144 0 0 0 0 2.105632 3.515912 0.938550
13 32 dense off direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551232 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551232 0 0 0 0 1.777952 3.216718 1.029592
14 32 dense off direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.549536 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549536 0 0 0 0 2.077152 3.499841 0.920096
15 32 dense off direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551552 0 0 0 0 1.916096 3.443125 1.009063
16 32 dense off direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.554112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.554112 0 0 0 0 2.114688 3.518758 0.939242
17 32 dense off direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.553632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.553632 0 0 0 0 1.917600 3.465928 1.000036
18 32 dense off direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.555008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.555008 0 0 0 0 2.113632 3.536541 0.943069
19 32 dense off direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551136 0 0 0 0 1.921568 3.498650 0.992302
20 32 dense off direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.552384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.552384 0 0 0 0 2.106720 3.552501 1.001830
21 32 dense off direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551744 0 0 0 0 1.915328 3.460778 0.973426
22 32 dense off direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.552096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.552096 0 0 0 0 2.105312 3.484613 0.925757
23 32 dense off direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.552992 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.552992 0 0 0 0 1.915232 3.660815 1.205474
24 32 dense off direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.553888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.553888 0 0 0 0 2.328032 4.115213 1.119501
25 32 dense off direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.552000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.552000 0 0 0 0 2.044192 3.962254 1.277029
26 32 dense off direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.553792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.553792 0 0 0 0 1.895552 4.383789 1.178253
27 32 dense off direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.553152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.553152 0 0 0 0 2.100032 4.136784 1.152133
28 32 dense off direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.552224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.552224 0 0 0 0 1.777728 3.556529 1.216294
29 32 dense off direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.553280 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.553280 0 0 0 0 1.924416 3.708705 1.167271
30 32 dense off direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.552736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.552736 0 0 0 0 1.779872 3.510692 1.168704
31 32 dense off direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 10 59579952 0.551968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551968 0 0 0 0 2.551072 4.314519 1.177531
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065824,0,0,0,0,3.708608,5.016723,0.883185
64,dense,off,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.067776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067776,0,0,0,0,2.299008,3.612915,0.910066
64,dense,off,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.062304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062304,0,0,0,0,2.977888,4.429526,0.984918
64,dense,off,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063200,0,0,0,0,3.172480,4.564731,1.001349
64,dense,off,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.064768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064768,0,0,0,0,2.316096,3.701412,1.004555
64,dense,off,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.061920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.061920,0,0,0,0,2.977792,5.089420,0.929754
64,dense,off,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.061056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.061056,0,0,0,0,3.404480,5.298184,1.282219
64,dense,off,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.060256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.060256,0,0,0,0,2.302400,3.916037,1.032367
64,dense,off,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.066240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066240,0,0,0,0,2.688032,4.282448,0.911730
64,dense,off,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.060032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.060032,0,0,0,0,3.183072,4.676722,1.009164
64,dense,off,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.061664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.061664,0,0,0,0,2.298176,3.617063,0.938800
64,dense,off,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.062976,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062976,0,0,0,0,3.705920,4.928717,0.830997
64,dense,off,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.062016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062016,0,0,0,0,2.291072,3.621631,0.928120
64,dense,off,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063840,0,0,0,0,2.976160,4.417393,0.867146
64,dense,off,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.062304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062304,0,0,0,0,3.182368,4.454051,0.906881
64,dense,off,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.069376,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.069376,0,0,0,0,2.333920,4.156871,1.361609
64,dense,off,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065728,0,0,0,0,3.437344,4.729782,0.878577
64,dense,off,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.070976,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070976,0,0,0,0,3.122464,4.543601,0.902783
64,dense,off,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.067296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067296,0,0,0,0,2.705888,4.060991,0.993615
64,dense,off,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063584,0,0,0,0,3.277472,4.695537,0.857598
64,dense,off,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.071136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071136,0,0,0,0,2.649504,3.995346,0.869921
64,dense,off,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.068960,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068960,0,0,0,0,2.686592,4.217416,1.085037
64,dense,off,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.067168,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067168,0,0,0,0,3.422176,4.627639,0.838511
64,dense,off,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065728,0,0,0,0,2.293920,3.609609,0.941516
64,dense,off,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.064480,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064480,0,0,0,0,2.683488,3.973004,0.812773
64,dense,off,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063744,0,0,0,0,2.291936,3.412196,0.842609
64,dense,off,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065856,0,0,0,0,2.714112,4.064807,0.880661
64,dense,off,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063456,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063456,0,0,0,0,3.297312,4.749068,0.993875
64,dense,off,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.068096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068096,0,0,0,0,2.775008,4.246340,0.957556
64,dense,off,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.064768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064768,0,0,0,0,3.095008,4.396954,0.924093
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065824 0 0 0 0 3.708608 5.016723 0.883185
3 64 dense off direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.067776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067776 0 0 0 0 2.299008 3.612915 0.910066
4 64 dense off direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.062304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062304 0 0 0 0 2.977888 4.429526 0.984918
5 64 dense off direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063200 0 0 0 0 3.172480 4.564731 1.001349
6 64 dense off direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.064768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064768 0 0 0 0 2.316096 3.701412 1.004555
7 64 dense off direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.061920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.061920 0 0 0 0 2.977792 5.089420 0.929754
8 64 dense off direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.061056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.061056 0 0 0 0 3.404480 5.298184 1.282219
9 64 dense off direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.060256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.060256 0 0 0 0 2.302400 3.916037 1.032367
10 64 dense off direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.066240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066240 0 0 0 0 2.688032 4.282448 0.911730
11 64 dense off direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.060032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.060032 0 0 0 0 3.183072 4.676722 1.009164
12 64 dense off direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.061664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.061664 0 0 0 0 2.298176 3.617063 0.938800
13 64 dense off direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.062976 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062976 0 0 0 0 3.705920 4.928717 0.830997
14 64 dense off direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.062016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062016 0 0 0 0 2.291072 3.621631 0.928120
15 64 dense off direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063840 0 0 0 0 2.976160 4.417393 0.867146
16 64 dense off direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.062304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062304 0 0 0 0 3.182368 4.454051 0.906881
17 64 dense off direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.069376 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.069376 0 0 0 0 2.333920 4.156871 1.361609
18 64 dense off direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065728 0 0 0 0 3.437344 4.729782 0.878577
19 64 dense off direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.070976 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070976 0 0 0 0 3.122464 4.543601 0.902783
20 64 dense off direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.067296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067296 0 0 0 0 2.705888 4.060991 0.993615
21 64 dense off direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063584 0 0 0 0 3.277472 4.695537 0.857598
22 64 dense off direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.071136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071136 0 0 0 0 2.649504 3.995346 0.869921
23 64 dense off direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.068960 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068960 0 0 0 0 2.686592 4.217416 1.085037
24 64 dense off direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.067168 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067168 0 0 0 0 3.422176 4.627639 0.838511
25 64 dense off direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065728 0 0 0 0 2.293920 3.609609 0.941516
26 64 dense off direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.064480 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064480 0 0 0 0 2.683488 3.973004 0.812773
27 64 dense off direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063744 0 0 0 0 2.291936 3.412196 0.842609
28 64 dense off direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065856 0 0 0 0 2.714112 4.064807 0.880661
29 64 dense off direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063456 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063456 0 0 0 0 3.297312 4.749068 0.993875
30 64 dense off direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.068096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068096 0 0 0 0 2.775008 4.246340 0.957556
31 64 dense off direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.064768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064768 0 0 0 0 3.095008 4.396954 0.924093
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063584,0,0,0,0,2.591712,4.019632,0.893445
64,dense,off,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.070272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070272,0,0,0,0,3.078752,4.540806,0.946375
64,dense,off,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.069088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.069088,0,0,0,0,3.583584,5.020350,0.936176
64,dense,off,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.066720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066720,0,0,0,0,2.535904,3.993072,0.953639
64,dense,off,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065184,0,0,0,0,3.079584,4.719312,0.954340
64,dense,off,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063648,0,0,0,0,3.303136,4.730703,0.964159
64,dense,off,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065440,0,0,0,0,2.771488,4.306684,0.930896
64,dense,off,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.067072,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067072,0,0,0,0,3.079520,4.781169,0.977153
64,dense,off,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.068448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068448,0,0,0,0,2.843456,4.476194,1.151713
64,dense,off,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.066752,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066752,0,0,0,0,2.648352,4.210762,0.969369
64,dense,off,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063712,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063712,0,0,0,0,3.244544,4.602562,0.971793
64,dense,off,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.069088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.069088,0,0,0,0,2.300064,3.842708,0.896872
64,dense,off,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.070688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070688,0,0,0,0,3.105984,4.639662,1.028319
64,dense,off,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.068000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068000,0,0,0,0,3.575456,4.921062,0.959420
64,dense,off,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065248,0,0,0,0,2.737760,4.036915,0.909596
64,dense,off,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.068256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068256,0,0,0,0,2.691072,4.281196,0.964148
64,dense,off,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.064128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064128,0,0,0,0,3.017792,4.521579,1.000507
64,dense,off,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.064896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064896,0,0,0,0,2.619456,4.114532,0.986811
64,dense,off,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065952,0,0,0,0,3.086272,4.594266,0.916759
64,dense,off,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.069472,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.069472,0,0,0,0,3.476064,4.983461,0.969990
64,dense,off,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065312,0,0,0,0,2.650560,4.110594,0.959280
64,dense,off,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.064576,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064576,0,0,0,0,3.071840,4.914420,1.093593
64,dense,off,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.061824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.061824,0,0,0,0,3.127552,4.596912,0.943469
64,dense,off,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.062400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062400,0,0,0,0,2.305984,3.577398,0.905568
64,dense,off,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063200,0,0,0,0,3.371648,4.729922,0.872276
64,dense,off,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.060736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.060736,0,0,0,0,2.641472,3.998743,0.865863
64,dense,off,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.064352,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064352,0,0,0,0,2.717312,4.106717,0.867957
64,dense,off,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.060736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.060736,0,0,0,0,2.997312,4.328105,0.887364
64,dense,off,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.063904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063904,0,0,0,0,2.796672,4.034801,0.901220
64,dense,off,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.065504,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065504,0,0,0,0,3.243296,4.504967,0.893044
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063584 0 0 0 0 2.591712 4.019632 0.893445
3 64 dense off direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.070272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070272 0 0 0 0 3.078752 4.540806 0.946375
4 64 dense off direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.069088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.069088 0 0 0 0 3.583584 5.020350 0.936176
5 64 dense off direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.066720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066720 0 0 0 0 2.535904 3.993072 0.953639
6 64 dense off direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065184 0 0 0 0 3.079584 4.719312 0.954340
7 64 dense off direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063648 0 0 0 0 3.303136 4.730703 0.964159
8 64 dense off direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065440 0 0 0 0 2.771488 4.306684 0.930896
9 64 dense off direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.067072 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067072 0 0 0 0 3.079520 4.781169 0.977153
10 64 dense off direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.068448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068448 0 0 0 0 2.843456 4.476194 1.151713
11 64 dense off direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.066752 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066752 0 0 0 0 2.648352 4.210762 0.969369
12 64 dense off direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063712 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063712 0 0 0 0 3.244544 4.602562 0.971793
13 64 dense off direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.069088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.069088 0 0 0 0 2.300064 3.842708 0.896872
14 64 dense off direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.070688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070688 0 0 0 0 3.105984 4.639662 1.028319
15 64 dense off direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.068000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068000 0 0 0 0 3.575456 4.921062 0.959420
16 64 dense off direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065248 0 0 0 0 2.737760 4.036915 0.909596
17 64 dense off direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.068256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068256 0 0 0 0 2.691072 4.281196 0.964148
18 64 dense off direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.064128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064128 0 0 0 0 3.017792 4.521579 1.000507
19 64 dense off direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.064896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064896 0 0 0 0 2.619456 4.114532 0.986811
20 64 dense off direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065952 0 0 0 0 3.086272 4.594266 0.916759
21 64 dense off direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.069472 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.069472 0 0 0 0 3.476064 4.983461 0.969990
22 64 dense off direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065312 0 0 0 0 2.650560 4.110594 0.959280
23 64 dense off direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.064576 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064576 0 0 0 0 3.071840 4.914420 1.093593
24 64 dense off direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.061824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.061824 0 0 0 0 3.127552 4.596912 0.943469
25 64 dense off direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.062400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062400 0 0 0 0 2.305984 3.577398 0.905568
26 64 dense off direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063200 0 0 0 0 3.371648 4.729922 0.872276
27 64 dense off direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.060736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.060736 0 0 0 0 2.641472 3.998743 0.865863
28 64 dense off direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.064352 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064352 0 0 0 0 2.717312 4.106717 0.867957
29 64 dense off direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.060736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.060736 0 0 0 0 2.997312 4.328105 0.887364
30 64 dense off direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.063904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063904 0 0 0 0 2.796672 4.034801 0.901220
31 64 dense off direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.065504 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065504 0 0 0 0 3.243296 4.504967 0.893044
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.074624,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.074624,0,0,0,0,3.116736,4.677593,1.087000
64,dense,off,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.075104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.075104,0,0,0,0,3.580320,5.062770,0.941025
64,dense,off,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.076384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.076384,0,0,0,0,2.614208,4.018179,0.855073
64,dense,off,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.076512,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.076512,0,0,0,0,3.110400,4.556776,0.927650
64,dense,off,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.079104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.079104,0,0,0,0,3.060224,4.402755,0.945704
64,dense,off,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.078272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.078272,0,0,0,0,2.909152,4.356648,0.916548
64,dense,off,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.074240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.074240,0,0,0,0,3.111712,4.690337,0.882244
64,dense,off,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.076320,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.076320,0,0,0,0,3.040608,4.395862,0.870842
64,dense,off,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.079680,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.079680,0,0,0,0,2.595072,3.934722,0.903564
64,dense,off,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.071040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071040,0,0,0,0,3.141024,4.657756,0.917871
64,dense,off,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.071008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071008,0,0,0,0,3.153248,4.559611,0.868047
64,dense,off,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.073792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.073792,0,0,0,0,3.097248,4.549341,0.908544
64,dense,off,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.075872,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.075872,0,0,0,0,2.848416,4.755610,1.369113
64,dense,off,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.076512,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.076512,0,0,0,0,2.805440,4.857413,1.374223
64,dense,off,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.076160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.076160,0,0,0,0,2.718048,4.562807,1.159036
64,dense,off,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.078752,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.078752,0,0,0,0,3.097632,5.023486,1.326172
64,dense,off,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.073504,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.073504,0,0,0,0,3.052416,4.742847,1.130082
64,dense,off,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.069664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.069664,0,0,0,0,2.536544,4.360005,1.071721
64,dense,off,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.070944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070944,0,0,0,0,3.105536,4.744419,1.051955
64,dense,off,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.070720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070720,0,0,0,0,3.674848,5.413662,1.115634
64,dense,off,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.071712,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071712,0,0,0,0,2.822208,4.540124,1.114722
64,dense,off,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.071456,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071456,0,0,0,0,3.114528,4.918929,1.181469
64,dense,off,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.072384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.072384,0,0,0,0,3.757568,5.642944,1.140070
64,dense,off,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.072672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.072672,0,0,0,0,3.036000,4.880075,1.250559
64,dense,off,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.079360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.079360,0,0,0,0,2.306048,4.082060,1.201507
64,dense,off,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.068928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068928,0,0,0,0,3.607136,5.255082,1.069107
64,dense,off,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.069024,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.069024,0,0,0,0,3.719200,5.534580,1.120423
64,dense,off,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.071520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071520,0,0,0,0,2.807520,4.511891,1.124030
64,dense,off,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.068960,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068960,0,0,0,0,2.715968,4.388238,1.081951
64,dense,off,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,10,59582512,1.072480,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.072480,0,0,0,0,3.425856,5.426606,1.083193
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.074624 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.074624 0 0 0 0 3.116736 4.677593 1.087000
3 64 dense off direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.075104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.075104 0 0 0 0 3.580320 5.062770 0.941025
4 64 dense off direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.076384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.076384 0 0 0 0 2.614208 4.018179 0.855073
5 64 dense off direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.076512 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.076512 0 0 0 0 3.110400 4.556776 0.927650
6 64 dense off direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.079104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.079104 0 0 0 0 3.060224 4.402755 0.945704
7 64 dense off direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.078272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.078272 0 0 0 0 2.909152 4.356648 0.916548
8 64 dense off direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.074240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.074240 0 0 0 0 3.111712 4.690337 0.882244
9 64 dense off direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.076320 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.076320 0 0 0 0 3.040608 4.395862 0.870842
10 64 dense off direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.079680 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.079680 0 0 0 0 2.595072 3.934722 0.903564
11 64 dense off direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.071040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071040 0 0 0 0 3.141024 4.657756 0.917871
12 64 dense off direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.071008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071008 0 0 0 0 3.153248 4.559611 0.868047
13 64 dense off direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.073792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.073792 0 0 0 0 3.097248 4.549341 0.908544
14 64 dense off direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.075872 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.075872 0 0 0 0 2.848416 4.755610 1.369113
15 64 dense off direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.076512 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.076512 0 0 0 0 2.805440 4.857413 1.374223
16 64 dense off direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.076160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.076160 0 0 0 0 2.718048 4.562807 1.159036
17 64 dense off direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.078752 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.078752 0 0 0 0 3.097632 5.023486 1.326172
18 64 dense off direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.073504 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.073504 0 0 0 0 3.052416 4.742847 1.130082
19 64 dense off direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.069664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.069664 0 0 0 0 2.536544 4.360005 1.071721
20 64 dense off direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.070944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070944 0 0 0 0 3.105536 4.744419 1.051955
21 64 dense off direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.070720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070720 0 0 0 0 3.674848 5.413662 1.115634
22 64 dense off direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.071712 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071712 0 0 0 0 2.822208 4.540124 1.114722
23 64 dense off direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.071456 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071456 0 0 0 0 3.114528 4.918929 1.181469
24 64 dense off direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.072384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.072384 0 0 0 0 3.757568 5.642944 1.140070
25 64 dense off direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.072672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.072672 0 0 0 0 3.036000 4.880075 1.250559
26 64 dense off direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.079360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.079360 0 0 0 0 2.306048 4.082060 1.201507
27 64 dense off direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.068928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068928 0 0 0 0 3.607136 5.255082 1.069107
28 64 dense off direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.069024 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.069024 0 0 0 0 3.719200 5.534580 1.120423
29 64 dense off direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.071520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071520 0 0 0 0 2.807520 4.511891 1.124030
30 64 dense off direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.068960 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068960 0 0 0 0 2.715968 4.388238 1.081951
31 64 dense off direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 10 59582512 1.072480 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.072480 0 0 0 0 3.425856 5.426606 1.083193
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.108768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.108768,0,0,0,0,4.099424,5.848803,1.176609
128,dense,off,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.114528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.114528,0,0,0,0,4.151104,6.461418,1.325069
128,dense,off,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.116000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.116000,0,0,0,0,4.200864,5.839085,1.127857
128,dense,off,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.096352,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.096352,0,0,0,0,4.459808,6.046296,1.118279
128,dense,off,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.099552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.099552,0,0,0,0,4.168512,6.305194,1.615247
128,dense,off,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.102784,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.102784,0,0,0,0,4.354528,6.252684,1.170247
128,dense,off,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.093760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.093760,0,0,0,0,4.312896,6.437283,1.158575
128,dense,off,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.099296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.099296,0,0,0,0,4.340352,6.127999,1.101778
128,dense,off,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.094496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094496,0,0,0,0,4.083424,5.845096,1.315601
128,dense,off,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.100064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100064,0,0,0,0,4.133696,5.861526,1.126595
128,dense,off,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.098816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.098816,0,0,0,0,3.740448,5.845326,1.455906
128,dense,off,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.095840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095840,0,0,0,0,4.228992,6.526461,1.672274
128,dense,off,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.101984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.101984,0,0,0,0,4.113760,5.756018,1.096889
128,dense,off,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.093408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.093408,0,0,0,0,4.209280,5.847179,1.102880
128,dense,off,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.106944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.106944,0,0,0,0,4.650816,6.202540,1.006449
128,dense,off,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.105856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.105856,0,0,0,0,4.366464,5.894228,0.992292
128,dense,off,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.102752,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.102752,0,0,0,0,3.827936,5.258930,1.001930
128,dense,off,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.095648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095648,0,0,0,0,3.718176,5.416948,1.084135
128,dense,off,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.097312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.097312,0,0,0,0,4.739680,6.365096,1.073976
128,dense,off,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.094560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094560,0,0,0,0,4.335904,5.890100,0.981371
128,dense,off,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.094944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094944,0,0,0,0,4.327456,6.003063,0.962085
128,dense,off,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.099840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.099840,0,0,0,0,4.348736,5.895431,0.955533
128,dense,off,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.094560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094560,0,0,0,0,3.800544,5.152039,0.856155
128,dense,off,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.101920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.101920,0,0,0,0,3.736256,5.183448,0.876132
128,dense,off,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.103552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.103552,0,0,0,0,4.111680,5.551161,0.940093
128,dense,off,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.095104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095104,0,0,0,0,3.876448,5.329744,0.951435
128,dense,off,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.094976,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094976,0,0,0,0,3.801024,5.494395,1.260759
128,dense,off,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.097248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.097248,0,0,0,0,4.074720,5.921771,1.255368
128,dense,off,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.100320,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100320,0,0,0,0,4.382304,6.015778,0.944922
128,dense,off,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.100224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100224,0,0,0,0,4.114112,5.393384,0.887595
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.108768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.108768 0 0 0 0 4.099424 5.848803 1.176609
3 128 dense off direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.114528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.114528 0 0 0 0 4.151104 6.461418 1.325069
4 128 dense off direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.116000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.116000 0 0 0 0 4.200864 5.839085 1.127857
5 128 dense off direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.096352 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.096352 0 0 0 0 4.459808 6.046296 1.118279
6 128 dense off direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.099552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.099552 0 0 0 0 4.168512 6.305194 1.615247
7 128 dense off direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.102784 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.102784 0 0 0 0 4.354528 6.252684 1.170247
8 128 dense off direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.093760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.093760 0 0 0 0 4.312896 6.437283 1.158575
9 128 dense off direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.099296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.099296 0 0 0 0 4.340352 6.127999 1.101778
10 128 dense off direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.094496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094496 0 0 0 0 4.083424 5.845096 1.315601
11 128 dense off direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.100064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100064 0 0 0 0 4.133696 5.861526 1.126595
12 128 dense off direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.098816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.098816 0 0 0 0 3.740448 5.845326 1.455906
13 128 dense off direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.095840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095840 0 0 0 0 4.228992 6.526461 1.672274
14 128 dense off direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.101984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.101984 0 0 0 0 4.113760 5.756018 1.096889
15 128 dense off direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.093408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.093408 0 0 0 0 4.209280 5.847179 1.102880
16 128 dense off direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.106944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.106944 0 0 0 0 4.650816 6.202540 1.006449
17 128 dense off direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.105856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.105856 0 0 0 0 4.366464 5.894228 0.992292
18 128 dense off direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.102752 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.102752 0 0 0 0 3.827936 5.258930 1.001930
19 128 dense off direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.095648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095648 0 0 0 0 3.718176 5.416948 1.084135
20 128 dense off direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.097312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.097312 0 0 0 0 4.739680 6.365096 1.073976
21 128 dense off direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.094560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094560 0 0 0 0 4.335904 5.890100 0.981371
22 128 dense off direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.094944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094944 0 0 0 0 4.327456 6.003063 0.962085
23 128 dense off direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.099840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.099840 0 0 0 0 4.348736 5.895431 0.955533
24 128 dense off direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.094560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094560 0 0 0 0 3.800544 5.152039 0.856155
25 128 dense off direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.101920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.101920 0 0 0 0 3.736256 5.183448 0.876132
26 128 dense off direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.103552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.103552 0 0 0 0 4.111680 5.551161 0.940093
27 128 dense off direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.095104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095104 0 0 0 0 3.876448 5.329744 0.951435
28 128 dense off direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.094976 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094976 0 0 0 0 3.801024 5.494395 1.260759
29 128 dense off direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.097248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.097248 0 0 0 0 4.074720 5.921771 1.255368
30 128 dense off direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.100320 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100320 0 0 0 0 4.382304 6.015778 0.944922
31 128 dense off direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.100224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100224 0 0 0 0 4.114112 5.393384 0.887595
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.100832,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100832,0,0,0,0,4.302976,5.732443,1.006999
128,dense,off,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.109344,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.109344,0,0,0,0,4.334784,6.046846,1.173955
128,dense,off,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.109568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.109568,0,0,0,0,4.043488,5.447696,0.817321
128,dense,off,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.104480,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.104480,0,0,0,0,3.334592,4.641225,0.982694
128,dense,off,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.106784,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.106784,0,0,0,0,3.785280,5.557673,1.010516
128,dense,off,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.108480,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.108480,0,0,0,0,4.567872,6.016408,0.882946
128,dense,off,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.111936,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111936,0,0,0,0,4.290048,5.999537,0.907913
128,dense,off,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.110048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.110048,0,0,0,0,4.339072,5.800892,0.970741
128,dense,off,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.110432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.110432,0,0,0,0,4.516832,6.326043,0.993003
128,dense,off,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.111392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111392,0,0,0,0,4.060064,5.457825,0.876824
128,dense,off,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.098656,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.098656,0,0,0,0,3.980576,5.450732,0.926919
128,dense,off,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.107648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.107648,0,0,0,0,4.130432,5.700332,0.984016
128,dense,off,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.107456,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.107456,0,0,0,0,4.467072,6.128992,0.945143
128,dense,off,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.105120,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.105120,0,0,0,0,4.331200,5.816552,0.935745
128,dense,off,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.114848,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.114848,0,0,0,0,4.516896,5.971464,0.888907
128,dense,off,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.108288,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.108288,0,0,0,0,3.795744,5.078730,0.847228
128,dense,off,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.105760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.105760,0,0,0,0,3.784160,5.183357,0.895940
128,dense,off,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.101056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.101056,0,0,0,0,4.470944,5.920257,0.938981
128,dense,off,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.093056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.093056,0,0,0,0,4.489888,6.024163,1.028220
128,dense,off,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.098464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.098464,0,0,0,0,4.513824,6.010858,0.944893
128,dense,off,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.106912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.106912,0,0,0,0,3.628224,5.285329,1.035003
128,dense,off,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.103840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.103840,0,0,0,0,3.781120,6.000479,1.640615
128,dense,off,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.099712,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.099712,0,0,0,0,4.154176,6.647008,1.663027
128,dense,off,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.096864,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.096864,0,0,0,0,4.803104,7.246328,1.597724
128,dense,off,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.102528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.102528,0,0,0,0,3.776032,6.156062,1.015024
128,dense,off,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.091776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.091776,0,0,0,0,4.360032,9.127778,1.049580
128,dense,off,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.095136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095136,0,0,0,0,3.617280,5.261064,1.052466
128,dense,off,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.100224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100224,0,0,0,0,4.510624,5.952298,0.906590
128,dense,off,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.100160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100160,0,0,0,0,4.710784,6.998782,1.757856
128,dense,off,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.102048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.102048,0,0,0,0,5.015808,6.842326,1.256730
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.100832 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100832 0 0 0 0 4.302976 5.732443 1.006999
3 128 dense off direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.109344 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.109344 0 0 0 0 4.334784 6.046846 1.173955
4 128 dense off direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.109568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.109568 0 0 0 0 4.043488 5.447696 0.817321
5 128 dense off direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.104480 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.104480 0 0 0 0 3.334592 4.641225 0.982694
6 128 dense off direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.106784 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.106784 0 0 0 0 3.785280 5.557673 1.010516
7 128 dense off direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.108480 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.108480 0 0 0 0 4.567872 6.016408 0.882946
8 128 dense off direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.111936 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111936 0 0 0 0 4.290048 5.999537 0.907913
9 128 dense off direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.110048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.110048 0 0 0 0 4.339072 5.800892 0.970741
10 128 dense off direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.110432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.110432 0 0 0 0 4.516832 6.326043 0.993003
11 128 dense off direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.111392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111392 0 0 0 0 4.060064 5.457825 0.876824
12 128 dense off direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.098656 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.098656 0 0 0 0 3.980576 5.450732 0.926919
13 128 dense off direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.107648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.107648 0 0 0 0 4.130432 5.700332 0.984016
14 128 dense off direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.107456 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.107456 0 0 0 0 4.467072 6.128992 0.945143
15 128 dense off direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.105120 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.105120 0 0 0 0 4.331200 5.816552 0.935745
16 128 dense off direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.114848 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.114848 0 0 0 0 4.516896 5.971464 0.888907
17 128 dense off direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.108288 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.108288 0 0 0 0 3.795744 5.078730 0.847228
18 128 dense off direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.105760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.105760 0 0 0 0 3.784160 5.183357 0.895940
19 128 dense off direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.101056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.101056 0 0 0 0 4.470944 5.920257 0.938981
20 128 dense off direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.093056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.093056 0 0 0 0 4.489888 6.024163 1.028220
21 128 dense off direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.098464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.098464 0 0 0 0 4.513824 6.010858 0.944893
22 128 dense off direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.106912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.106912 0 0 0 0 3.628224 5.285329 1.035003
23 128 dense off direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.103840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.103840 0 0 0 0 3.781120 6.000479 1.640615
24 128 dense off direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.099712 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.099712 0 0 0 0 4.154176 6.647008 1.663027
25 128 dense off direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.096864 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.096864 0 0 0 0 4.803104 7.246328 1.597724
26 128 dense off direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.102528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.102528 0 0 0 0 3.776032 6.156062 1.015024
27 128 dense off direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.091776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.091776 0 0 0 0 4.360032 9.127778 1.049580
28 128 dense off direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.095136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095136 0 0 0 0 3.617280 5.261064 1.052466
29 128 dense off direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.100224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100224 0 0 0 0 4.510624 5.952298 0.906590
30 128 dense off direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.100160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100160 0 0 0 0 4.710784 6.998782 1.757856
31 128 dense off direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.102048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.102048 0 0 0 0 5.015808 6.842326 1.256730
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.134528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.134528,0,0,0,0,4.218944,5.641441,0.896191
128,dense,off,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.124128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.124128,0,0,0,0,3.597984,5.192775,1.016147
128,dense,off,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.126208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.126208,0,0,0,0,4.173024,5.679173,0.935965
128,dense,off,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.122304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.122304,0,0,0,0,4.515520,6.214212,0.875742
128,dense,off,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.124224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.124224,0,0,0,0,4.653152,6.077323,0.884378
128,dense,off,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.120736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.120736,0,0,0,0,4.533376,6.478951,1.372950
128,dense,off,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.118496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.118496,0,0,0,0,4.769280,6.909945,1.132787
128,dense,off,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.122464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.122464,0,0,0,0,4.765536,6.425691,1.116456
128,dense,off,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.122880,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.122880,0,0,0,0,4.592192,6.360307,1.065069
128,dense,off,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.119616,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.119616,0,0,0,0,4.159008,5.874702,1.173984
128,dense,off,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.119200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.119200,0,0,0,0,3.826752,5.468946,1.081200
128,dense,off,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.119328,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.119328,0,0,0,0,3.830624,5.688460,1.151031
128,dense,off,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.119488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.119488,0,0,0,0,4.517216,6.368132,1.181097
128,dense,off,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.120384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.120384,0,0,0,0,4.681152,6.471117,1.106276
128,dense,off,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.113888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.113888,0,0,0,0,4.670720,6.417866,1.075980
128,dense,off,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.112672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.112672,0,0,0,0,4.656800,6.441630,1.099785
128,dense,off,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.117920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.117920,0,0,0,0,4.542720,6.293882,1.111366
128,dense,off,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.112928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.112928,0,0,0,0,4.766592,6.587686,1.130653
128,dense,off,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.112256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.112256,0,0,0,0,3.947296,5.715521,1.125163
128,dense,off,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.111136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111136,0,0,0,0,3.887872,6.320563,1.638271
128,dense,off,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.113216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.113216,0,0,0,0,3.352768,5.336126,1.137195
128,dense,off,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.121088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.121088,0,0,0,0,3.987744,6.580433,1.145070
128,dense,off,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.114432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.114432,0,0,0,0,4.507680,6.342824,1.175487
128,dense,off,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.115872,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.115872,0,0,0,0,4.504768,6.419830,1.189784
128,dense,off,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.112096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.112096,0,0,0,0,4.673088,6.634595,1.255278
128,dense,off,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.119264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.119264,0,0,0,0,4.341056,6.568060,1.145712
128,dense,off,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.111488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111488,0,0,0,0,4.302144,6.116217,1.139850
128,dense,off,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.112416,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.112416,0,0,0,0,4.310944,6.397919,1.115534
128,dense,off,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.110656,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.110656,0,0,0,0,4.279136,6.064500,1.141453
128,dense,off,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,10,59587632,2.113920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.113920,0,0,0,0,4.546656,6.338637,1.149980
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.134528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.134528 0 0 0 0 4.218944 5.641441 0.896191
3 128 dense off direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.124128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.124128 0 0 0 0 3.597984 5.192775 1.016147
4 128 dense off direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.126208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.126208 0 0 0 0 4.173024 5.679173 0.935965
5 128 dense off direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.122304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.122304 0 0 0 0 4.515520 6.214212 0.875742
6 128 dense off direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.124224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.124224 0 0 0 0 4.653152 6.077323 0.884378
7 128 dense off direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.120736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.120736 0 0 0 0 4.533376 6.478951 1.372950
8 128 dense off direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.118496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.118496 0 0 0 0 4.769280 6.909945 1.132787
9 128 dense off direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.122464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.122464 0 0 0 0 4.765536 6.425691 1.116456
10 128 dense off direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.122880 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.122880 0 0 0 0 4.592192 6.360307 1.065069
11 128 dense off direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.119616 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.119616 0 0 0 0 4.159008 5.874702 1.173984
12 128 dense off direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.119200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.119200 0 0 0 0 3.826752 5.468946 1.081200
13 128 dense off direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.119328 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.119328 0 0 0 0 3.830624 5.688460 1.151031
14 128 dense off direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.119488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.119488 0 0 0 0 4.517216 6.368132 1.181097
15 128 dense off direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.120384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.120384 0 0 0 0 4.681152 6.471117 1.106276
16 128 dense off direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.113888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.113888 0 0 0 0 4.670720 6.417866 1.075980
17 128 dense off direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.112672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.112672 0 0 0 0 4.656800 6.441630 1.099785
18 128 dense off direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.117920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.117920 0 0 0 0 4.542720 6.293882 1.111366
19 128 dense off direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.112928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.112928 0 0 0 0 4.766592 6.587686 1.130653
20 128 dense off direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.112256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.112256 0 0 0 0 3.947296 5.715521 1.125163
21 128 dense off direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.111136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111136 0 0 0 0 3.887872 6.320563 1.638271
22 128 dense off direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.113216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.113216 0 0 0 0 3.352768 5.336126 1.137195
23 128 dense off direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.121088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.121088 0 0 0 0 3.987744 6.580433 1.145070
24 128 dense off direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.114432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.114432 0 0 0 0 4.507680 6.342824 1.175487
25 128 dense off direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.115872 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.115872 0 0 0 0 4.504768 6.419830 1.189784
26 128 dense off direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.112096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.112096 0 0 0 0 4.673088 6.634595 1.255278
27 128 dense off direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.119264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.119264 0 0 0 0 4.341056 6.568060 1.145712
28 128 dense off direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.111488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111488 0 0 0 0 4.302144 6.116217 1.139850
29 128 dense off direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.112416 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.112416 0 0 0 0 4.310944 6.397919 1.115534
30 128 dense off direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.110656 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.110656 0 0 0 0 4.279136 6.064500 1.141453
31 128 dense off direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 10 59587632 2.113920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.113920 0 0 0 0 4.546656 6.338637 1.149980
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033952,0,0,0,0,1.293856,2.411870,0.778639
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033248,0,0,0,0,2.191712,3.275970,0.786504
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033216,0,0,0,0,1.276480,2.354521,0.771064
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034176,0,0,0,0,1.279264,2.276454,0.821941
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033760,0,0,0,0,1.738880,2.942981,0.777196
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033376,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033376,0,0,0,0,1.297696,2.382774,0.754583
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033888,0,0,0,0,1.840704,3.176001,0.822892
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034528,0,0,0,0,1.539840,2.740770,0.795601
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034528,0,0,0,0,1.276800,2.615755,0.953068
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034464,0,0,0,0,2.172000,3.282011,0.813484
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.032960,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.032960,0,0,0,0,1.287328,2.726974,1.125974
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033952,0,0,0,0,2.054144,3.328909,0.897964
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033984,0,0,0,0,1.537920,2.733827,0.756978
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033312,0,0,0,0,1.289056,2.344903,0.823252
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034400,0,0,0,0,1.580480,2.915189,0.739875
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033184,0,0,0,0,1.292480,2.376492,0.811711
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,2.248384,3.294795,0.764192
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033792,0,0,0,0,1.276480,2.582481,0.773850
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034240,0,0,0,0,1.291520,2.338521,0.853220
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034016,0,0,0,0,1.809760,2.972537,0.766305
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033760,0,0,0,0,1.290592,2.530944,0.757349
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033856,0,0,0,0,2.125152,3.185700,0.790461
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,1.276352,2.625171,0.755596
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034176,0,0,0,0,1.288896,2.319806,0.843030
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034368,0,0,0,0,1.815488,2.972086,0.767538
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033856,0,0,0,0,1.288576,2.538358,0.749955
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033568,0,0,0,0,2.136608,3.202431,0.769351
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034400,0,0,0,0,1.276704,2.556893,0.765173
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034112,0,0,0,0,1.289376,2.294448,0.799909
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033568,0,0,0,0,1.777408,3.053871,0.763320
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off gpu-frustum gpu-frustum forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033952 0 0 0 0 1.293856 2.411870 0.778639
3 0 dense off gpu-frustum gpu-frustum forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033248 0 0 0 0 2.191712 3.275970 0.786504
4 0 dense off gpu-frustum gpu-frustum forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033216 0 0 0 0 1.276480 2.354521 0.771064
5 0 dense off gpu-frustum gpu-frustum forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034176 0 0 0 0 1.279264 2.276454 0.821941
6 0 dense off gpu-frustum gpu-frustum forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033760 0 0 0 0 1.738880 2.942981 0.777196
7 0 dense off gpu-frustum gpu-frustum forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033376 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033376 0 0 0 0 1.297696 2.382774 0.754583
8 0 dense off gpu-frustum gpu-frustum forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033888 0 0 0 0 1.840704 3.176001 0.822892
9 0 dense off gpu-frustum gpu-frustum forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034528 0 0 0 0 1.539840 2.740770 0.795601
10 0 dense off gpu-frustum gpu-frustum forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034528 0 0 0 0 1.276800 2.615755 0.953068
11 0 dense off gpu-frustum gpu-frustum forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034464 0 0 0 0 2.172000 3.282011 0.813484
12 0 dense off gpu-frustum gpu-frustum forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.032960 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.032960 0 0 0 0 1.287328 2.726974 1.125974
13 0 dense off gpu-frustum gpu-frustum forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033952 0 0 0 0 2.054144 3.328909 0.897964
14 0 dense off gpu-frustum gpu-frustum forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033984 0 0 0 0 1.537920 2.733827 0.756978
15 0 dense off gpu-frustum gpu-frustum forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033312 0 0 0 0 1.289056 2.344903 0.823252
16 0 dense off gpu-frustum gpu-frustum forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034400 0 0 0 0 1.580480 2.915189 0.739875
17 0 dense off gpu-frustum gpu-frustum forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033184 0 0 0 0 1.292480 2.376492 0.811711
18 0 dense off gpu-frustum gpu-frustum forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 2.248384 3.294795 0.764192
19 0 dense off gpu-frustum gpu-frustum forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033792 0 0 0 0 1.276480 2.582481 0.773850
20 0 dense off gpu-frustum gpu-frustum forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034240 0 0 0 0 1.291520 2.338521 0.853220
21 0 dense off gpu-frustum gpu-frustum forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034016 0 0 0 0 1.809760 2.972537 0.766305
22 0 dense off gpu-frustum gpu-frustum forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033760 0 0 0 0 1.290592 2.530944 0.757349
23 0 dense off gpu-frustum gpu-frustum forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033856 0 0 0 0 2.125152 3.185700 0.790461
24 0 dense off gpu-frustum gpu-frustum forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 1.276352 2.625171 0.755596
25 0 dense off gpu-frustum gpu-frustum forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034176 0 0 0 0 1.288896 2.319806 0.843030
26 0 dense off gpu-frustum gpu-frustum forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034368 0 0 0 0 1.815488 2.972086 0.767538
27 0 dense off gpu-frustum gpu-frustum forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033856 0 0 0 0 1.288576 2.538358 0.749955
28 0 dense off gpu-frustum gpu-frustum forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033568 0 0 0 0 2.136608 3.202431 0.769351
29 0 dense off gpu-frustum gpu-frustum forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034400 0 0 0 0 1.276704 2.556893 0.765173
30 0 dense off gpu-frustum gpu-frustum forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034112 0 0 0 0 1.289376 2.294448 0.799909
31 0 dense off gpu-frustum gpu-frustum forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033568 0 0 0 0 1.777408 3.053871 0.763320
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033664,0,0,0,0,1.826624,3.231396,0.929854
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034464,0,0,0,0,1.412096,2.795954,0.877455
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033952,0,0,0,0,1.595936,3.031809,0.968567
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033792,0,0,0,0,1.694912,3.026589,0.888255
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033152,0,0,0,0,1.484512,2.983668,0.920356
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034176,0,0,0,0,1.477024,2.840859,0.896872
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034176,0,0,0,0,1.307680,2.846510,0.896541
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034208,0,0,0,0,1.989152,3.423307,0.942137
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033408,0,0,0,0,1.296160,2.585638,0.904416
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034208,0,0,0,0,1.279488,2.630211,0.941346
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034112,0,0,0,0,1.693824,3.098585,0.853379
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033888,0,0,0,0,1.503008,2.888078,0.937379
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033920,0,0,0,0,1.438688,3.046326,0.903014
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034432,0,0,0,0,1.305184,2.741050,0.891251
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034144,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034144,0,0,0,0,1.828000,3.235564,0.959470
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033696,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033696,0,0,0,0,1.276448,2.687079,0.903404
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034368,0,0,0,0,1.420448,2.777249,0.946966
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033056,0,0,0,0,1.672672,2.987766,0.869370
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033504,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033504,0,0,0,0,1.626336,3.080741,0.983224
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033600,0,0,0,0,1.437760,3.116388,0.949551
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033440,0,0,0,0,1.297312,2.785064,0.995377
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033856,0,0,0,0,1.827328,3.210206,0.939532
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034432,0,0,0,0,1.276736,2.680977,0.943950
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034208,0,0,0,0,1.612704,2.897827,0.996620
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034272,0,0,0,0,1.539488,3.003105,0.961093
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033984,0,0,0,0,1.300704,2.565810,0.967225
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033888,0,0,0,0,1.824704,3.273235,0.969268
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033920,0,0,0,0,1.297088,2.761159,0.890119
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033440,0,0,0,0,1.826016,3.280879,0.972164
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033984,0,0,0,0,1.539584,2.929315,0.942699
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off gpu-frustum gpu-frustum forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033664 0 0 0 0 1.826624 3.231396 0.929854
3 0 dense off gpu-frustum gpu-frustum forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034464 0 0 0 0 1.412096 2.795954 0.877455
4 0 dense off gpu-frustum gpu-frustum forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033952 0 0 0 0 1.595936 3.031809 0.968567
5 0 dense off gpu-frustum gpu-frustum forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033792 0 0 0 0 1.694912 3.026589 0.888255
6 0 dense off gpu-frustum gpu-frustum forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033152 0 0 0 0 1.484512 2.983668 0.920356
7 0 dense off gpu-frustum gpu-frustum forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034176 0 0 0 0 1.477024 2.840859 0.896872
8 0 dense off gpu-frustum gpu-frustum forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034176 0 0 0 0 1.307680 2.846510 0.896541
9 0 dense off gpu-frustum gpu-frustum forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034208 0 0 0 0 1.989152 3.423307 0.942137
10 0 dense off gpu-frustum gpu-frustum forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033408 0 0 0 0 1.296160 2.585638 0.904416
11 0 dense off gpu-frustum gpu-frustum forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034208 0 0 0 0 1.279488 2.630211 0.941346
12 0 dense off gpu-frustum gpu-frustum forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034112 0 0 0 0 1.693824 3.098585 0.853379
13 0 dense off gpu-frustum gpu-frustum forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033888 0 0 0 0 1.503008 2.888078 0.937379
14 0 dense off gpu-frustum gpu-frustum forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033920 0 0 0 0 1.438688 3.046326 0.903014
15 0 dense off gpu-frustum gpu-frustum forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034432 0 0 0 0 1.305184 2.741050 0.891251
16 0 dense off gpu-frustum gpu-frustum forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034144 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034144 0 0 0 0 1.828000 3.235564 0.959470
17 0 dense off gpu-frustum gpu-frustum forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033696 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033696 0 0 0 0 1.276448 2.687079 0.903404
18 0 dense off gpu-frustum gpu-frustum forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034368 0 0 0 0 1.420448 2.777249 0.946966
19 0 dense off gpu-frustum gpu-frustum forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033056 0 0 0 0 1.672672 2.987766 0.869370
20 0 dense off gpu-frustum gpu-frustum forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033504 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033504 0 0 0 0 1.626336 3.080741 0.983224
21 0 dense off gpu-frustum gpu-frustum forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033600 0 0 0 0 1.437760 3.116388 0.949551
22 0 dense off gpu-frustum gpu-frustum forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033440 0 0 0 0 1.297312 2.785064 0.995377
23 0 dense off gpu-frustum gpu-frustum forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033856 0 0 0 0 1.827328 3.210206 0.939532
24 0 dense off gpu-frustum gpu-frustum forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034432 0 0 0 0 1.276736 2.680977 0.943950
25 0 dense off gpu-frustum gpu-frustum forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034208 0 0 0 0 1.612704 2.897827 0.996620
26 0 dense off gpu-frustum gpu-frustum forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034272 0 0 0 0 1.539488 3.003105 0.961093
27 0 dense off gpu-frustum gpu-frustum forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033984 0 0 0 0 1.300704 2.565810 0.967225
28 0 dense off gpu-frustum gpu-frustum forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033888 0 0 0 0 1.824704 3.273235 0.969268
29 0 dense off gpu-frustum gpu-frustum forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033920 0 0 0 0 1.297088 2.761159 0.890119
30 0 dense off gpu-frustum gpu-frustum forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033440 0 0 0 0 1.826016 3.280879 0.972164
31 0 dense off gpu-frustum gpu-frustum forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033984 0 0 0 0 1.539584 2.929315 0.942699
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,1.613024,2.781427,0.868979
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034080,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034080,0,0,0,0,1.473728,3.052328,0.909987
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034464,0,0,0,0,1.288896,2.573685,0.885250
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034336,0,0,0,0,2.004448,3.404802,0.921969
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034272,0,0,0,0,1.584160,2.955524,0.834905
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034368,0,0,0,0,1.550176,2.876456,0.868889
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034528,0,0,0,0,1.277536,2.733436,0.835306
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,1.489600,3.002995,0.843972
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034304,0,0,0,0,1.467360,3.499561,1.180878
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034560,0,0,0,0,1.631616,3.081262,0.934763
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033728,0,0,0,0,1.824416,3.211888,0.938771
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034560,0,0,0,0,1.621248,2.974520,0.872907
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034208,0,0,0,0,1.829056,3.460768,0.978275
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034816,0,0,0,0,1.533760,3.371109,1.229930
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034400,0,0,0,0,1.825664,3.954440,1.406823
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034624,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034624,0,0,0,0,1.293952,3.373113,1.512663
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034912,0,0,0,0,1.988832,4.251489,1.390493
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033888,0,0,0,0,1.292800,3.255520,1.450266
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033920,0,0,0,0,1.824928,3.814766,1.403367
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034912,0,0,0,0,1.310112,3.231576,1.386305
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034880,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034880,0,0,0,0,1.653568,3.665204,1.405661
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033664,0,0,0,0,1.286816,2.856107,1.036245
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034560,0,0,0,0,1.826240,3.193353,0.863629
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034400,0,0,0,0,1.448160,2.849836,0.929032
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034016,0,0,0,0,2.044352,3.601804,0.864271
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034336,0,0,0,0,1.277568,2.798970,1.109403
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033536,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033536,0,0,0,0,2.346592,3.564223,0.821069
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034432,0,0,0,0,1.287968,2.690104,1.027277
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034368,0,0,0,0,1.858592,3.174257,0.918493
0,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033056,0,0,0,0,1.414016,3.027741,1.095397
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off gpu-frustum gpu-frustum forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 1.613024 2.781427 0.868979
3 0 dense off gpu-frustum gpu-frustum forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034080 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034080 0 0 0 0 1.473728 3.052328 0.909987
4 0 dense off gpu-frustum gpu-frustum forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034464 0 0 0 0 1.288896 2.573685 0.885250
5 0 dense off gpu-frustum gpu-frustum forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034336 0 0 0 0 2.004448 3.404802 0.921969
6 0 dense off gpu-frustum gpu-frustum forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034272 0 0 0 0 1.584160 2.955524 0.834905
7 0 dense off gpu-frustum gpu-frustum forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034368 0 0 0 0 1.550176 2.876456 0.868889
8 0 dense off gpu-frustum gpu-frustum forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034528 0 0 0 0 1.277536 2.733436 0.835306
9 0 dense off gpu-frustum gpu-frustum forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 1.489600 3.002995 0.843972
10 0 dense off gpu-frustum gpu-frustum forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034304 0 0 0 0 1.467360 3.499561 1.180878
11 0 dense off gpu-frustum gpu-frustum forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034560 0 0 0 0 1.631616 3.081262 0.934763
12 0 dense off gpu-frustum gpu-frustum forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033728 0 0 0 0 1.824416 3.211888 0.938771
13 0 dense off gpu-frustum gpu-frustum forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034560 0 0 0 0 1.621248 2.974520 0.872907
14 0 dense off gpu-frustum gpu-frustum forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034208 0 0 0 0 1.829056 3.460768 0.978275
15 0 dense off gpu-frustum gpu-frustum forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034816 0 0 0 0 1.533760 3.371109 1.229930
16 0 dense off gpu-frustum gpu-frustum forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034400 0 0 0 0 1.825664 3.954440 1.406823
17 0 dense off gpu-frustum gpu-frustum forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034624 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034624 0 0 0 0 1.293952 3.373113 1.512663
18 0 dense off gpu-frustum gpu-frustum forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034912 0 0 0 0 1.988832 4.251489 1.390493
19 0 dense off gpu-frustum gpu-frustum forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033888 0 0 0 0 1.292800 3.255520 1.450266
20 0 dense off gpu-frustum gpu-frustum forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033920 0 0 0 0 1.824928 3.814766 1.403367
21 0 dense off gpu-frustum gpu-frustum forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034912 0 0 0 0 1.310112 3.231576 1.386305
22 0 dense off gpu-frustum gpu-frustum forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034880 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034880 0 0 0 0 1.653568 3.665204 1.405661
23 0 dense off gpu-frustum gpu-frustum forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033664 0 0 0 0 1.286816 2.856107 1.036245
24 0 dense off gpu-frustum gpu-frustum forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034560 0 0 0 0 1.826240 3.193353 0.863629
25 0 dense off gpu-frustum gpu-frustum forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034400 0 0 0 0 1.448160 2.849836 0.929032
26 0 dense off gpu-frustum gpu-frustum forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034016 0 0 0 0 2.044352 3.601804 0.864271
27 0 dense off gpu-frustum gpu-frustum forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034336 0 0 0 0 1.277568 2.798970 1.109403
28 0 dense off gpu-frustum gpu-frustum forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033536 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033536 0 0 0 0 2.346592 3.564223 0.821069
29 0 dense off gpu-frustum gpu-frustum forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034432 0 0 0 0 1.287968 2.690104 1.027277
30 0 dense off gpu-frustum gpu-frustum forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034368 0 0 0 0 1.858592 3.174257 0.918493
31 0 dense off gpu-frustum gpu-frustum forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033056 0 0 0 0 1.414016 3.027741 1.095397
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091136,0,0,0,0,1.475968,2.778912,0.862567
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091616,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091616,0,0,0,0,1.896928,3.111619,0.908374
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090944,0,0,0,0,1.349088,2.519292,0.833292
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091200,0,0,0,0,1.553024,2.819579,0.815849
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091168,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091168,0,0,0,0,1.746528,3.114424,0.845785
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091136,0,0,0,0,1.627328,2.859754,0.871103
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090176,0,0,0,0,1.439904,2.987004,0.913573
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090912,0,0,0,0,1.635488,2.988878,0.901911
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090880,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090880,0,0,0,0,1.893600,3.189066,0.869580
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.092640,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092640,0,0,0,0,1.468512,2.909047,0.948730
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090944,0,0,0,0,1.549664,2.930227,0.914394
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.089952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.089952,0,0,0,0,1.739872,3.275399,0.953950
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091520,0,0,0,0,1.616160,3.147347,1.110875
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091744,0,0,0,0,1.443104,2.919478,1.001048
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091584,0,0,0,0,1.333664,2.637435,0.896010
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090912,0,0,0,0,1.448000,3.408149,0.966052
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090528,0,0,0,0,1.492704,2.813747,0.853119
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091904,0,0,0,0,1.896640,3.155833,0.937449
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090304,0,0,0,0,1.973920,3.290286,0.876974
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.092064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092064,0,0,0,0,1.343648,2.449731,0.888165
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091584,0,0,0,0,1.334848,2.606327,0.865062
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091168,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091168,0,0,0,0,1.347136,2.547706,0.862747
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091648,0,0,0,0,1.892032,3.145613,0.944692
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091104,0,0,0,0,1.700224,3.131086,0.882575
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.092128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092128,0,0,0,0,1.900544,3.140234,0.919304
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090720,0,0,0,0,1.933568,3.299934,0.871655
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091648,0,0,0,0,1.338944,2.498313,0.904005
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091040,0,0,0,0,1.470080,2.790063,0.860713
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091264,0,0,0,0,1.347520,2.639819,0.952266
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091392,0,0,0,0,1.895040,3.296128,1.062274
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off gpu-frustum gpu-frustum forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091136 0 0 0 0 1.475968 2.778912 0.862567
3 4 dense off gpu-frustum gpu-frustum forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091616 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091616 0 0 0 0 1.896928 3.111619 0.908374
4 4 dense off gpu-frustum gpu-frustum forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090944 0 0 0 0 1.349088 2.519292 0.833292
5 4 dense off gpu-frustum gpu-frustum forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091200 0 0 0 0 1.553024 2.819579 0.815849
6 4 dense off gpu-frustum gpu-frustum forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091168 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091168 0 0 0 0 1.746528 3.114424 0.845785
7 4 dense off gpu-frustum gpu-frustum forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091136 0 0 0 0 1.627328 2.859754 0.871103
8 4 dense off gpu-frustum gpu-frustum forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090176 0 0 0 0 1.439904 2.987004 0.913573
9 4 dense off gpu-frustum gpu-frustum forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090912 0 0 0 0 1.635488 2.988878 0.901911
10 4 dense off gpu-frustum gpu-frustum forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090880 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090880 0 0 0 0 1.893600 3.189066 0.869580
11 4 dense off gpu-frustum gpu-frustum forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.092640 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092640 0 0 0 0 1.468512 2.909047 0.948730
12 4 dense off gpu-frustum gpu-frustum forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090944 0 0 0 0 1.549664 2.930227 0.914394
13 4 dense off gpu-frustum gpu-frustum forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.089952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.089952 0 0 0 0 1.739872 3.275399 0.953950
14 4 dense off gpu-frustum gpu-frustum forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091520 0 0 0 0 1.616160 3.147347 1.110875
15 4 dense off gpu-frustum gpu-frustum forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091744 0 0 0 0 1.443104 2.919478 1.001048
16 4 dense off gpu-frustum gpu-frustum forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091584 0 0 0 0 1.333664 2.637435 0.896010
17 4 dense off gpu-frustum gpu-frustum forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090912 0 0 0 0 1.448000 3.408149 0.966052
18 4 dense off gpu-frustum gpu-frustum forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090528 0 0 0 0 1.492704 2.813747 0.853119
19 4 dense off gpu-frustum gpu-frustum forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091904 0 0 0 0 1.896640 3.155833 0.937449
20 4 dense off gpu-frustum gpu-frustum forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090304 0 0 0 0 1.973920 3.290286 0.876974
21 4 dense off gpu-frustum gpu-frustum forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.092064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092064 0 0 0 0 1.343648 2.449731 0.888165
22 4 dense off gpu-frustum gpu-frustum forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091584 0 0 0 0 1.334848 2.606327 0.865062
23 4 dense off gpu-frustum gpu-frustum forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091168 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091168 0 0 0 0 1.347136 2.547706 0.862747
24 4 dense off gpu-frustum gpu-frustum forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091648 0 0 0 0 1.892032 3.145613 0.944692
25 4 dense off gpu-frustum gpu-frustum forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091104 0 0 0 0 1.700224 3.131086 0.882575
26 4 dense off gpu-frustum gpu-frustum forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.092128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092128 0 0 0 0 1.900544 3.140234 0.919304
27 4 dense off gpu-frustum gpu-frustum forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090720 0 0 0 0 1.933568 3.299934 0.871655
28 4 dense off gpu-frustum gpu-frustum forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091648 0 0 0 0 1.338944 2.498313 0.904005
29 4 dense off gpu-frustum gpu-frustum forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091040 0 0 0 0 1.470080 2.790063 0.860713
30 4 dense off gpu-frustum gpu-frustum forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091264 0 0 0 0 1.347520 2.639819 0.952266
31 4 dense off gpu-frustum gpu-frustum forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091392 0 0 0 0 1.895040 3.296128 1.062274
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090944,0,0,0,0,1.577376,2.895141,0.878637
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091040,0,0,0,0,1.880288,3.132699,0.916429
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090592,0,0,0,0,1.635872,3.233991,0.823012
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090912,0,0,0,0,1.877056,3.321435,0.952557
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090720,0,0,0,0,1.624032,3.128291,0.844853
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091040,0,0,0,0,1.337088,2.651632,0.914536
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090976,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090976,0,0,0,0,1.593152,3.187673,0.889408
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091104,0,0,0,0,1.347200,2.625352,0.873668
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090368,0,0,0,0,1.520448,3.183495,0.947828
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090656,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090656,0,0,0,0,1.641792,3.485605,0.933141
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090592,0,0,0,0,1.492128,3.395795,0.991641
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091424,0,0,0,0,1.348576,2.804450,0.941977
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091296,0,0,0,0,2.045984,3.522384,0.981982
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091520,0,0,0,0,1.334592,2.910270,1.161481
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090560,0,0,0,0,2.041120,3.579933,0.984156
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090944,0,0,0,0,1.625920,3.069360,0.885791
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091008,0,0,0,0,1.337088,2.678502,0.944301
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090432,0,0,0,0,1.595328,3.063438,0.915407
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090624,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090624,0,0,0,0,1.350720,2.617888,0.896251
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.089664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.089664,0,0,0,0,1.491584,3.187643,0.993734
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091168,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091168,0,0,0,0,1.592832,3.196028,0.957166
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090048,0,0,0,0,1.881216,3.340682,0.982544
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090976,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090976,0,0,0,0,1.495456,3.114975,0.966473
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090944,0,0,0,0,2.041568,3.515762,0.990017
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091328,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091328,0,0,0,0,1.647328,3.093535,0.890520
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091360,0,0,0,0,1.881888,3.342956,0.984247
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090144,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090144,0,0,0,0,1.333632,2.717906,0.964289
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091104,0,0,0,0,1.336192,2.675877,0.955893
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090944,0,0,0,0,1.746496,3.228260,0.912100
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090880,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090880,0,0,0,0,1.365408,2.670517,0.927339
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off gpu-frustum gpu-frustum forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090944 0 0 0 0 1.577376 2.895141 0.878637
3 4 dense off gpu-frustum gpu-frustum forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091040 0 0 0 0 1.880288 3.132699 0.916429
4 4 dense off gpu-frustum gpu-frustum forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090592 0 0 0 0 1.635872 3.233991 0.823012
5 4 dense off gpu-frustum gpu-frustum forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090912 0 0 0 0 1.877056 3.321435 0.952557
6 4 dense off gpu-frustum gpu-frustum forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090720 0 0 0 0 1.624032 3.128291 0.844853
7 4 dense off gpu-frustum gpu-frustum forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091040 0 0 0 0 1.337088 2.651632 0.914536
8 4 dense off gpu-frustum gpu-frustum forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090976 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090976 0 0 0 0 1.593152 3.187673 0.889408
9 4 dense off gpu-frustum gpu-frustum forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091104 0 0 0 0 1.347200 2.625352 0.873668
10 4 dense off gpu-frustum gpu-frustum forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090368 0 0 0 0 1.520448 3.183495 0.947828
11 4 dense off gpu-frustum gpu-frustum forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090656 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090656 0 0 0 0 1.641792 3.485605 0.933141
12 4 dense off gpu-frustum gpu-frustum forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090592 0 0 0 0 1.492128 3.395795 0.991641
13 4 dense off gpu-frustum gpu-frustum forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091424 0 0 0 0 1.348576 2.804450 0.941977
14 4 dense off gpu-frustum gpu-frustum forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091296 0 0 0 0 2.045984 3.522384 0.981982
15 4 dense off gpu-frustum gpu-frustum forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091520 0 0 0 0 1.334592 2.910270 1.161481
16 4 dense off gpu-frustum gpu-frustum forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090560 0 0 0 0 2.041120 3.579933 0.984156
17 4 dense off gpu-frustum gpu-frustum forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090944 0 0 0 0 1.625920 3.069360 0.885791
18 4 dense off gpu-frustum gpu-frustum forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091008 0 0 0 0 1.337088 2.678502 0.944301
19 4 dense off gpu-frustum gpu-frustum forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090432 0 0 0 0 1.595328 3.063438 0.915407
20 4 dense off gpu-frustum gpu-frustum forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090624 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090624 0 0 0 0 1.350720 2.617888 0.896251
21 4 dense off gpu-frustum gpu-frustum forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.089664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.089664 0 0 0 0 1.491584 3.187643 0.993734
22 4 dense off gpu-frustum gpu-frustum forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091168 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091168 0 0 0 0 1.592832 3.196028 0.957166
23 4 dense off gpu-frustum gpu-frustum forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090048 0 0 0 0 1.881216 3.340682 0.982544
24 4 dense off gpu-frustum gpu-frustum forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090976 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090976 0 0 0 0 1.495456 3.114975 0.966473
25 4 dense off gpu-frustum gpu-frustum forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090944 0 0 0 0 2.041568 3.515762 0.990017
26 4 dense off gpu-frustum gpu-frustum forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091328 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091328 0 0 0 0 1.647328 3.093535 0.890520
27 4 dense off gpu-frustum gpu-frustum forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091360 0 0 0 0 1.881888 3.342956 0.984247
28 4 dense off gpu-frustum gpu-frustum forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090144 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090144 0 0 0 0 1.333632 2.717906 0.964289
29 4 dense off gpu-frustum gpu-frustum forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091104 0 0 0 0 1.336192 2.675877 0.955893
30 4 dense off gpu-frustum gpu-frustum forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090944 0 0 0 0 1.746496 3.228260 0.912100
31 4 dense off gpu-frustum gpu-frustum forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090880 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090880 0 0 0 0 1.365408 2.670517 0.927339
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090432,0,0,0,0,1.602176,2.801234,0.766455
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090944,0,0,0,0,1.470912,2.777489,0.861274
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090560,0,0,0,0,1.553376,2.875645,0.779040
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090656,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090656,0,0,0,0,1.880032,3.109225,0.809777
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090688,0,0,0,0,1.368768,2.562463,0.827131
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090336,0,0,0,0,2.224128,3.490704,0.821179
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091040,0,0,0,0,1.339904,2.725281,0.806691
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090752,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090752,0,0,0,0,1.342688,2.432679,0.745116
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091040,0,0,0,0,1.333504,2.445714,0.747520
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090112,0,0,0,0,1.540576,2.664536,0.816871
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090944,0,0,0,0,2.063328,3.331474,0.811381
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090080,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090080,0,0,0,0,1.333120,2.607599,0.822191
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091488,0,0,0,0,1.543808,2.960484,0.882845
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090464,0,0,0,0,1.449856,2.901974,0.861645
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090784,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090784,0,0,0,0,1.348480,2.599193,0.861845
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091296,0,0,0,0,2.216896,3.455799,0.826960
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090688,0,0,0,0,1.349312,2.535583,0.813063
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.092000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.092000,0,0,0,0,1.773280,2.965915,0.781404
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091008,0,0,0,0,1.472800,2.819038,0.790761
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091936,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091936,0,0,0,0,1.683904,2.842212,0.857307
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090528,0,0,0,0,1.527552,3.084358,0.763791
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091520,0,0,0,0,1.351424,2.518291,0.790751
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091360,0,0,0,0,2.289152,3.534206,0.841508
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091776,0,0,0,0,1.346208,2.547245,0.831819
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091584,0,0,0,0,1.495136,2.900491,0.822461
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091168,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091168,0,0,0,0,1.449024,2.977456,1.045843
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091104,0,0,0,0,1.556608,3.403881,1.163725
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091200,0,0,0,0,1.527232,3.276971,1.145972
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.091840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.091840,0,0,0,0,1.471360,3.310124,1.231473
4,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,1,59549920,0.090816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.090816,0,0,0,0,1.453408,3.586846,1.132937
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off gpu-frustum gpu-frustum forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090432 0 0 0 0 1.602176 2.801234 0.766455
3 4 dense off gpu-frustum gpu-frustum forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090944 0 0 0 0 1.470912 2.777489 0.861274
4 4 dense off gpu-frustum gpu-frustum forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090560 0 0 0 0 1.553376 2.875645 0.779040
5 4 dense off gpu-frustum gpu-frustum forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090656 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090656 0 0 0 0 1.880032 3.109225 0.809777
6 4 dense off gpu-frustum gpu-frustum forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090688 0 0 0 0 1.368768 2.562463 0.827131
7 4 dense off gpu-frustum gpu-frustum forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090336 0 0 0 0 2.224128 3.490704 0.821179
8 4 dense off gpu-frustum gpu-frustum forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091040 0 0 0 0 1.339904 2.725281 0.806691
9 4 dense off gpu-frustum gpu-frustum forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090752 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090752 0 0 0 0 1.342688 2.432679 0.745116
10 4 dense off gpu-frustum gpu-frustum forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091040 0 0 0 0 1.333504 2.445714 0.747520
11 4 dense off gpu-frustum gpu-frustum forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090112 0 0 0 0 1.540576 2.664536 0.816871
12 4 dense off gpu-frustum gpu-frustum forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090944 0 0 0 0 2.063328 3.331474 0.811381
13 4 dense off gpu-frustum gpu-frustum forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090080 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090080 0 0 0 0 1.333120 2.607599 0.822191
14 4 dense off gpu-frustum gpu-frustum forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091488 0 0 0 0 1.543808 2.960484 0.882845
15 4 dense off gpu-frustum gpu-frustum forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090464 0 0 0 0 1.449856 2.901974 0.861645
16 4 dense off gpu-frustum gpu-frustum forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090784 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090784 0 0 0 0 1.348480 2.599193 0.861845
17 4 dense off gpu-frustum gpu-frustum forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091296 0 0 0 0 2.216896 3.455799 0.826960
18 4 dense off gpu-frustum gpu-frustum forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090688 0 0 0 0 1.349312 2.535583 0.813063
19 4 dense off gpu-frustum gpu-frustum forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.092000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.092000 0 0 0 0 1.773280 2.965915 0.781404
20 4 dense off gpu-frustum gpu-frustum forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091008 0 0 0 0 1.472800 2.819038 0.790761
21 4 dense off gpu-frustum gpu-frustum forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091936 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091936 0 0 0 0 1.683904 2.842212 0.857307
22 4 dense off gpu-frustum gpu-frustum forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090528 0 0 0 0 1.527552 3.084358 0.763791
23 4 dense off gpu-frustum gpu-frustum forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091520 0 0 0 0 1.351424 2.518291 0.790751
24 4 dense off gpu-frustum gpu-frustum forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091360 0 0 0 0 2.289152 3.534206 0.841508
25 4 dense off gpu-frustum gpu-frustum forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091776 0 0 0 0 1.346208 2.547245 0.831819
26 4 dense off gpu-frustum gpu-frustum forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091584 0 0 0 0 1.495136 2.900491 0.822461
27 4 dense off gpu-frustum gpu-frustum forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091168 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091168 0 0 0 0 1.449024 2.977456 1.045843
28 4 dense off gpu-frustum gpu-frustum forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091104 0 0 0 0 1.556608 3.403881 1.163725
29 4 dense off gpu-frustum gpu-frustum forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091200 0 0 0 0 1.527232 3.276971 1.145972
30 4 dense off gpu-frustum gpu-frustum forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.091840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.091840 0 0 0 0 1.471360 3.310124 1.231473
31 4 dense off gpu-frustum gpu-frustum forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 1 59549920 0.090816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.090816 0 0 0 0 1.453408 3.586846 1.132937
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281888,0,0,0,0,2.146400,3.497718,0.896571
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282176,0,0,0,0,2.107936,3.412717,0.959790
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282848,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282848,0,0,0,0,2.154272,3.519599,0.886803
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283040,0,0,0,0,2.098048,3.357393,0.916048
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282496,0,0,0,0,2.140704,3.504891,0.897342
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282720,0,0,0,0,2.095840,3.354968,0.925666
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282304,0,0,0,0,2.135808,3.742750,0.887855
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282528,0,0,0,0,2.086432,3.412377,0.971964
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281792,0,0,0,0,2.137120,3.491335,0.874239
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281856,0,0,0,0,2.087520,3.416945,0.988785
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281760,0,0,0,0,2.152640,3.524548,0.901651
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281824,0,0,0,0,2.098752,3.403409,0.949130
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.280672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.280672,0,0,0,0,2.158016,3.562029,0.924785
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282336,0,0,0,0,2.088128,3.469625,1.024853
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.279840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.279840,0,0,0,0,2.143616,3.645116,1.019583
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283456,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283456,0,0,0,0,2.083264,3.483011,1.014895
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281632,0,0,0,0,1.795616,3.257745,0.986681
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281664,0,0,0,0,2.247552,3.743512,1.022840
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281984,0,0,0,0,1.806944,3.541841,1.250178
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281248,0,0,0,0,1.683680,4.096758,1.111426
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281856,0,0,0,0,1.858400,3.424700,1.050842
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281472,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281472,0,0,0,0,1.640224,3.257335,1.119061
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283072,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283072,0,0,0,0,1.525024,2.908556,0.983445
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282752,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282752,0,0,0,0,1.632672,3.337726,1.035203
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281504,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281504,0,0,0,0,1.533664,3.147777,0.968347
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281344,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281344,0,0,0,0,1.647264,3.629446,0.995097
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281088,0,0,0,0,1.804800,3.289675,1.011879
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281312,0,0,0,0,2.095648,3.568431,1.046594
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283040,0,0,0,0,1.871040,3.416825,0.915918
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281792,0,0,0,0,1.637056,3.689039,1.011799
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off gpu-frustum gpu-frustum forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281888 0 0 0 0 2.146400 3.497718 0.896571
3 16 dense off gpu-frustum gpu-frustum forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282176 0 0 0 0 2.107936 3.412717 0.959790
4 16 dense off gpu-frustum gpu-frustum forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282848 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282848 0 0 0 0 2.154272 3.519599 0.886803
5 16 dense off gpu-frustum gpu-frustum forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283040 0 0 0 0 2.098048 3.357393 0.916048
6 16 dense off gpu-frustum gpu-frustum forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282496 0 0 0 0 2.140704 3.504891 0.897342
7 16 dense off gpu-frustum gpu-frustum forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282720 0 0 0 0 2.095840 3.354968 0.925666
8 16 dense off gpu-frustum gpu-frustum forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282304 0 0 0 0 2.135808 3.742750 0.887855
9 16 dense off gpu-frustum gpu-frustum forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282528 0 0 0 0 2.086432 3.412377 0.971964
10 16 dense off gpu-frustum gpu-frustum forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281792 0 0 0 0 2.137120 3.491335 0.874239
11 16 dense off gpu-frustum gpu-frustum forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281856 0 0 0 0 2.087520 3.416945 0.988785
12 16 dense off gpu-frustum gpu-frustum forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281760 0 0 0 0 2.152640 3.524548 0.901651
13 16 dense off gpu-frustum gpu-frustum forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281824 0 0 0 0 2.098752 3.403409 0.949130
14 16 dense off gpu-frustum gpu-frustum forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.280672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.280672 0 0 0 0 2.158016 3.562029 0.924785
15 16 dense off gpu-frustum gpu-frustum forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282336 0 0 0 0 2.088128 3.469625 1.024853
16 16 dense off gpu-frustum gpu-frustum forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.279840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.279840 0 0 0 0 2.143616 3.645116 1.019583
17 16 dense off gpu-frustum gpu-frustum forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283456 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283456 0 0 0 0 2.083264 3.483011 1.014895
18 16 dense off gpu-frustum gpu-frustum forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281632 0 0 0 0 1.795616 3.257745 0.986681
19 16 dense off gpu-frustum gpu-frustum forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281664 0 0 0 0 2.247552 3.743512 1.022840
20 16 dense off gpu-frustum gpu-frustum forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281984 0 0 0 0 1.806944 3.541841 1.250178
21 16 dense off gpu-frustum gpu-frustum forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281248 0 0 0 0 1.683680 4.096758 1.111426
22 16 dense off gpu-frustum gpu-frustum forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281856 0 0 0 0 1.858400 3.424700 1.050842
23 16 dense off gpu-frustum gpu-frustum forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281472 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281472 0 0 0 0 1.640224 3.257335 1.119061
24 16 dense off gpu-frustum gpu-frustum forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283072 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283072 0 0 0 0 1.525024 2.908556 0.983445
25 16 dense off gpu-frustum gpu-frustum forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282752 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282752 0 0 0 0 1.632672 3.337726 1.035203
26 16 dense off gpu-frustum gpu-frustum forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281504 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281504 0 0 0 0 1.533664 3.147777 0.968347
27 16 dense off gpu-frustum gpu-frustum forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281344 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281344 0 0 0 0 1.647264 3.629446 0.995097
28 16 dense off gpu-frustum gpu-frustum forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281088 0 0 0 0 1.804800 3.289675 1.011879
29 16 dense off gpu-frustum gpu-frustum forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281312 0 0 0 0 2.095648 3.568431 1.046594
30 16 dense off gpu-frustum gpu-frustum forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283040 0 0 0 0 1.871040 3.416825 0.915918
31 16 dense off gpu-frustum gpu-frustum forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281792 0 0 0 0 1.637056 3.689039 1.011799
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282304,0,0,0,0,1.687776,3.694720,1.011658
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281952,0,0,0,0,1.855520,3.238539,0.874279
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284384,0,0,0,0,1.653632,3.332626,0.775253
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281952,0,0,0,0,1.642880,3.245362,0.985679
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281792,0,0,0,0,2.397472,3.697505,0.772958
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281216,0,0,0,0,1.536800,2.599704,0.793687
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281152,0,0,0,0,2.087552,3.621070,0.984717
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281184,0,0,0,0,1.865824,3.183895,0.807673
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281536,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281536,0,0,0,0,2.077120,3.553022,1.082482
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282560,0,0,0,0,1.888672,3.288132,0.869410
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283008,0,0,0,0,2.075168,3.489723,1.044771
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283584,0,0,0,0,1.860544,3.195598,0.868257
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282272,0,0,0,0,2.074016,3.552461,1.098532
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284352,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284352,0,0,0,0,1.883808,3.242526,0.844383
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283392,0,0,0,0,2.075520,3.534778,1.079557
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282304,0,0,0,0,1.872096,3.220985,0.828983
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282560,0,0,0,0,1.549440,2.733927,0.877124
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282176,0,0,0,0,1.943040,3.461610,1.008843
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281632,0,0,0,0,1.682208,3.082544,0.874680
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281504,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281504,0,0,0,0,1.942336,3.481077,1.013452
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282400,0,0,0,0,1.542560,2.820941,0.887353
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281440,0,0,0,0,1.644768,3.078547,0.977765
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281280,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281280,0,0,0,0,1.887744,3.271381,0.905167
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281888,0,0,0,0,1.694816,3.519690,1.036816
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282496,0,0,0,0,1.659296,3.218331,1.008342
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281024,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281024,0,0,0,0,1.787136,3.052137,0.813624
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282400,0,0,0,0,1.526016,2.575449,0.767558
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282304,0,0,0,0,1.528192,2.622657,0.867196
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.280256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.280256,0,0,0,0,1.953600,3.512826,1.001279
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282496,0,0,0,0,1.542752,2.917974,0.919073
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off gpu-frustum gpu-frustum forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282304 0 0 0 0 1.687776 3.694720 1.011658
3 16 dense off gpu-frustum gpu-frustum forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281952 0 0 0 0 1.855520 3.238539 0.874279
4 16 dense off gpu-frustum gpu-frustum forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284384 0 0 0 0 1.653632 3.332626 0.775253
5 16 dense off gpu-frustum gpu-frustum forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281952 0 0 0 0 1.642880 3.245362 0.985679
6 16 dense off gpu-frustum gpu-frustum forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281792 0 0 0 0 2.397472 3.697505 0.772958
7 16 dense off gpu-frustum gpu-frustum forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281216 0 0 0 0 1.536800 2.599704 0.793687
8 16 dense off gpu-frustum gpu-frustum forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281152 0 0 0 0 2.087552 3.621070 0.984717
9 16 dense off gpu-frustum gpu-frustum forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281184 0 0 0 0 1.865824 3.183895 0.807673
10 16 dense off gpu-frustum gpu-frustum forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281536 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281536 0 0 0 0 2.077120 3.553022 1.082482
11 16 dense off gpu-frustum gpu-frustum forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282560 0 0 0 0 1.888672 3.288132 0.869410
12 16 dense off gpu-frustum gpu-frustum forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283008 0 0 0 0 2.075168 3.489723 1.044771
13 16 dense off gpu-frustum gpu-frustum forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283584 0 0 0 0 1.860544 3.195598 0.868257
14 16 dense off gpu-frustum gpu-frustum forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282272 0 0 0 0 2.074016 3.552461 1.098532
15 16 dense off gpu-frustum gpu-frustum forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284352 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284352 0 0 0 0 1.883808 3.242526 0.844383
16 16 dense off gpu-frustum gpu-frustum forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283392 0 0 0 0 2.075520 3.534778 1.079557
17 16 dense off gpu-frustum gpu-frustum forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282304 0 0 0 0 1.872096 3.220985 0.828983
18 16 dense off gpu-frustum gpu-frustum forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282560 0 0 0 0 1.549440 2.733927 0.877124
19 16 dense off gpu-frustum gpu-frustum forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282176 0 0 0 0 1.943040 3.461610 1.008843
20 16 dense off gpu-frustum gpu-frustum forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281632 0 0 0 0 1.682208 3.082544 0.874680
21 16 dense off gpu-frustum gpu-frustum forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281504 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281504 0 0 0 0 1.942336 3.481077 1.013452
22 16 dense off gpu-frustum gpu-frustum forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282400 0 0 0 0 1.542560 2.820941 0.887353
23 16 dense off gpu-frustum gpu-frustum forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281440 0 0 0 0 1.644768 3.078547 0.977765
24 16 dense off gpu-frustum gpu-frustum forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281280 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281280 0 0 0 0 1.887744 3.271381 0.905167
25 16 dense off gpu-frustum gpu-frustum forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281888 0 0 0 0 1.694816 3.519690 1.036816
26 16 dense off gpu-frustum gpu-frustum forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282496 0 0 0 0 1.659296 3.218331 1.008342
27 16 dense off gpu-frustum gpu-frustum forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281024 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281024 0 0 0 0 1.787136 3.052137 0.813624
28 16 dense off gpu-frustum gpu-frustum forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282400 0 0 0 0 1.526016 2.575449 0.767558
29 16 dense off gpu-frustum gpu-frustum forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282304 0 0 0 0 1.528192 2.622657 0.867196
30 16 dense off gpu-frustum gpu-frustum forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.280256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.280256 0 0 0 0 1.953600 3.512826 1.001279
31 16 dense off gpu-frustum gpu-frustum forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282496 0 0 0 0 1.542752 2.917974 0.919073
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283040,0,0,0,0,1.718144,3.258256,0.824616
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283392,0,0,0,0,1.526464,2.832032,0.897673
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283488,0,0,0,0,2.242304,3.783446,0.876914
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283360,0,0,0,0,1.749504,3.142378,0.878847
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282816,0,0,0,0,2.076512,3.592897,0.887194
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283200,0,0,0,0,1.546272,2.801845,0.874961
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283328,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283328,0,0,0,0,2.246496,3.685492,0.779941
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.285152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.285152,0,0,0,0,1.553344,2.724268,0.817211
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283712,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283712,0,0,0,0,1.954272,3.154581,0.763420
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283808,0,0,0,0,1.688896,3.218702,0.954320
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284032,0,0,0,0,1.736224,2.946678,0.801953
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283200,0,0,0,0,1.641184,2.831581,0.826690
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283680,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283680,0,0,0,0,1.741024,2.918114,0.795521
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.280992,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.280992,0,0,0,0,2.075776,3.675703,1.167883
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284960,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284960,0,0,0,0,1.758016,3.127820,0.852628
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284096,0,0,0,0,2.079520,3.425151,0.879088
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283424,0,0,0,0,1.539680,2.837262,0.914444
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284832,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284832,0,0,0,0,2.410912,3.815687,0.896441
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281824,0,0,0,0,1.882016,3.259559,0.954059
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.282720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.282720,0,0,0,0,2.248704,3.544796,0.936376
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283264,0,0,0,0,1.898752,3.303060,0.909476
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284928,0,0,0,0,2.249696,3.502587,0.929483
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.281280,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.281280,0,0,0,0,1.881664,3.253918,0.926307
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284128,0,0,0,0,2.242176,3.584732,0.972384
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283008,0,0,0,0,1.890432,3.309162,0.963758
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283392,0,0,0,0,2.247104,3.536250,0.959080
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283840,0,0,0,0,1.888288,3.227017,0.896100
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.284128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.284128,0,0,0,0,2.245152,3.578520,0.966393
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283040,0,0,0,0,1.894176,3.214804,0.897112
16,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,1,59550880,0.283968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.283968,0,0,0,0,2.243520,3.464395,0.900027
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off gpu-frustum gpu-frustum forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283040 0 0 0 0 1.718144 3.258256 0.824616
3 16 dense off gpu-frustum gpu-frustum forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283392 0 0 0 0 1.526464 2.832032 0.897673
4 16 dense off gpu-frustum gpu-frustum forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283488 0 0 0 0 2.242304 3.783446 0.876914
5 16 dense off gpu-frustum gpu-frustum forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283360 0 0 0 0 1.749504 3.142378 0.878847
6 16 dense off gpu-frustum gpu-frustum forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282816 0 0 0 0 2.076512 3.592897 0.887194
7 16 dense off gpu-frustum gpu-frustum forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283200 0 0 0 0 1.546272 2.801845 0.874961
8 16 dense off gpu-frustum gpu-frustum forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283328 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283328 0 0 0 0 2.246496 3.685492 0.779941
9 16 dense off gpu-frustum gpu-frustum forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.285152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.285152 0 0 0 0 1.553344 2.724268 0.817211
10 16 dense off gpu-frustum gpu-frustum forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283712 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283712 0 0 0 0 1.954272 3.154581 0.763420
11 16 dense off gpu-frustum gpu-frustum forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283808 0 0 0 0 1.688896 3.218702 0.954320
12 16 dense off gpu-frustum gpu-frustum forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284032 0 0 0 0 1.736224 2.946678 0.801953
13 16 dense off gpu-frustum gpu-frustum forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283200 0 0 0 0 1.641184 2.831581 0.826690
14 16 dense off gpu-frustum gpu-frustum forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283680 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283680 0 0 0 0 1.741024 2.918114 0.795521
15 16 dense off gpu-frustum gpu-frustum forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.280992 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.280992 0 0 0 0 2.075776 3.675703 1.167883
16 16 dense off gpu-frustum gpu-frustum forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284960 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284960 0 0 0 0 1.758016 3.127820 0.852628
17 16 dense off gpu-frustum gpu-frustum forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284096 0 0 0 0 2.079520 3.425151 0.879088
18 16 dense off gpu-frustum gpu-frustum forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283424 0 0 0 0 1.539680 2.837262 0.914444
19 16 dense off gpu-frustum gpu-frustum forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284832 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284832 0 0 0 0 2.410912 3.815687 0.896441
20 16 dense off gpu-frustum gpu-frustum forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281824 0 0 0 0 1.882016 3.259559 0.954059
21 16 dense off gpu-frustum gpu-frustum forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.282720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.282720 0 0 0 0 2.248704 3.544796 0.936376
22 16 dense off gpu-frustum gpu-frustum forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283264 0 0 0 0 1.898752 3.303060 0.909476
23 16 dense off gpu-frustum gpu-frustum forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284928 0 0 0 0 2.249696 3.502587 0.929483
24 16 dense off gpu-frustum gpu-frustum forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.281280 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.281280 0 0 0 0 1.881664 3.253918 0.926307
25 16 dense off gpu-frustum gpu-frustum forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284128 0 0 0 0 2.242176 3.584732 0.972384
26 16 dense off gpu-frustum gpu-frustum forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283008 0 0 0 0 1.890432 3.309162 0.963758
27 16 dense off gpu-frustum gpu-frustum forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283392 0 0 0 0 2.247104 3.536250 0.959080
28 16 dense off gpu-frustum gpu-frustum forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283840 0 0 0 0 1.888288 3.227017 0.896100
29 16 dense off gpu-frustum gpu-frustum forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.284128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.284128 0 0 0 0 2.245152 3.578520 0.966393
30 16 dense off gpu-frustum gpu-frustum forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283040 0 0 0 0 1.894176 3.214804 0.897112
31 16 dense off gpu-frustum gpu-frustum forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 1 59550880 0.283968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.283968 0 0 0 0 2.243520 3.464395 0.900027
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545664,0,0,0,0,2.139584,3.410012,0.849673
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548032,0,0,0,0,1.908320,3.493910,0.837631
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546368,0,0,0,0,2.132768,3.382650,0.845956
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544832,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544832,0,0,0,0,1.903904,3.476017,0.837069
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545824,0,0,0,0,2.139584,3.404462,0.853380
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.547008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547008,0,0,0,0,1.905728,3.605040,0.868869
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.543520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.543520,0,0,0,0,1.991968,3.729355,0.853150
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546496,0,0,0,0,1.906720,3.233098,0.877455
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546272,0,0,0,0,2.021184,3.529678,0.989797
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545664,0,0,0,0,1.949760,3.591294,1.017780
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545056,0,0,0,0,1.791680,3.137238,0.927159
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545568,0,0,0,0,1.956416,3.633704,0.932249
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545632,0,0,0,0,1.788160,3.145804,0.942848
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545568,0,0,0,0,1.940704,3.761876,0.925055
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546848,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546848,0,0,0,0,1.799616,3.156955,0.950874
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544864,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544864,0,0,0,0,1.948320,3.768658,0.984297
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544864,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544864,0,0,0,0,1.790688,3.181291,0.976212
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.543776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.543776,0,0,0,0,2.304000,3.956763,0.942187
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546240,0,0,0,0,1.794528,3.095068,0.933621
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544032,0,0,0,0,1.956288,3.527734,0.955362
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545760,0,0,0,0,1.792800,3.306256,1.093944
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544736,0,0,0,0,2.276288,3.864810,0.929513
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.549664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549664,0,0,0,0,1.802592,3.099176,0.933702
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545632,0,0,0,0,1.957376,3.518678,0.968667
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546688,0,0,0,0,1.793376,3.147858,0.980610
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.551264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551264,0,0,0,0,2.285920,3.917860,0.903445
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.547200,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547200,0,0,0,0,1.795968,3.044352,0.898886
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546944,0,0,0,0,1.908736,3.341453,0.859261
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.547776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547776,0,0,0,0,2.135424,3.434499,0.874609
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548928,0,0,0,0,1.908640,3.416855,0.858739
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off gpu-frustum gpu-frustum forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545664 0 0 0 0 2.139584 3.410012 0.849673
3 32 dense off gpu-frustum gpu-frustum forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548032 0 0 0 0 1.908320 3.493910 0.837631
4 32 dense off gpu-frustum gpu-frustum forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546368 0 0 0 0 2.132768 3.382650 0.845956
5 32 dense off gpu-frustum gpu-frustum forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544832 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544832 0 0 0 0 1.903904 3.476017 0.837069
6 32 dense off gpu-frustum gpu-frustum forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545824 0 0 0 0 2.139584 3.404462 0.853380
7 32 dense off gpu-frustum gpu-frustum forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.547008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547008 0 0 0 0 1.905728 3.605040 0.868869
8 32 dense off gpu-frustum gpu-frustum forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.543520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.543520 0 0 0 0 1.991968 3.729355 0.853150
9 32 dense off gpu-frustum gpu-frustum forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546496 0 0 0 0 1.906720 3.233098 0.877455
10 32 dense off gpu-frustum gpu-frustum forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546272 0 0 0 0 2.021184 3.529678 0.989797
11 32 dense off gpu-frustum gpu-frustum forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545664 0 0 0 0 1.949760 3.591294 1.017780
12 32 dense off gpu-frustum gpu-frustum forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545056 0 0 0 0 1.791680 3.137238 0.927159
13 32 dense off gpu-frustum gpu-frustum forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545568 0 0 0 0 1.956416 3.633704 0.932249
14 32 dense off gpu-frustum gpu-frustum forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545632 0 0 0 0 1.788160 3.145804 0.942848
15 32 dense off gpu-frustum gpu-frustum forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545568 0 0 0 0 1.940704 3.761876 0.925055
16 32 dense off gpu-frustum gpu-frustum forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546848 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546848 0 0 0 0 1.799616 3.156955 0.950874
17 32 dense off gpu-frustum gpu-frustum forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544864 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544864 0 0 0 0 1.948320 3.768658 0.984297
18 32 dense off gpu-frustum gpu-frustum forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544864 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544864 0 0 0 0 1.790688 3.181291 0.976212
19 32 dense off gpu-frustum gpu-frustum forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.543776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.543776 0 0 0 0 2.304000 3.956763 0.942187
20 32 dense off gpu-frustum gpu-frustum forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546240 0 0 0 0 1.794528 3.095068 0.933621
21 32 dense off gpu-frustum gpu-frustum forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544032 0 0 0 0 1.956288 3.527734 0.955362
22 32 dense off gpu-frustum gpu-frustum forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545760 0 0 0 0 1.792800 3.306256 1.093944
23 32 dense off gpu-frustum gpu-frustum forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544736 0 0 0 0 2.276288 3.864810 0.929513
24 32 dense off gpu-frustum gpu-frustum forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.549664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549664 0 0 0 0 1.802592 3.099176 0.933702
25 32 dense off gpu-frustum gpu-frustum forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545632 0 0 0 0 1.957376 3.518678 0.968667
26 32 dense off gpu-frustum gpu-frustum forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546688 0 0 0 0 1.793376 3.147858 0.980610
27 32 dense off gpu-frustum gpu-frustum forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.551264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551264 0 0 0 0 2.285920 3.917860 0.903445
28 32 dense off gpu-frustum gpu-frustum forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.547200 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547200 0 0 0 0 1.795968 3.044352 0.898886
29 32 dense off gpu-frustum gpu-frustum forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546944 0 0 0 0 1.908736 3.341453 0.859261
30 32 dense off gpu-frustum gpu-frustum forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.547776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547776 0 0 0 0 2.135424 3.434499 0.874609
31 32 dense off gpu-frustum gpu-frustum forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548928 0 0 0 0 1.908640 3.416855 0.858739
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544256,0,0,0,0,1.787680,3.164850,0.924473
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544768,0,0,0,0,2.346816,3.836537,1.021227
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545952,0,0,0,0,1.789120,3.160171,0.939973
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545280,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545280,0,0,0,0,2.349856,3.808544,0.965932
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545248,0,0,0,0,1.788800,3.116289,0.914856
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545728,0,0,0,0,2.351456,3.889207,0.955623
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545920,0,0,0,0,2.341120,4.085557,1.044270
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544960,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544960,0,0,0,0,1.796992,3.059050,0.837049
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546240,0,0,0,0,2.275968,3.648422,0.835636
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.547456,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547456,0,0,0,0,1.944544,3.363996,1.030493
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545888,0,0,0,0,2.678560,4.088011,0.946456
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546624,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546624,0,0,0,0,2.104224,3.560466,0.930595
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.544160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.544160,0,0,0,0,2.332224,3.812071,0.998974
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550144,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550144,0,0,0,0,2.111936,3.543825,0.983184
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546176,0,0,0,0,1.949440,3.763970,1.022148
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.547424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547424,0,0,0,0,1.812256,3.689088,1.378620
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.543968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.543968,0,0,0,0,1.895168,3.533446,0.928761
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546112,0,0,0,0,2.080000,3.562169,0.935345
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546048,0,0,0,0,2.203616,3.605871,0.912041
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545728,0,0,0,0,1.812704,3.216898,0.967555
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546464,0,0,0,0,2.458592,3.892993,0.921869
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545376,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545376,0,0,0,0,1.791552,3.202481,0.973126
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546048,0,0,0,0,2.289984,3.632232,0.861224
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548128,0,0,0,0,1.794464,3.137709,0.947347
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545184,0,0,0,0,2.046944,3.417356,0.861825
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.543904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.543904,0,0,0,0,1.790848,3.121067,1.024001
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548608,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548608,0,0,0,0,2.179968,3.610310,0.856325
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546304,0,0,0,0,1.793664,3.289355,1.039271
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.546240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.546240,0,0,0,0,2.092416,3.663139,0.893045
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.545408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.545408,0,0,0,0,1.791488,3.245202,0.998423
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off gpu-frustum gpu-frustum forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544256 0 0 0 0 1.787680 3.164850 0.924473
3 32 dense off gpu-frustum gpu-frustum forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544768 0 0 0 0 2.346816 3.836537 1.021227
4 32 dense off gpu-frustum gpu-frustum forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545952 0 0 0 0 1.789120 3.160171 0.939973
5 32 dense off gpu-frustum gpu-frustum forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545280 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545280 0 0 0 0 2.349856 3.808544 0.965932
6 32 dense off gpu-frustum gpu-frustum forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545248 0 0 0 0 1.788800 3.116289 0.914856
7 32 dense off gpu-frustum gpu-frustum forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545728 0 0 0 0 2.351456 3.889207 0.955623
8 32 dense off gpu-frustum gpu-frustum forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545920 0 0 0 0 2.341120 4.085557 1.044270
9 32 dense off gpu-frustum gpu-frustum forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544960 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544960 0 0 0 0 1.796992 3.059050 0.837049
10 32 dense off gpu-frustum gpu-frustum forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546240 0 0 0 0 2.275968 3.648422 0.835636
11 32 dense off gpu-frustum gpu-frustum forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.547456 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547456 0 0 0 0 1.944544 3.363996 1.030493
12 32 dense off gpu-frustum gpu-frustum forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545888 0 0 0 0 2.678560 4.088011 0.946456
13 32 dense off gpu-frustum gpu-frustum forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546624 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546624 0 0 0 0 2.104224 3.560466 0.930595
14 32 dense off gpu-frustum gpu-frustum forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.544160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.544160 0 0 0 0 2.332224 3.812071 0.998974
15 32 dense off gpu-frustum gpu-frustum forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550144 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550144 0 0 0 0 2.111936 3.543825 0.983184
16 32 dense off gpu-frustum gpu-frustum forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546176 0 0 0 0 1.949440 3.763970 1.022148
17 32 dense off gpu-frustum gpu-frustum forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.547424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547424 0 0 0 0 1.812256 3.689088 1.378620
18 32 dense off gpu-frustum gpu-frustum forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.543968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.543968 0 0 0 0 1.895168 3.533446 0.928761
19 32 dense off gpu-frustum gpu-frustum forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546112 0 0 0 0 2.080000 3.562169 0.935345
20 32 dense off gpu-frustum gpu-frustum forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546048 0 0 0 0 2.203616 3.605871 0.912041
21 32 dense off gpu-frustum gpu-frustum forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545728 0 0 0 0 1.812704 3.216898 0.967555
22 32 dense off gpu-frustum gpu-frustum forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546464 0 0 0 0 2.458592 3.892993 0.921869
23 32 dense off gpu-frustum gpu-frustum forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545376 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545376 0 0 0 0 1.791552 3.202481 0.973126
24 32 dense off gpu-frustum gpu-frustum forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546048 0 0 0 0 2.289984 3.632232 0.861224
25 32 dense off gpu-frustum gpu-frustum forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548128 0 0 0 0 1.794464 3.137709 0.947347
26 32 dense off gpu-frustum gpu-frustum forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545184 0 0 0 0 2.046944 3.417356 0.861825
27 32 dense off gpu-frustum gpu-frustum forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.543904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.543904 0 0 0 0 1.790848 3.121067 1.024001
28 32 dense off gpu-frustum gpu-frustum forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548608 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548608 0 0 0 0 2.179968 3.610310 0.856325
29 32 dense off gpu-frustum gpu-frustum forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546304 0 0 0 0 1.793664 3.289355 1.039271
30 32 dense off gpu-frustum gpu-frustum forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.546240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.546240 0 0 0 0 2.092416 3.663139 0.893045
31 32 dense off gpu-frustum gpu-frustum forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.545408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.545408 0 0 0 0 1.791488 3.245202 0.998423
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550816,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550816,0,0,0,0,1.794240,3.033742,0.834134
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548928,0,0,0,0,2.335200,3.774981,0.879779
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550368,0,0,0,0,1.794272,3.021409,0.849944
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.547296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.547296,0,0,0,0,2.341856,3.872595,0.868879
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.551296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551296,0,0,0,0,1.796608,3.107461,0.906310
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548704,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548704,0,0,0,0,2.335936,3.856124,0.915898
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.549408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549408,0,0,0,0,2.088224,3.678128,0.846617
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548992,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548992,0,0,0,0,1.978112,3.703035,0.943660
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550624,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550624,0,0,0,0,1.794432,3.102222,0.938591
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550912,0,0,0,0,1.979424,3.813303,1.015455
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550048,0,0,0,0,2.084928,3.560336,0.961894
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.549760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549760,0,0,0,0,1.902688,3.267383,0.886052
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548800,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548800,0,0,0,0,2.003328,3.448575,0.938841
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548224,0,0,0,0,1.902336,3.287642,0.876733
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.549024,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549024,0,0,0,0,2.004800,3.497046,0.912772
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548800,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548800,0,0,0,0,1.976512,3.310985,0.897353
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.549568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549568,0,0,0,0,2.028128,3.357985,0.845826
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550528,0,0,0,0,1.978528,3.591665,0.893896
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550560,0,0,0,0,2.033600,3.443044,0.915658
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548224,0,0,0,0,1.976672,3.484493,0.902543
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.549440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.549440,0,0,0,0,2.030400,3.452963,0.929813
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.548608,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.548608,0,0,0,0,1.977472,3.401135,0.912231
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.550304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.550304,0,0,0,0,2.044672,3.438746,0.893115
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.551360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551360,0,0,0,0,1.979872,3.471498,0.895550
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.552896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.552896,0,0,0,0,2.036320,3.472870,0.918773
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.551808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551808,0,0,0,0,1.979744,3.542472,0.905819
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.551072,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551072,0,0,0,0,1.807936,3.076974,0.886442
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.553792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.553792,0,0,0,0,2.340960,3.706551,0.926788
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.551776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551776,0,0,0,0,1.808768,3.484052,1.297467
32,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,1,59552160,0.551232,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.551232,0,0,0,0,1.988992,4.146932,1.477808
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off gpu-frustum gpu-frustum forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550816 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550816 0 0 0 0 1.794240 3.033742 0.834134
3 32 dense off gpu-frustum gpu-frustum forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548928 0 0 0 0 2.335200 3.774981 0.879779
4 32 dense off gpu-frustum gpu-frustum forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550368 0 0 0 0 1.794272 3.021409 0.849944
5 32 dense off gpu-frustum gpu-frustum forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.547296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.547296 0 0 0 0 2.341856 3.872595 0.868879
6 32 dense off gpu-frustum gpu-frustum forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.551296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551296 0 0 0 0 1.796608 3.107461 0.906310
7 32 dense off gpu-frustum gpu-frustum forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548704 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548704 0 0 0 0 2.335936 3.856124 0.915898
8 32 dense off gpu-frustum gpu-frustum forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.549408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549408 0 0 0 0 2.088224 3.678128 0.846617
9 32 dense off gpu-frustum gpu-frustum forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548992 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548992 0 0 0 0 1.978112 3.703035 0.943660
10 32 dense off gpu-frustum gpu-frustum forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550624 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550624 0 0 0 0 1.794432 3.102222 0.938591
11 32 dense off gpu-frustum gpu-frustum forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550912 0 0 0 0 1.979424 3.813303 1.015455
12 32 dense off gpu-frustum gpu-frustum forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550048 0 0 0 0 2.084928 3.560336 0.961894
13 32 dense off gpu-frustum gpu-frustum forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.549760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549760 0 0 0 0 1.902688 3.267383 0.886052
14 32 dense off gpu-frustum gpu-frustum forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548800 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548800 0 0 0 0 2.003328 3.448575 0.938841
15 32 dense off gpu-frustum gpu-frustum forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548224 0 0 0 0 1.902336 3.287642 0.876733
16 32 dense off gpu-frustum gpu-frustum forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.549024 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549024 0 0 0 0 2.004800 3.497046 0.912772
17 32 dense off gpu-frustum gpu-frustum forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548800 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548800 0 0 0 0 1.976512 3.310985 0.897353
18 32 dense off gpu-frustum gpu-frustum forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.549568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549568 0 0 0 0 2.028128 3.357985 0.845826
19 32 dense off gpu-frustum gpu-frustum forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550528 0 0 0 0 1.978528 3.591665 0.893896
20 32 dense off gpu-frustum gpu-frustum forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550560 0 0 0 0 2.033600 3.443044 0.915658
21 32 dense off gpu-frustum gpu-frustum forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548224 0 0 0 0 1.976672 3.484493 0.902543
22 32 dense off gpu-frustum gpu-frustum forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.549440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.549440 0 0 0 0 2.030400 3.452963 0.929813
23 32 dense off gpu-frustum gpu-frustum forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.548608 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.548608 0 0 0 0 1.977472 3.401135 0.912231
24 32 dense off gpu-frustum gpu-frustum forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.550304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.550304 0 0 0 0 2.044672 3.438746 0.893115
25 32 dense off gpu-frustum gpu-frustum forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.551360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551360 0 0 0 0 1.979872 3.471498 0.895550
26 32 dense off gpu-frustum gpu-frustum forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.552896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.552896 0 0 0 0 2.036320 3.472870 0.918773
27 32 dense off gpu-frustum gpu-frustum forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.551808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551808 0 0 0 0 1.979744 3.542472 0.905819
28 32 dense off gpu-frustum gpu-frustum forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.551072 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551072 0 0 0 0 1.807936 3.076974 0.886442
29 32 dense off gpu-frustum gpu-frustum forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.553792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.553792 0 0 0 0 2.340960 3.706551 0.926788
30 32 dense off gpu-frustum gpu-frustum forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.551776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551776 0 0 0 0 1.808768 3.484052 1.297467
31 32 dense off gpu-frustum gpu-frustum forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 1 59552160 0.551232 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.551232 0 0 0 0 1.988992 4.146932 1.477808
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.062208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062208,0,0,0,0,2.989376,4.336470,0.889808
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065728,0,0,0,0,2.998400,4.853926,0.839964
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065088,0,0,0,0,3.154464,4.492885,0.879669
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.066720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066720,0,0,0,0,3.002944,4.390782,0.908133
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.071776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071776,0,0,0,0,3.394016,4.774856,0.916359
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.067360,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067360,0,0,0,0,3.447904,4.786559,0.884258
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.071552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071552,0,0,0,0,2.883296,4.582003,0.882505
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.067648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067648,0,0,0,0,2.996064,4.670059,0.882465
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065440,0,0,0,0,3.159872,4.489158,0.885320
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.069152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.069152,0,0,0,0,3.012864,4.400550,0.902923
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.068960,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068960,0,0,0,0,2.996608,4.890585,0.859321
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.066240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066240,0,0,0,0,3.159136,4.810274,1.125012
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.066496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066496,0,0,0,0,2.620864,4.359393,1.116265
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065888,0,0,0,0,2.994784,4.844699,1.078454
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064064,0,0,0,0,3.161856,4.805654,1.110775
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065760,0,0,0,0,2.612864,4.284843,1.126595
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064160,0,0,0,0,2.995008,4.622248,1.072774
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065952,0,0,0,0,3.159712,4.785657,1.094064
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064224,0,0,0,0,2.540832,4.248544,1.100195
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.070944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070944,0,0,0,0,3.001280,4.854617,1.152173
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.066400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066400,0,0,0,0,3.163648,4.852112,1.105906
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064864,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064864,0,0,0,0,2.325792,3.938860,1.122006
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.071648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071648,0,0,0,0,2.999296,4.979403,1.101758
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.070240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070240,0,0,0,0,3.161472,4.797520,1.093953
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065024,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065024,0,0,0,0,2.547552,4.211404,1.105565
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.067584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067584,0,0,0,0,3.161472,4.751964,1.062313
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.067296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067296,0,0,0,0,3.171968,4.837014,1.098522
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.067040,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067040,0,0,0,0,2.541984,4.212476,1.104042
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.061792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.061792,0,0,0,0,2.989056,4.656213,1.116937
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065248,0,0,0,0,3.159584,4.831564,1.153947
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off gpu-frustum gpu-frustum forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.062208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062208 0 0 0 0 2.989376 4.336470 0.889808
3 64 dense off gpu-frustum gpu-frustum forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065728 0 0 0 0 2.998400 4.853926 0.839964
4 64 dense off gpu-frustum gpu-frustum forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065088 0 0 0 0 3.154464 4.492885 0.879669
5 64 dense off gpu-frustum gpu-frustum forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.066720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066720 0 0 0 0 3.002944 4.390782 0.908133
6 64 dense off gpu-frustum gpu-frustum forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.071776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071776 0 0 0 0 3.394016 4.774856 0.916359
7 64 dense off gpu-frustum gpu-frustum forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.067360 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067360 0 0 0 0 3.447904 4.786559 0.884258
8 64 dense off gpu-frustum gpu-frustum forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.071552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071552 0 0 0 0 2.883296 4.582003 0.882505
9 64 dense off gpu-frustum gpu-frustum forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.067648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067648 0 0 0 0 2.996064 4.670059 0.882465
10 64 dense off gpu-frustum gpu-frustum forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065440 0 0 0 0 3.159872 4.489158 0.885320
11 64 dense off gpu-frustum gpu-frustum forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.069152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.069152 0 0 0 0 3.012864 4.400550 0.902923
12 64 dense off gpu-frustum gpu-frustum forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.068960 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068960 0 0 0 0 2.996608 4.890585 0.859321
13 64 dense off gpu-frustum gpu-frustum forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.066240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066240 0 0 0 0 3.159136 4.810274 1.125012
14 64 dense off gpu-frustum gpu-frustum forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.066496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066496 0 0 0 0 2.620864 4.359393 1.116265
15 64 dense off gpu-frustum gpu-frustum forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065888 0 0 0 0 2.994784 4.844699 1.078454
16 64 dense off gpu-frustum gpu-frustum forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064064 0 0 0 0 3.161856 4.805654 1.110775
17 64 dense off gpu-frustum gpu-frustum forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065760 0 0 0 0 2.612864 4.284843 1.126595
18 64 dense off gpu-frustum gpu-frustum forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064160 0 0 0 0 2.995008 4.622248 1.072774
19 64 dense off gpu-frustum gpu-frustum forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065952 0 0 0 0 3.159712 4.785657 1.094064
20 64 dense off gpu-frustum gpu-frustum forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064224 0 0 0 0 2.540832 4.248544 1.100195
21 64 dense off gpu-frustum gpu-frustum forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.070944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070944 0 0 0 0 3.001280 4.854617 1.152173
22 64 dense off gpu-frustum gpu-frustum forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.066400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066400 0 0 0 0 3.163648 4.852112 1.105906
23 64 dense off gpu-frustum gpu-frustum forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064864 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064864 0 0 0 0 2.325792 3.938860 1.122006
24 64 dense off gpu-frustum gpu-frustum forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.071648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071648 0 0 0 0 2.999296 4.979403 1.101758
25 64 dense off gpu-frustum gpu-frustum forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.070240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070240 0 0 0 0 3.161472 4.797520 1.093953
26 64 dense off gpu-frustum gpu-frustum forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065024 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065024 0 0 0 0 2.547552 4.211404 1.105565
27 64 dense off gpu-frustum gpu-frustum forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.067584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067584 0 0 0 0 3.161472 4.751964 1.062313
28 64 dense off gpu-frustum gpu-frustum forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.067296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067296 0 0 0 0 3.171968 4.837014 1.098522
29 64 dense off gpu-frustum gpu-frustum forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.067040 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067040 0 0 0 0 2.541984 4.212476 1.104042
30 64 dense off gpu-frustum gpu-frustum forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.061792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.061792 0 0 0 0 2.989056 4.656213 1.116937
31 64 dense off gpu-frustum gpu-frustum forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065248 0 0 0 0 3.159584 4.831564 1.153947
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.066336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066336,0,0,0,0,3.101696,4.353001,0.844463
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064768,0,0,0,0,2.708192,4.512662,0.938620
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.066016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066016,0,0,0,0,3.204160,4.811386,0.934924
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.062112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062112,0,0,0,0,2.817536,4.217165,0.849934
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065440,0,0,0,0,2.708256,4.643519,0.963658
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.061376,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.061376,0,0,0,0,3.321056,4.794433,0.944862
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.062240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062240,0,0,0,0,2.898048,4.561905,0.878608
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065536,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065536,0,0,0,0,3.113568,4.562396,1.039441
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065088,0,0,0,0,3.337536,4.750330,0.882405
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.066208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.066208,0,0,0,0,3.182368,4.689937,0.958097
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.060800,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.060800,0,0,0,0,3.090816,4.611118,1.122347
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.063520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063520,0,0,0,0,3.143040,4.747605,1.051373
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.062176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062176,0,0,0,0,3.096640,4.561855,1.027027
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.060448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.060448,0,0,0,0,2.735168,4.602412,1.248997
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064608,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064608,0,0,0,0,2.307904,4.330940,1.412143
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.062016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.062016,0,0,0,0,3.132192,4.962110,1.192890
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064448,0,0,0,0,2.738848,4.628491,1.223077
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065920,0,0,0,0,3.210944,5.054114,1.103783
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.061632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.061632,0,0,0,0,3.162848,4.825543,1.128919
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.068448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068448,0,0,0,0,3.393024,5.021091,1.071491
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064768,0,0,0,0,3.104992,4.783293,1.256040
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.064032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.064032,0,0,0,0,2.658048,4.431799,1.145141
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.061184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.061184,0,0,0,0,3.039968,4.607831,1.015045
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065056,0,0,0,0,3.097440,4.656904,1.169837
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.067584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067584,0,0,0,0,2.600704,4.092840,1.010687
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.060928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.060928,0,0,0,0,3.223008,5.031601,1.151632
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065216,0,0,0,0,3.099232,4.581091,1.105646
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.059072,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.059072,0,0,0,0,2.636192,4.182630,1.011508
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.065088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.065088,0,0,0,0,3.171488,4.990533,1.093523
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.063008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.063008,0,0,0,0,3.092736,4.532239,0.979147
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off gpu-frustum gpu-frustum forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.066336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066336 0 0 0 0 3.101696 4.353001 0.844463
3 64 dense off gpu-frustum gpu-frustum forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064768 0 0 0 0 2.708192 4.512662 0.938620
4 64 dense off gpu-frustum gpu-frustum forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.066016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066016 0 0 0 0 3.204160 4.811386 0.934924
5 64 dense off gpu-frustum gpu-frustum forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.062112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062112 0 0 0 0 2.817536 4.217165 0.849934
6 64 dense off gpu-frustum gpu-frustum forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065440 0 0 0 0 2.708256 4.643519 0.963658
7 64 dense off gpu-frustum gpu-frustum forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.061376 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.061376 0 0 0 0 3.321056 4.794433 0.944862
8 64 dense off gpu-frustum gpu-frustum forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.062240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062240 0 0 0 0 2.898048 4.561905 0.878608
9 64 dense off gpu-frustum gpu-frustum forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065536 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065536 0 0 0 0 3.113568 4.562396 1.039441
10 64 dense off gpu-frustum gpu-frustum forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065088 0 0 0 0 3.337536 4.750330 0.882405
11 64 dense off gpu-frustum gpu-frustum forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.066208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.066208 0 0 0 0 3.182368 4.689937 0.958097
12 64 dense off gpu-frustum gpu-frustum forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.060800 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.060800 0 0 0 0 3.090816 4.611118 1.122347
13 64 dense off gpu-frustum gpu-frustum forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.063520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063520 0 0 0 0 3.143040 4.747605 1.051373
14 64 dense off gpu-frustum gpu-frustum forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.062176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062176 0 0 0 0 3.096640 4.561855 1.027027
15 64 dense off gpu-frustum gpu-frustum forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.060448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.060448 0 0 0 0 2.735168 4.602412 1.248997
16 64 dense off gpu-frustum gpu-frustum forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064608 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064608 0 0 0 0 2.307904 4.330940 1.412143
17 64 dense off gpu-frustum gpu-frustum forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.062016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.062016 0 0 0 0 3.132192 4.962110 1.192890
18 64 dense off gpu-frustum gpu-frustum forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064448 0 0 0 0 2.738848 4.628491 1.223077
19 64 dense off gpu-frustum gpu-frustum forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065920 0 0 0 0 3.210944 5.054114 1.103783
20 64 dense off gpu-frustum gpu-frustum forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.061632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.061632 0 0 0 0 3.162848 4.825543 1.128919
21 64 dense off gpu-frustum gpu-frustum forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.068448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068448 0 0 0 0 3.393024 5.021091 1.071491
22 64 dense off gpu-frustum gpu-frustum forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064768 0 0 0 0 3.104992 4.783293 1.256040
23 64 dense off gpu-frustum gpu-frustum forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.064032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.064032 0 0 0 0 2.658048 4.431799 1.145141
24 64 dense off gpu-frustum gpu-frustum forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.061184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.061184 0 0 0 0 3.039968 4.607831 1.015045
25 64 dense off gpu-frustum gpu-frustum forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065056 0 0 0 0 3.097440 4.656904 1.169837
26 64 dense off gpu-frustum gpu-frustum forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.067584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067584 0 0 0 0 2.600704 4.092840 1.010687
27 64 dense off gpu-frustum gpu-frustum forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.060928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.060928 0 0 0 0 3.223008 5.031601 1.151632
28 64 dense off gpu-frustum gpu-frustum forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065216 0 0 0 0 3.099232 4.581091 1.105646
29 64 dense off gpu-frustum gpu-frustum forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.059072 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.059072 0 0 0 0 2.636192 4.182630 1.011508
30 64 dense off gpu-frustum gpu-frustum forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.065088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.065088 0 0 0 0 3.171488 4.990533 1.093523
31 64 dense off gpu-frustum gpu-frustum forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.063008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.063008 0 0 0 0 3.092736 4.532239 0.979147
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.070976,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070976,0,0,0,0,3.599392,4.950288,0.869560
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.072064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.072064,0,0,0,0,2.782368,4.121274,0.933962
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.076192,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.076192,0,0,0,0,3.114944,4.800344,1.111266
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.073824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.073824,0,0,0,0,3.328576,5.226519,1.289102
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.086304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.086304,0,0,0,0,2.803552,4.697641,1.328696
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.077568,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.077568,0,0,0,0,3.123264,4.943856,1.152504
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.078944,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.078944,0,0,0,0,3.116736,5.429561,1.173754
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.074368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.074368,0,0,0,0,3.392160,5.364910,1.163825
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.072096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.072096,0,0,0,0,2.799616,4.761471,1.456908
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.077152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.077152,0,0,0,0,3.129792,4.978080,1.117387
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.077248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.077248,0,0,0,0,3.286464,4.999340,1.129511
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.078432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.078432,0,0,0,0,3.333408,5.048923,1.137756
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.082304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.082304,0,0,0,0,2.819904,4.669258,1.368321
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.073216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.073216,0,0,0,0,3.109280,4.897709,1.128629
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.073312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.073312,0,0,0,0,3.327008,5.018687,1.125402
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.071776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071776,0,0,0,0,2.801760,4.642807,1.368592
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.073824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.073824,0,0,0,0,2.763456,4.460614,1.051714
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.076672,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.076672,0,0,0,0,3.504960,5.235466,1.091970
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.075808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.075808,0,0,0,0,2.898464,4.575491,1.128168
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.073856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.073856,0,0,0,0,3.133600,4.774987,1.050421
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.075104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.075104,0,0,0,0,3.279008,4.786820,1.090838
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.070752,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070752,0,0,0,0,2.932352,4.746784,1.005677
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.070976,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.070976,0,0,0,0,3.111296,4.691610,1.051404
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.071264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071264,0,0,0,0,3.277568,4.648899,0.991881
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.072928,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.072928,0,0,0,0,2.868288,4.246190,0.900598
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.071232,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.071232,0,0,0,0,3.072416,4.565973,0.955372
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.076224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.076224,0,0,0,0,3.278528,4.670791,1.022569
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.080896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.080896,0,0,0,0,2.348704,3.760743,0.869080
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.068512,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.068512,0,0,0,0,2.762688,4.155539,0.918452
64,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,1,59554720,1.067296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,1.067296,0,0,0,0,3.434336,4.888601,0.929132
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off gpu-frustum gpu-frustum forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.070976 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070976 0 0 0 0 3.599392 4.950288 0.869560
3 64 dense off gpu-frustum gpu-frustum forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.072064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.072064 0 0 0 0 2.782368 4.121274 0.933962
4 64 dense off gpu-frustum gpu-frustum forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.076192 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.076192 0 0 0 0 3.114944 4.800344 1.111266
5 64 dense off gpu-frustum gpu-frustum forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.073824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.073824 0 0 0 0 3.328576 5.226519 1.289102
6 64 dense off gpu-frustum gpu-frustum forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.086304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.086304 0 0 0 0 2.803552 4.697641 1.328696
7 64 dense off gpu-frustum gpu-frustum forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.077568 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.077568 0 0 0 0 3.123264 4.943856 1.152504
8 64 dense off gpu-frustum gpu-frustum forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.078944 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.078944 0 0 0 0 3.116736 5.429561 1.173754
9 64 dense off gpu-frustum gpu-frustum forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.074368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.074368 0 0 0 0 3.392160 5.364910 1.163825
10 64 dense off gpu-frustum gpu-frustum forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.072096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.072096 0 0 0 0 2.799616 4.761471 1.456908
11 64 dense off gpu-frustum gpu-frustum forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.077152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.077152 0 0 0 0 3.129792 4.978080 1.117387
12 64 dense off gpu-frustum gpu-frustum forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.077248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.077248 0 0 0 0 3.286464 4.999340 1.129511
13 64 dense off gpu-frustum gpu-frustum forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.078432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.078432 0 0 0 0 3.333408 5.048923 1.137756
14 64 dense off gpu-frustum gpu-frustum forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.082304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.082304 0 0 0 0 2.819904 4.669258 1.368321
15 64 dense off gpu-frustum gpu-frustum forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.073216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.073216 0 0 0 0 3.109280 4.897709 1.128629
16 64 dense off gpu-frustum gpu-frustum forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.073312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.073312 0 0 0 0 3.327008 5.018687 1.125402
17 64 dense off gpu-frustum gpu-frustum forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.071776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071776 0 0 0 0 2.801760 4.642807 1.368592
18 64 dense off gpu-frustum gpu-frustum forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.073824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.073824 0 0 0 0 2.763456 4.460614 1.051714
19 64 dense off gpu-frustum gpu-frustum forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.076672 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.076672 0 0 0 0 3.504960 5.235466 1.091970
20 64 dense off gpu-frustum gpu-frustum forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.075808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.075808 0 0 0 0 2.898464 4.575491 1.128168
21 64 dense off gpu-frustum gpu-frustum forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.073856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.073856 0 0 0 0 3.133600 4.774987 1.050421
22 64 dense off gpu-frustum gpu-frustum forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.075104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.075104 0 0 0 0 3.279008 4.786820 1.090838
23 64 dense off gpu-frustum gpu-frustum forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.070752 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070752 0 0 0 0 2.932352 4.746784 1.005677
24 64 dense off gpu-frustum gpu-frustum forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.070976 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.070976 0 0 0 0 3.111296 4.691610 1.051404
25 64 dense off gpu-frustum gpu-frustum forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.071264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071264 0 0 0 0 3.277568 4.648899 0.991881
26 64 dense off gpu-frustum gpu-frustum forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.072928 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.072928 0 0 0 0 2.868288 4.246190 0.900598
27 64 dense off gpu-frustum gpu-frustum forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.071232 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.071232 0 0 0 0 3.072416 4.565973 0.955372
28 64 dense off gpu-frustum gpu-frustum forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.076224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.076224 0 0 0 0 3.278528 4.670791 1.022569
29 64 dense off gpu-frustum gpu-frustum forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.080896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.080896 0 0 0 0 2.348704 3.760743 0.869080
30 64 dense off gpu-frustum gpu-frustum forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.068512 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.068512 0 0 0 0 2.762688 4.155539 0.918452
31 64 dense off gpu-frustum gpu-frustum forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 1 59554720 1.067296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 1.067296 0 0 0 0 3.434336 4.888601 0.929132
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.094432,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094432,0,0,0,0,4.148512,5.580537,0.928321
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.100256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100256,0,0,0,0,4.375360,5.933031,0.993734
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.090688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.090688,0,0,0,0,4.264640,5.758242,0.965271
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.095520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095520,0,0,0,0,4.626976,6.057687,0.865503
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.103584,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.103584,0,0,0,0,4.096800,5.525032,0.996921
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.093632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.093632,0,0,0,0,4.407872,5.920237,0.869641
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.099104,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.099104,0,0,0,0,4.407680,6.538133,0.871845
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.095808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095808,0,0,0,0,4.125536,5.571209,1.003282
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.099808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.099808,0,0,0,0,4.370144,5.950104,0.986311
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.105472,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.105472,0,0,0,0,4.379616,5.919566,0.929093
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.094720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094720,0,0,0,0,4.634816,6.220645,0.997602
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.096064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.096064,0,0,0,0,4.065600,5.552093,0.948780
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.093984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.093984,0,0,0,0,4.252960,5.726311,0.909045
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.097920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.097920,0,0,0,0,4.405056,5.869422,1.009674
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.095712,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095712,0,0,0,0,4.135456,5.717896,1.043959
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.097664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.097664,0,0,0,0,4.192640,5.945896,1.010086
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.097664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.097664,0,0,0,0,4.678528,6.278864,1.043148
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.088032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.088032,0,0,0,0,4.080384,5.454319,0.923662
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.100960,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100960,0,0,0,0,4.247104,5.706915,0.926057
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.085248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.085248,0,0,0,0,4.362816,6.097792,0.900298
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.101280,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.101280,0,0,0,0,4.129728,5.744887,1.044871
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.086720,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.086720,0,0,0,0,4.336960,5.876295,0.963778
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.089312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.089312,0,0,0,0,4.488096,6.005729,0.972014
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.094112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094112,0,0,0,0,4.757856,6.317336,0.978105
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.092160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.092160,0,0,0,0,4.166176,5.690414,0.954270
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.089600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.089600,0,0,0,0,4.247104,5.787076,0.989357
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.088576,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.088576,0,0,0,0,4.351520,6.324450,1.164216
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.083808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.083808,0,0,0,0,4.392640,6.156002,1.106207
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.082784,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.082784,0,0,0,0,4.468992,5.974840,0.961083
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.081088,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.081088,0,0,0,0,4.346784,5.760726,0.925596
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off gpu-frustum gpu-frustum forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.094432 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094432 0 0 0 0 4.148512 5.580537 0.928321
3 128 dense off gpu-frustum gpu-frustum forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.100256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100256 0 0 0 0 4.375360 5.933031 0.993734
4 128 dense off gpu-frustum gpu-frustum forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.090688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.090688 0 0 0 0 4.264640 5.758242 0.965271
5 128 dense off gpu-frustum gpu-frustum forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.095520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095520 0 0 0 0 4.626976 6.057687 0.865503
6 128 dense off gpu-frustum gpu-frustum forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.103584 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.103584 0 0 0 0 4.096800 5.525032 0.996921
7 128 dense off gpu-frustum gpu-frustum forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.093632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.093632 0 0 0 0 4.407872 5.920237 0.869641
8 128 dense off gpu-frustum gpu-frustum forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.099104 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.099104 0 0 0 0 4.407680 6.538133 0.871845
9 128 dense off gpu-frustum gpu-frustum forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.095808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095808 0 0 0 0 4.125536 5.571209 1.003282
10 128 dense off gpu-frustum gpu-frustum forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.099808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.099808 0 0 0 0 4.370144 5.950104 0.986311
11 128 dense off gpu-frustum gpu-frustum forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.105472 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.105472 0 0 0 0 4.379616 5.919566 0.929093
12 128 dense off gpu-frustum gpu-frustum forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.094720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094720 0 0 0 0 4.634816 6.220645 0.997602
13 128 dense off gpu-frustum gpu-frustum forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.096064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.096064 0 0 0 0 4.065600 5.552093 0.948780
14 128 dense off gpu-frustum gpu-frustum forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.093984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.093984 0 0 0 0 4.252960 5.726311 0.909045
15 128 dense off gpu-frustum gpu-frustum forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.097920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.097920 0 0 0 0 4.405056 5.869422 1.009674
16 128 dense off gpu-frustum gpu-frustum forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.095712 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095712 0 0 0 0 4.135456 5.717896 1.043959
17 128 dense off gpu-frustum gpu-frustum forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.097664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.097664 0 0 0 0 4.192640 5.945896 1.010086
18 128 dense off gpu-frustum gpu-frustum forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.097664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.097664 0 0 0 0 4.678528 6.278864 1.043148
19 128 dense off gpu-frustum gpu-frustum forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.088032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.088032 0 0 0 0 4.080384 5.454319 0.923662
20 128 dense off gpu-frustum gpu-frustum forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.100960 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100960 0 0 0 0 4.247104 5.706915 0.926057
21 128 dense off gpu-frustum gpu-frustum forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.085248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.085248 0 0 0 0 4.362816 6.097792 0.900298
22 128 dense off gpu-frustum gpu-frustum forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.101280 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.101280 0 0 0 0 4.129728 5.744887 1.044871
23 128 dense off gpu-frustum gpu-frustum forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.086720 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.086720 0 0 0 0 4.336960 5.876295 0.963778
24 128 dense off gpu-frustum gpu-frustum forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.089312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.089312 0 0 0 0 4.488096 6.005729 0.972014
25 128 dense off gpu-frustum gpu-frustum forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.094112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094112 0 0 0 0 4.757856 6.317336 0.978105
26 128 dense off gpu-frustum gpu-frustum forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.092160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.092160 0 0 0 0 4.166176 5.690414 0.954270
27 128 dense off gpu-frustum gpu-frustum forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.089600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.089600 0 0 0 0 4.247104 5.787076 0.989357
28 128 dense off gpu-frustum gpu-frustum forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.088576 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.088576 0 0 0 0 4.351520 6.324450 1.164216
29 128 dense off gpu-frustum gpu-frustum forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.083808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.083808 0 0 0 0 4.392640 6.156002 1.106207
30 128 dense off gpu-frustum gpu-frustum forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.082784 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.082784 0 0 0 0 4.468992 5.974840 0.961083
31 128 dense off gpu-frustum gpu-frustum forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.081088 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.081088 0 0 0 0 4.346784 5.760726 0.925596
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.083712,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.083712,0,0,0,0,4.160448,5.726502,1.042737
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.095520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095520,0,0,0,0,4.378112,6.073537,1.059638
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.086400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.086400,0,0,0,0,3.812064,5.420204,1.001449
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.081440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.081440,0,0,0,0,4.499904,6.298150,1.202378
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.085888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.085888,0,0,0,0,3.759744,5.550721,1.178483
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.089408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.089408,0,0,0,0,4.360672,6.155551,1.038479
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.099392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.099392,0,0,0,0,4.136736,6.048269,1.079496
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.095264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095264,0,0,0,0,4.174592,5.898527,1.128428
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.092512,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.092512,0,0,0,0,4.350304,6.175880,1.062694
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.088000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.088000,0,0,0,0,3.806944,5.446774,1.014904
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.082048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.082048,0,0,0,0,4.248512,5.747532,1.053899
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.094400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.094400,0,0,0,0,3.780640,5.738775,1.057295
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.088736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.088736,0,0,0,0,4.357920,5.920498,0.990829
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.089984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.089984,0,0,0,0,4.227136,5.817304,1.089605
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.093216,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.093216,0,0,0,0,4.365472,6.172423,1.047475
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.093312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.093312,0,0,0,0,3.816992,5.622366,1.105465
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.087808,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.087808,0,0,0,0,4.131328,5.670637,1.028370
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.086528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.086528,0,0,0,0,3.770304,5.452435,1.101357
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.081728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.081728,0,0,0,0,4.466080,6.062325,1.086219
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.089344,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.089344,0,0,0,0,4.167328,5.860064,1.111457
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.089152,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.089152,0,0,0,0,4.735040,6.288442,1.001910
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.093600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.093600,0,0,0,0,4.478400,6.090409,1.061002
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.102528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.102528,0,0,0,0,3.834336,5.393514,0.956805
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.105728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.105728,0,0,0,0,4.410880,5.880312,0.954901
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.095008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095008,0,0,0,0,3.739616,5.582200,0.983355
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.113024,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.113024,0,0,0,0,4.789024,6.219121,0.934412
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.118400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.118400,0,0,0,0,4.155616,5.611906,0.953519
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.110688,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.110688,0,0,0,0,4.195584,5.750447,1.006148
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.114368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.114368,0,0,0,0,3.842336,5.460570,0.939772
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.113824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.113824,0,0,0,0,4.298016,5.795262,0.985048
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off gpu-frustum gpu-frustum forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.083712 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.083712 0 0 0 0 4.160448 5.726502 1.042737
3 128 dense off gpu-frustum gpu-frustum forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.095520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095520 0 0 0 0 4.378112 6.073537 1.059638
4 128 dense off gpu-frustum gpu-frustum forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.086400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.086400 0 0 0 0 3.812064 5.420204 1.001449
5 128 dense off gpu-frustum gpu-frustum forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.081440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.081440 0 0 0 0 4.499904 6.298150 1.202378
6 128 dense off gpu-frustum gpu-frustum forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.085888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.085888 0 0 0 0 3.759744 5.550721 1.178483
7 128 dense off gpu-frustum gpu-frustum forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.089408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.089408 0 0 0 0 4.360672 6.155551 1.038479
8 128 dense off gpu-frustum gpu-frustum forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.099392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.099392 0 0 0 0 4.136736 6.048269 1.079496
9 128 dense off gpu-frustum gpu-frustum forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.095264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095264 0 0 0 0 4.174592 5.898527 1.128428
10 128 dense off gpu-frustum gpu-frustum forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.092512 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.092512 0 0 0 0 4.350304 6.175880 1.062694
11 128 dense off gpu-frustum gpu-frustum forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.088000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.088000 0 0 0 0 3.806944 5.446774 1.014904
12 128 dense off gpu-frustum gpu-frustum forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.082048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.082048 0 0 0 0 4.248512 5.747532 1.053899
13 128 dense off gpu-frustum gpu-frustum forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.094400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.094400 0 0 0 0 3.780640 5.738775 1.057295
14 128 dense off gpu-frustum gpu-frustum forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.088736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.088736 0 0 0 0 4.357920 5.920498 0.990829
15 128 dense off gpu-frustum gpu-frustum forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.089984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.089984 0 0 0 0 4.227136 5.817304 1.089605
16 128 dense off gpu-frustum gpu-frustum forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.093216 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.093216 0 0 0 0 4.365472 6.172423 1.047475
17 128 dense off gpu-frustum gpu-frustum forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.093312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.093312 0 0 0 0 3.816992 5.622366 1.105465
18 128 dense off gpu-frustum gpu-frustum forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.087808 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.087808 0 0 0 0 4.131328 5.670637 1.028370
19 128 dense off gpu-frustum gpu-frustum forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.086528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.086528 0 0 0 0 3.770304 5.452435 1.101357
20 128 dense off gpu-frustum gpu-frustum forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.081728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.081728 0 0 0 0 4.466080 6.062325 1.086219
21 128 dense off gpu-frustum gpu-frustum forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.089344 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.089344 0 0 0 0 4.167328 5.860064 1.111457
22 128 dense off gpu-frustum gpu-frustum forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.089152 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.089152 0 0 0 0 4.735040 6.288442 1.001910
23 128 dense off gpu-frustum gpu-frustum forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.093600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.093600 0 0 0 0 4.478400 6.090409 1.061002
24 128 dense off gpu-frustum gpu-frustum forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.102528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.102528 0 0 0 0 3.834336 5.393514 0.956805
25 128 dense off gpu-frustum gpu-frustum forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.105728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.105728 0 0 0 0 4.410880 5.880312 0.954901
26 128 dense off gpu-frustum gpu-frustum forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.095008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095008 0 0 0 0 3.739616 5.582200 0.983355
27 128 dense off gpu-frustum gpu-frustum forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.113024 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.113024 0 0 0 0 4.789024 6.219121 0.934412
28 128 dense off gpu-frustum gpu-frustum forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.118400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.118400 0 0 0 0 4.155616 5.611906 0.953519
29 128 dense off gpu-frustum gpu-frustum forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.110688 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.110688 0 0 0 0 4.195584 5.750447 1.006148
30 128 dense off gpu-frustum gpu-frustum forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.114368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.114368 0 0 0 0 3.842336 5.460570 0.939772
31 128 dense off gpu-frustum gpu-frustum forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.113824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.113824 0 0 0 0 4.298016 5.795262 0.985048
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.108032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.108032,0,0,0,0,4.687872,6.372040,1.209151
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.116992,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.116992,0,0,0,0,4.320032,6.161523,1.218308
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.121664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.121664,0,0,0,0,4.373056,6.234200,1.190475
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.119264,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.119264,0,0,0,0,4.554624,6.404771,1.176880
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.108224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.108224,0,0,0,0,4.541504,6.081511,0.909305
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.105824,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.105824,0,0,0,0,3.818400,5.522197,1.224750
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.104800,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.104800,0,0,0,0,4.080672,6.116116,1.111577
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.111488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111488,0,0,0,0,4.184480,5.813426,1.069277
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.114144,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.114144,0,0,0,0,4.574368,6.310152,1.156993
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.112224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.112224,0,0,0,0,4.040032,5.490717,1.000958
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.111424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111424,0,0,0,0,4.656960,6.146774,0.980108
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.111424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111424,0,0,0,0,4.601728,6.131827,1.014464
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.117184,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.117184,0,0,0,0,4.092896,5.590656,0.996740
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.110496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.110496,0,0,0,0,3.826176,5.413661,1.099254
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.111744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111744,0,0,0,0,4.179136,5.722855,0.978185
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.116640,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.116640,0,0,0,0,4.500096,6.126677,1.010646
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.096896,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.096896,0,0,0,0,4.300608,6.080250,1.251821
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.102528,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.102528,0,0,0,0,4.416832,6.371769,1.028089
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.099488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.099488,0,0,0,0,4.540864,6.090008,1.001549
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.095008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.095008,0,0,0,0,4.068832,5.629259,1.017109
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.100736,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100736,0,0,0,0,3.986720,5.612327,1.113831
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.106272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.106272,0,0,0,0,4.169376,5.691506,0.961053
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.101056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.101056,0,0,0,0,4.568416,6.143479,0.958738
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.108448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.108448,0,0,0,0,4.318016,5.865574,0.990619
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.111008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.111008,0,0,0,0,4.363488,5.954862,0.992542
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.103840,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.103840,0,0,0,0,4.535360,6.142086,0.962025
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.101632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.101632,0,0,0,0,3.823264,5.336958,1.031335
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.101440,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.101440,0,0,0,0,3.819712,5.567842,1.236873
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.103136,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.103136,0,0,0,0,4.687712,6.238778,0.971322
128,dense,off,gpu-frustum,gpu-frustum,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,1,59559840,2.100064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,2.100064,0,0,0,0,4.492672,6.019675,0.958719
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off gpu-frustum gpu-frustum forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.108032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.108032 0 0 0 0 4.687872 6.372040 1.209151
3 128 dense off gpu-frustum gpu-frustum forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.116992 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.116992 0 0 0 0 4.320032 6.161523 1.218308
4 128 dense off gpu-frustum gpu-frustum forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.121664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.121664 0 0 0 0 4.373056 6.234200 1.190475
5 128 dense off gpu-frustum gpu-frustum forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.119264 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.119264 0 0 0 0 4.554624 6.404771 1.176880
6 128 dense off gpu-frustum gpu-frustum forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.108224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.108224 0 0 0 0 4.541504 6.081511 0.909305
7 128 dense off gpu-frustum gpu-frustum forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.105824 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.105824 0 0 0 0 3.818400 5.522197 1.224750
8 128 dense off gpu-frustum gpu-frustum forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.104800 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.104800 0 0 0 0 4.080672 6.116116 1.111577
9 128 dense off gpu-frustum gpu-frustum forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.111488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111488 0 0 0 0 4.184480 5.813426 1.069277
10 128 dense off gpu-frustum gpu-frustum forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.114144 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.114144 0 0 0 0 4.574368 6.310152 1.156993
11 128 dense off gpu-frustum gpu-frustum forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.112224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.112224 0 0 0 0 4.040032 5.490717 1.000958
12 128 dense off gpu-frustum gpu-frustum forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.111424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111424 0 0 0 0 4.656960 6.146774 0.980108
13 128 dense off gpu-frustum gpu-frustum forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.111424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111424 0 0 0 0 4.601728 6.131827 1.014464
14 128 dense off gpu-frustum gpu-frustum forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.117184 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.117184 0 0 0 0 4.092896 5.590656 0.996740
15 128 dense off gpu-frustum gpu-frustum forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.110496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.110496 0 0 0 0 3.826176 5.413661 1.099254
16 128 dense off gpu-frustum gpu-frustum forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.111744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111744 0 0 0 0 4.179136 5.722855 0.978185
17 128 dense off gpu-frustum gpu-frustum forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.116640 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.116640 0 0 0 0 4.500096 6.126677 1.010646
18 128 dense off gpu-frustum gpu-frustum forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.096896 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.096896 0 0 0 0 4.300608 6.080250 1.251821
19 128 dense off gpu-frustum gpu-frustum forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.102528 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.102528 0 0 0 0 4.416832 6.371769 1.028089
20 128 dense off gpu-frustum gpu-frustum forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.099488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.099488 0 0 0 0 4.540864 6.090008 1.001549
21 128 dense off gpu-frustum gpu-frustum forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.095008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.095008 0 0 0 0 4.068832 5.629259 1.017109
22 128 dense off gpu-frustum gpu-frustum forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.100736 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100736 0 0 0 0 3.986720 5.612327 1.113831
23 128 dense off gpu-frustum gpu-frustum forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.106272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.106272 0 0 0 0 4.169376 5.691506 0.961053
24 128 dense off gpu-frustum gpu-frustum forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.101056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.101056 0 0 0 0 4.568416 6.143479 0.958738
25 128 dense off gpu-frustum gpu-frustum forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.108448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.108448 0 0 0 0 4.318016 5.865574 0.990619
26 128 dense off gpu-frustum gpu-frustum forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.111008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.111008 0 0 0 0 4.363488 5.954862 0.992542
27 128 dense off gpu-frustum gpu-frustum forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.103840 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.103840 0 0 0 0 4.535360 6.142086 0.962025
28 128 dense off gpu-frustum gpu-frustum forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.101632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.101632 0 0 0 0 3.823264 5.336958 1.031335
29 128 dense off gpu-frustum gpu-frustum forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.101440 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.101440 0 0 0 0 3.819712 5.567842 1.236873
30 128 dense off gpu-frustum gpu-frustum forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.103136 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.103136 0 0 0 0 4.687712 6.238778 0.971322
31 128 dense off gpu-frustum gpu-frustum forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 1 59559840 2.100064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 2.100064 0 0 0 0 4.492672 6.019675 0.958719
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034176,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,0.040064,0,0,0,0,1.965600,3.583580,1.080277
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033600,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,0.038880,0,0,0,0,1.785760,3.298332,0.996079
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033824,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.039520,0,0,0,0,1.978432,3.971562,1.453291
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033984,0.006400,0,0,0.000000,0.000000,0.000000,0.000000,0.040384,0,0,0,0,1.768384,3.243859,0.945723
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034208,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,0.039872,0,0,0,0,1.991328,3.535709,1.086469
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034240,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.040096,0,0,0,0,2.051968,3.514980,0.966744
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033760,0.004768,0,0,0.000000,0.000000,0.000000,0.000000,0.038528,0,0,0,0,1.997952,3.550207,0.976913
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034144,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,0.039712,0,0,0,0,1.998432,3.408629,0.939191
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034272,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,0.039616,0,0,0,0,2.003840,3.632612,1.131875
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034208,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.039968,0,0,0,0,2.041664,3.512776,0.955082
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034400,0.004832,0,0,0.000000,0.000000,0.000000,0.000000,0.039232,0,0,0,0,1.976256,3.366390,1.036114
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033440,0.005376,0,0,0.000000,0.000000,0.000000,0.000000,0.038816,0,0,0,0,2.036608,3.415463,0.855674
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033536,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.039616,0,0,0,0,1.997632,3.322117,0.973496
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033504,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.039584,0,0,0,0,2.047104,3.403029,0.863819
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033312,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,0.038720,0,0,0,0,2.000864,3.326685,0.974418
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.032832,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.038656,0,0,0,0,2.083552,3.713224,1.138367
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034336,0.006016,0,0,0.000000,0.000000,0.000000,0.000000,0.040352,0,0,0,0,2.006976,3.539237,1.135633
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034368,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.040448,0,0,0,0,2.042272,3.456059,0.926487
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034048,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,0.040000,0,0,0,0,1.985888,3.376379,1.022399
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034528,0.005984,0,0,0.000000,0.000000,0.000000,0.000000,0.040512,0,0,0,0,1.956352,3.454676,0.973927
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034656,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.040480,0,0,0,0,1.984352,3.406686,0.949441
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033920,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.039840,0,0,0,0,1.699360,3.252996,1.052786
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033760,0.005632,0,0,0.000000,0.000000,0.000000,0.000000,0.039392,0,0,0,0,1.996832,3.489843,1.018331
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034112,0.005600,0,0,0.000000,0.000000,0.000000,0.000000,0.039712,0,0,0,0,1.734368,3.259097,0.952246
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034432,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.040128,0,0,0,0,2.012224,3.672758,1.168605
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034016,0.005984,0,0,0.000000,0.000000,0.000000,0.000000,0.040000,0,0,0,0,1.711456,3.495273,1.245910
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033664,0.005504,0,0,0.000000,0.000000,0.000000,0.000000,0.039168,0,0,0,0,2.198496,3.645617,0.954491
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034272,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.040096,0,0,0,0,1.928320,3.343918,0.935645
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034400,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.040224,0,0,0,0,1.979936,3.309843,0.877355
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034016,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.039808,0,0,0,0,1.689952,3.039423,0.897643
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034176 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 0.040064 0 0 0 0 1.965600 3.583580 1.080277
3 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033600 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 0.038880 0 0 0 0 1.785760 3.298332 0.996079
4 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033824 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.039520 0 0 0 0 1.978432 3.971562 1.453291
5 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033984 0.006400 0 0 0.000000 0.000000 0.000000 0.000000 0.040384 0 0 0 0 1.768384 3.243859 0.945723
6 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034208 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 0.039872 0 0 0 0 1.991328 3.535709 1.086469
7 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034240 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.040096 0 0 0 0 2.051968 3.514980 0.966744
8 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033760 0.004768 0 0 0.000000 0.000000 0.000000 0.000000 0.038528 0 0 0 0 1.997952 3.550207 0.976913
9 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034144 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 0.039712 0 0 0 0 1.998432 3.408629 0.939191
10 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034272 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 0.039616 0 0 0 0 2.003840 3.632612 1.131875
11 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034208 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.039968 0 0 0 0 2.041664 3.512776 0.955082
12 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034400 0.004832 0 0 0.000000 0.000000 0.000000 0.000000 0.039232 0 0 0 0 1.976256 3.366390 1.036114
13 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033440 0.005376 0 0 0.000000 0.000000 0.000000 0.000000 0.038816 0 0 0 0 2.036608 3.415463 0.855674
14 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033536 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.039616 0 0 0 0 1.997632 3.322117 0.973496
15 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033504 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.039584 0 0 0 0 2.047104 3.403029 0.863819
16 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033312 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 0.038720 0 0 0 0 2.000864 3.326685 0.974418
17 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.032832 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.038656 0 0 0 0 2.083552 3.713224 1.138367
18 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034336 0.006016 0 0 0.000000 0.000000 0.000000 0.000000 0.040352 0 0 0 0 2.006976 3.539237 1.135633
19 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034368 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.040448 0 0 0 0 2.042272 3.456059 0.926487
20 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034048 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 0.040000 0 0 0 0 1.985888 3.376379 1.022399
21 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034528 0.005984 0 0 0.000000 0.000000 0.000000 0.000000 0.040512 0 0 0 0 1.956352 3.454676 0.973927
22 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034656 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.040480 0 0 0 0 1.984352 3.406686 0.949441
23 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033920 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.039840 0 0 0 0 1.699360 3.252996 1.052786
24 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033760 0.005632 0 0 0.000000 0.000000 0.000000 0.000000 0.039392 0 0 0 0 1.996832 3.489843 1.018331
25 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034112 0.005600 0 0 0.000000 0.000000 0.000000 0.000000 0.039712 0 0 0 0 1.734368 3.259097 0.952246
26 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034432 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.040128 0 0 0 0 2.012224 3.672758 1.168605
27 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034016 0.005984 0 0 0.000000 0.000000 0.000000 0.000000 0.040000 0 0 0 0 1.711456 3.495273 1.245910
28 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033664 0.005504 0 0 0.000000 0.000000 0.000000 0.000000 0.039168 0 0 0 0 2.198496 3.645617 0.954491
29 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034272 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.040096 0 0 0 0 1.928320 3.343918 0.935645
30 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034400 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.040224 0 0 0 0 1.979936 3.309843 0.877355
31 0 dense off gpu-occlusion gpu-occlusion forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034016 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.039808 0 0 0 0 1.689952 3.039423 0.897643
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033056,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.038880,0,0,0,0,2.134848,3.610280,0.995899
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033248,0.006048,0,0,0.000000,0.000000,0.000000,0.000000,0.039296,0,0,0,0,1.434400,2.746250,0.871334
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033664,0.005984,0,0,0.000000,0.000000,0.000000,0.000000,0.039648,0,0,0,0,2.145696,3.665234,1.046815
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034112,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.039840,0,0,0,0,1.420096,2.717346,0.842649
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034496,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.040416,0,0,0,0,1.579648,2.916321,0.910738
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034176,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.039968,0,0,0,0,1.837088,3.235774,0.873869
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033824,0.006016,0,0,0.000000,0.000000,0.000000,0.000000,0.039840,0,0,0,0,1.646304,3.206619,0.857227
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033984,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.039776,0,0,0,0,1.817952,3.328409,0.989306
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034080,0.004768,0,0,0.000000,0.000000,0.000000,0.000000,0.038848,0,0,0,0,1.760640,3.122180,0.865202
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034304,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.040064,0,0,0,0,1.613088,3.340511,1.195796
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034176,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.039968,0,0,0,0,1.441280,3.032320,1.056543
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034304,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.040000,0,0,0,0,2.142816,3.705500,1.032387
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034496,0.005152,0,0,0.000000,0.000000,0.000000,0.000000,0.039648,0,0,0,0,1.439360,2.998797,1.075408
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034336,0.006048,0,0,0.000000,0.000000,0.000000,0.000000,0.040384,0,0,0,0,2.143840,3.800859,1.159587
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033312,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.039040,0,0,0,0,1.430592,2.792688,0.906991
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034144,0.005024,0,0,0.000000,0.000000,0.000000,0.000000,0.039168,0,0,0,0,2.134720,3.608917,0.984928
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034240,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,0.039808,0,0,0,0,1.729984,3.199947,0.879348
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034304,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.040160,0,0,0,0,1.970976,3.491486,1.033680
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033664,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.039424,0,0,0,0,1.776128,3.207410,0.870572
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034432,0.005376,0,0,0.000000,0.000000,0.000000,0.000000,0.039808,0,0,0,0,2.009568,3.457061,1.070009
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.035168,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.040960,0,0,0,0,1.771168,3.169739,0.864481
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034624,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,0.040160,0,0,0,0,1.978400,3.604910,1.262842
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034688,0.005504,0,0,0.000000,0.000000,0.000000,0.000000,0.040192,0,0,0,0,1.756160,3.445549,0.965111
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033792,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.039488,0,0,0,0,1.996928,3.541069,1.138718
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034368,0.005120,0,0,0.000000,0.000000,0.000000,0.000000,0.039488,0,0,0,0,1.785824,3.275438,0.891902
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034592,0.004928,0,0,0.000000,0.000000,0.000000,0.000000,0.039520,0,0,0,0,2.003808,3.647380,1.253595
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034496,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,0.040384,0,0,0,0,1.779616,3.321916,0.925707
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.044128,0.005056,0,0,0.000000,0.000000,0.000000,0.000000,0.049184,0,0,0,0,1.984832,3.559174,1.164026
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034176,0.005248,0,0,0.000000,0.000000,0.000000,0.000000,0.039424,0,0,0,0,1.776224,3.300947,0.845946
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033408,0.004928,0,0,0.000000,0.000000,0.000000,0.000000,0.038336,0,0,0,0,2.004640,3.545738,1.134881
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033056 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.038880 0 0 0 0 2.134848 3.610280 0.995899
3 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033248 0.006048 0 0 0.000000 0.000000 0.000000 0.000000 0.039296 0 0 0 0 1.434400 2.746250 0.871334
4 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033664 0.005984 0 0 0.000000 0.000000 0.000000 0.000000 0.039648 0 0 0 0 2.145696 3.665234 1.046815
5 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034112 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.039840 0 0 0 0 1.420096 2.717346 0.842649
6 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034496 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.040416 0 0 0 0 1.579648 2.916321 0.910738
7 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034176 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.039968 0 0 0 0 1.837088 3.235774 0.873869
8 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033824 0.006016 0 0 0.000000 0.000000 0.000000 0.000000 0.039840 0 0 0 0 1.646304 3.206619 0.857227
9 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033984 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.039776 0 0 0 0 1.817952 3.328409 0.989306
10 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034080 0.004768 0 0 0.000000 0.000000 0.000000 0.000000 0.038848 0 0 0 0 1.760640 3.122180 0.865202
11 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034304 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.040064 0 0 0 0 1.613088 3.340511 1.195796
12 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034176 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.039968 0 0 0 0 1.441280 3.032320 1.056543
13 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034304 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.040000 0 0 0 0 2.142816 3.705500 1.032387
14 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034496 0.005152 0 0 0.000000 0.000000 0.000000 0.000000 0.039648 0 0 0 0 1.439360 2.998797 1.075408
15 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034336 0.006048 0 0 0.000000 0.000000 0.000000 0.000000 0.040384 0 0 0 0 2.143840 3.800859 1.159587
16 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033312 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.039040 0 0 0 0 1.430592 2.792688 0.906991
17 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034144 0.005024 0 0 0.000000 0.000000 0.000000 0.000000 0.039168 0 0 0 0 2.134720 3.608917 0.984928
18 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034240 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 0.039808 0 0 0 0 1.729984 3.199947 0.879348
19 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034304 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.040160 0 0 0 0 1.970976 3.491486 1.033680
20 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033664 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.039424 0 0 0 0 1.776128 3.207410 0.870572
21 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034432 0.005376 0 0 0.000000 0.000000 0.000000 0.000000 0.039808 0 0 0 0 2.009568 3.457061 1.070009
22 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.035168 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.040960 0 0 0 0 1.771168 3.169739 0.864481
23 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034624 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 0.040160 0 0 0 0 1.978400 3.604910 1.262842
24 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034688 0.005504 0 0 0.000000 0.000000 0.000000 0.000000 0.040192 0 0 0 0 1.756160 3.445549 0.965111
25 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033792 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.039488 0 0 0 0 1.996928 3.541069 1.138718
26 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034368 0.005120 0 0 0.000000 0.000000 0.000000 0.000000 0.039488 0 0 0 0 1.785824 3.275438 0.891902
27 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034592 0.004928 0 0 0.000000 0.000000 0.000000 0.000000 0.039520 0 0 0 0 2.003808 3.647380 1.253595
28 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034496 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 0.040384 0 0 0 0 1.779616 3.321916 0.925707
29 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.044128 0.005056 0 0 0.000000 0.000000 0.000000 0.000000 0.049184 0 0 0 0 1.984832 3.559174 1.164026
30 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034176 0.005248 0 0 0.000000 0.000000 0.000000 0.000000 0.039424 0 0 0 0 1.776224 3.300947 0.845946
31 0 dense off gpu-occlusion gpu-occlusion forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033408 0.004928 0 0 0.000000 0.000000 0.000000 0.000000 0.038336 0 0 0 0 2.004640 3.545738 1.134881
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034272,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.040032,0,0,0,0,1.736832,3.116829,0.816220
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034048,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,0.039936,0,0,0,0,1.992000,3.509550,0.982544
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034656,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.040736,0,0,0,0,1.438592,2.862029,0.889578
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034400,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.040128,0,0,0,0,1.421312,2.806794,0.950533
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034496,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,0.039776,0,0,0,0,1.836928,3.300666,0.937238
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034496,0.006144,0,0,0.000000,0.000000,0.000000,0.000000,0.040640,0,0,0,0,1.759936,2.993357,0.897563
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033664,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.039520,0,0,0,0,1.836832,3.605451,0.915907
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034848,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,0.040256,0,0,0,0,1.715776,3.069340,0.916138
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033344,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.039136,0,0,0,0,1.612160,3.174418,0.997882
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033856,0.005440,0,0,0.000000,0.000000,0.000000,0.000000,0.039296,0,0,0,0,1.656704,3.432505,0.929103
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034656,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.040352,0,0,0,0,1.611360,3.415552,0.974028
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.046272,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.052096,0,0,0,0,1.745248,3.428878,1.117137
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034240,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.040000,0,0,0,0,1.977472,3.534467,1.000127
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.037376,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.043136,0,0,0,0,1.558208,3.177544,0.955793
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034016,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.039776,0,0,0,0,1.960352,3.422185,0.895018
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034400,0.006048,0,0,0.000000,0.000000,0.000000,0.000000,0.040448,0,0,0,0,1.437216,2.879853,0.875802
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034240,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.039936,0,0,0,0,1.974112,3.409671,0.997091
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033920,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.039680,0,0,0,0,1.944000,3.300366,0.839293
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034176,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.039904,0,0,0,0,1.973280,3.387400,0.914735
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033824,0.005248,0,0,0.000000,0.000000,0.000000,0.000000,0.039072,0,0,0,0,1.752352,3.102402,0.821599
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033568,0.004960,0,0,0.000000,0.000000,0.000000,0.000000,0.038528,0,0,0,0,1.975968,3.541260,1.054109
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034592,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.040352,0,0,0,0,1.783456,3.282011,0.809758
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034784,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.040512,0,0,0,0,1.975104,3.411826,1.035343
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034304,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.040224,0,0,0,0,1.790528,3.353005,0.953279
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033984,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.039776,0,0,0,0,1.975296,3.449928,1.049169
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034304,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.040032,0,0,0,0,1.749376,3.254489,0.990218
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034688,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.040512,0,0,0,0,1.971520,3.390506,0.998544
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034976,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.040736,0,0,0,0,1.753376,3.311336,1.059208
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.033888,0.006112,0,0,0.000000,0.000000,0.000000,0.000000,0.040000,0,0,0,0,1.424320,2.730551,0.946516
0,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,2,104292336,0.034112,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.039872,0,0,0,0,1.684928,3.248608,1.061923
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034272 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.040032 0 0 0 0 1.736832 3.116829 0.816220
3 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034048 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 0.039936 0 0 0 0 1.992000 3.509550 0.982544
4 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034656 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.040736 0 0 0 0 1.438592 2.862029 0.889578
5 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034400 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.040128 0 0 0 0 1.421312 2.806794 0.950533
6 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034496 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 0.039776 0 0 0 0 1.836928 3.300666 0.937238
7 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034496 0.006144 0 0 0.000000 0.000000 0.000000 0.000000 0.040640 0 0 0 0 1.759936 2.993357 0.897563
8 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033664 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.039520 0 0 0 0 1.836832 3.605451 0.915907
9 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034848 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 0.040256 0 0 0 0 1.715776 3.069340 0.916138
10 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033344 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.039136 0 0 0 0 1.612160 3.174418 0.997882
11 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033856 0.005440 0 0 0.000000 0.000000 0.000000 0.000000 0.039296 0 0 0 0 1.656704 3.432505 0.929103
12 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034656 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.040352 0 0 0 0 1.611360 3.415552 0.974028
13 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.046272 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.052096 0 0 0 0 1.745248 3.428878 1.117137
14 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034240 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.040000 0 0 0 0 1.977472 3.534467 1.000127
15 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.037376 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.043136 0 0 0 0 1.558208 3.177544 0.955793
16 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034016 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.039776 0 0 0 0 1.960352 3.422185 0.895018
17 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034400 0.006048 0 0 0.000000 0.000000 0.000000 0.000000 0.040448 0 0 0 0 1.437216 2.879853 0.875802
18 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034240 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.039936 0 0 0 0 1.974112 3.409671 0.997091
19 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033920 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.039680 0 0 0 0 1.944000 3.300366 0.839293
20 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034176 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.039904 0 0 0 0 1.973280 3.387400 0.914735
21 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033824 0.005248 0 0 0.000000 0.000000 0.000000 0.000000 0.039072 0 0 0 0 1.752352 3.102402 0.821599
22 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033568 0.004960 0 0 0.000000 0.000000 0.000000 0.000000 0.038528 0 0 0 0 1.975968 3.541260 1.054109
23 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034592 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.040352 0 0 0 0 1.783456 3.282011 0.809758
24 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034784 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.040512 0 0 0 0 1.975104 3.411826 1.035343
25 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034304 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.040224 0 0 0 0 1.790528 3.353005 0.953279
26 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033984 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.039776 0 0 0 0 1.975296 3.449928 1.049169
27 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034304 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.040032 0 0 0 0 1.749376 3.254489 0.990218
28 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034688 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.040512 0 0 0 0 1.971520 3.390506 0.998544
29 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034976 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.040736 0 0 0 0 1.753376 3.311336 1.059208
30 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.033888 0.006112 0 0 0.000000 0.000000 0.000000 0.000000 0.040000 0 0 0 0 1.424320 2.730551 0.946516
31 0 dense off gpu-occlusion gpu-occlusion forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 2 104292336 0.034112 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.039872 0 0 0 0 1.684928 3.248608 1.061923
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090688,0.005216,0,0,0.000000,0.000000,0.000000,0.000000,0.095904,0,0,0,0,1.475424,2.926700,1.031856
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090144,0.005504,0,0,0.000000,0.000000,0.000000,0.000000,0.095648,0,0,0,0,1.480896,2.926450,1.047466
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090752,0.005600,0,0,0.000000,0.000000,0.000000,0.000000,0.096352,0,0,0,0,1.511328,3.195708,1.259195
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090816,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,0.096768,0,0,0,0,1.735872,3.296879,1.004766
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091104,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,0.096448,0,0,0,0,1.501120,2.948271,1.037467
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.089888,0.005088,0,0,0.000000,0.000000,0.000000,0.000000,0.094976,0,0,0,0,1.971872,3.662729,0.958017
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090272,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.095968,0,0,0,0,1.487552,3.155653,1.052155
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090080,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,0.095648,0,0,0,0,1.909664,3.647200,0.950352
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090752,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.096480,0,0,0,0,1.623328,3.254409,1.043569
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090272,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.096000,0,0,0,0,1.961536,3.464064,0.968828
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090656,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.096384,0,0,0,0,1.596480,3.172915,1.084867
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090272,0.006976,0,0,0.000000,0.000000,0.000000,0.000000,0.097248,0,0,0,0,2.097056,3.659904,1.005557
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090336,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,0.096000,0,0,0,0,1.597408,3.326405,0.999586
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090336,0.004864,0,0,0.000000,0.000000,0.000000,0.000000,0.095200,0,0,0,0,2.102240,3.571627,0.986581
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091488,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.097184,0,0,0,0,1.597280,3.146665,1.066141
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.089632,0.005024,0,0,0.000000,0.000000,0.000000,0.000000,0.094656,0,0,0,0,2.091616,3.764992,1.054569
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.089952,0.005312,0,0,0.000000,0.000000,0.000000,0.000000,0.095264,0,0,0,0,1.599232,3.139673,1.041574
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091104,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.096928,0,0,0,0,2.088512,3.615229,0.997642
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090816,0.006048,0,0,0.000000,0.000000,0.000000,0.000000,0.096864,0,0,0,0,1.653536,3.455859,1.103231
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090912,0.005056,0,0,0.000000,0.000000,0.000000,0.000000,0.095968,0,0,0,0,2.105120,3.573561,0.956424
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090528,0.005600,0,0,0.000000,0.000000,0.000000,0.000000,0.096128,0,0,0,0,1.605760,3.194616,1.059869
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090144,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.095936,0,0,0,0,2.095392,3.599008,0.980550
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090048,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,0.095328,0,0,0,0,1.595840,3.215766,1.094495
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091392,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.097152,0,0,0,0,2.073472,3.627272,0.952968
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090656,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,0.096000,0,0,0,0,1.598016,3.157907,1.058667
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090400,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.096128,0,0,0,0,2.097120,3.542903,0.910076
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090304,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.096000,0,0,0,0,1.599296,3.467170,1.145641
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090528,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.096256,0,0,0,0,2.102240,3.564985,0.958638
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090304,0.005472,0,0,0.000000,0.000000,0.000000,0.000000,0.095776,0,0,0,0,1.654528,3.111419,0.960081
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.089984,0.005024,0,0,0.000000,0.000000,0.000000,0.000000,0.095008,0,0,0,0,1.751040,3.231235,0.992382
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090688 0.005216 0 0 0.000000 0.000000 0.000000 0.000000 0.095904 0 0 0 0 1.475424 2.926700 1.031856
3 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090144 0.005504 0 0 0.000000 0.000000 0.000000 0.000000 0.095648 0 0 0 0 1.480896 2.926450 1.047466
4 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090752 0.005600 0 0 0.000000 0.000000 0.000000 0.000000 0.096352 0 0 0 0 1.511328 3.195708 1.259195
5 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090816 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 0.096768 0 0 0 0 1.735872 3.296879 1.004766
6 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091104 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 0.096448 0 0 0 0 1.501120 2.948271 1.037467
7 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.089888 0.005088 0 0 0.000000 0.000000 0.000000 0.000000 0.094976 0 0 0 0 1.971872 3.662729 0.958017
8 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090272 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.095968 0 0 0 0 1.487552 3.155653 1.052155
9 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090080 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 0.095648 0 0 0 0 1.909664 3.647200 0.950352
10 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090752 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.096480 0 0 0 0 1.623328 3.254409 1.043569
11 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090272 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.096000 0 0 0 0 1.961536 3.464064 0.968828
12 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090656 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.096384 0 0 0 0 1.596480 3.172915 1.084867
13 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090272 0.006976 0 0 0.000000 0.000000 0.000000 0.000000 0.097248 0 0 0 0 2.097056 3.659904 1.005557
14 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090336 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 0.096000 0 0 0 0 1.597408 3.326405 0.999586
15 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090336 0.004864 0 0 0.000000 0.000000 0.000000 0.000000 0.095200 0 0 0 0 2.102240 3.571627 0.986581
16 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091488 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.097184 0 0 0 0 1.597280 3.146665 1.066141
17 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.089632 0.005024 0 0 0.000000 0.000000 0.000000 0.000000 0.094656 0 0 0 0 2.091616 3.764992 1.054569
18 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.089952 0.005312 0 0 0.000000 0.000000 0.000000 0.000000 0.095264 0 0 0 0 1.599232 3.139673 1.041574
19 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091104 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.096928 0 0 0 0 2.088512 3.615229 0.997642
20 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090816 0.006048 0 0 0.000000 0.000000 0.000000 0.000000 0.096864 0 0 0 0 1.653536 3.455859 1.103231
21 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090912 0.005056 0 0 0.000000 0.000000 0.000000 0.000000 0.095968 0 0 0 0 2.105120 3.573561 0.956424
22 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090528 0.005600 0 0 0.000000 0.000000 0.000000 0.000000 0.096128 0 0 0 0 1.605760 3.194616 1.059869
23 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090144 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.095936 0 0 0 0 2.095392 3.599008 0.980550
24 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090048 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 0.095328 0 0 0 0 1.595840 3.215766 1.094495
25 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091392 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.097152 0 0 0 0 2.073472 3.627272 0.952968
26 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090656 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 0.096000 0 0 0 0 1.598016 3.157907 1.058667
27 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090400 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.096128 0 0 0 0 2.097120 3.542903 0.910076
28 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090304 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.096000 0 0 0 0 1.599296 3.467170 1.145641
29 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090528 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.096256 0 0 0 0 2.102240 3.564985 0.958638
30 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090304 0.005472 0 0 0.000000 0.000000 0.000000 0.000000 0.095776 0 0 0 0 1.654528 3.111419 0.960081
31 4 dense off gpu-occlusion gpu-occlusion forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.089984 0.005024 0 0 0.000000 0.000000 0.000000 0.000000 0.095008 0 0 0 0 1.751040 3.231235 0.992382
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090560,0.005056,0,0,0.000000,0.000000,0.000000,0.000000,0.095616,0,0,0,0,1.476832,2.823386,0.884328
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.093376,0.004928,0,0,0.000000,0.000000,0.000000,0.000000,0.098304,0,0,0,0,2.194432,3.574222,0.913824
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.107104,0.005088,0,0,0.000000,0.000000,0.000000,0.000000,0.112192,0,0,0,0,1.505888,2.773832,0.838010
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091712,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.097440,0,0,0,0,2.205888,3.598739,0.921017
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091776,0.005376,0,0,0.000000,0.000000,0.000000,0.000000,0.097152,0,0,0,0,1.497984,2.925489,0.834815
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090784,0.005600,0,0,0.000000,0.000000,0.000000,0.000000,0.096384,0,0,0,0,2.037568,3.350389,0.857367
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090880,0.005120,0,0,0.000000,0.000000,0.000000,0.000000,0.096000,0,0,0,0,1.748928,3.310485,0.895550
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091328,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.097024,0,0,0,0,1.487104,2.824348,0.921939
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091392,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,0.096800,0,0,0,0,1.622880,3.423077,1.096077
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091712,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.097408,0,0,0,0,1.480800,2.779804,0.922109
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090752,0.004896,0,0,0.000000,0.000000,0.000000,0.000000,0.095648,0,0,0,0,1.589024,2.981695,0.900919
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091552,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.097280,0,0,0,0,1.817728,3.163598,0.894056
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091776,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.097856,0,0,0,0,1.595744,3.623104,1.036835
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090880,0.005184,0,0,0.000000,0.000000,0.000000,0.000000,0.096064,0,0,0,0,1.476672,2.770967,0.846487
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091584,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.097312,0,0,0,0,2.043584,3.387520,0.993173
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091616,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,0.096896,0,0,0,0,2.108192,3.408159,0.849172
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.092352,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.098208,0,0,0,0,2.041312,3.363865,0.955071
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091744,0.005024,0,0,0.000000,0.000000,0.000000,0.000000,0.096768,0,0,0,0,1.988160,3.328168,0.868048
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091200,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.096928,0,0,0,0,2.036352,3.496706,1.000166
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091616,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.097440,0,0,0,0,2.110656,3.427295,0.849593
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.092128,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.097824,0,0,0,0,2.049312,3.529748,1.124011
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.092064,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.097888,0,0,0,0,2.091200,3.453935,0.827481
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.092384,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.098112,0,0,0,0,2.048448,3.452222,1.056843
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.092096,0.004800,0,0,0.000000,0.000000,0.000000,0.000000,0.096896,0,0,0,0,2.106176,3.458464,0.846476
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091392,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,0.096928,0,0,0,0,2.036800,3.973575,1.552609
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091360,0.005984,0,0,0.000000,0.000000,0.000000,0.000000,0.097344,0,0,0,0,1.825024,3.526572,0.957146
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.092416,0.004768,0,0,0.000000,0.000000,0.000000,0.000000,0.097184,0,0,0,0,2.028640,3.327818,0.951835
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091360,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.097056,0,0,0,0,1.824480,3.143971,0.834154
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091488,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.097248,0,0,0,0,2.036640,3.161273,0.800470
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090912,0.006688,0,0,0.000000,0.000000,0.000000,0.000000,0.097600,0,0,0,0,1.616960,2.886605,0.918743
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090560 0.005056 0 0 0.000000 0.000000 0.000000 0.000000 0.095616 0 0 0 0 1.476832 2.823386 0.884328
3 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.093376 0.004928 0 0 0.000000 0.000000 0.000000 0.000000 0.098304 0 0 0 0 2.194432 3.574222 0.913824
4 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.107104 0.005088 0 0 0.000000 0.000000 0.000000 0.000000 0.112192 0 0 0 0 1.505888 2.773832 0.838010
5 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091712 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.097440 0 0 0 0 2.205888 3.598739 0.921017
6 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091776 0.005376 0 0 0.000000 0.000000 0.000000 0.000000 0.097152 0 0 0 0 1.497984 2.925489 0.834815
7 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090784 0.005600 0 0 0.000000 0.000000 0.000000 0.000000 0.096384 0 0 0 0 2.037568 3.350389 0.857367
8 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090880 0.005120 0 0 0.000000 0.000000 0.000000 0.000000 0.096000 0 0 0 0 1.748928 3.310485 0.895550
9 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091328 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.097024 0 0 0 0 1.487104 2.824348 0.921939
10 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091392 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 0.096800 0 0 0 0 1.622880 3.423077 1.096077
11 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091712 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.097408 0 0 0 0 1.480800 2.779804 0.922109
12 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090752 0.004896 0 0 0.000000 0.000000 0.000000 0.000000 0.095648 0 0 0 0 1.589024 2.981695 0.900919
13 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091552 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.097280 0 0 0 0 1.817728 3.163598 0.894056
14 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091776 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.097856 0 0 0 0 1.595744 3.623104 1.036835
15 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090880 0.005184 0 0 0.000000 0.000000 0.000000 0.000000 0.096064 0 0 0 0 1.476672 2.770967 0.846487
16 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091584 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.097312 0 0 0 0 2.043584 3.387520 0.993173
17 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091616 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 0.096896 0 0 0 0 2.108192 3.408159 0.849172
18 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.092352 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.098208 0 0 0 0 2.041312 3.363865 0.955071
19 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091744 0.005024 0 0 0.000000 0.000000 0.000000 0.000000 0.096768 0 0 0 0 1.988160 3.328168 0.868048
20 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091200 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.096928 0 0 0 0 2.036352 3.496706 1.000166
21 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091616 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.097440 0 0 0 0 2.110656 3.427295 0.849593
22 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.092128 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.097824 0 0 0 0 2.049312 3.529748 1.124011
23 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.092064 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.097888 0 0 0 0 2.091200 3.453935 0.827481
24 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.092384 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.098112 0 0 0 0 2.048448 3.452222 1.056843
25 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.092096 0.004800 0 0 0.000000 0.000000 0.000000 0.000000 0.096896 0 0 0 0 2.106176 3.458464 0.846476
26 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091392 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 0.096928 0 0 0 0 2.036800 3.973575 1.552609
27 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091360 0.005984 0 0 0.000000 0.000000 0.000000 0.000000 0.097344 0 0 0 0 1.825024 3.526572 0.957146
28 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.092416 0.004768 0 0 0.000000 0.000000 0.000000 0.000000 0.097184 0 0 0 0 2.028640 3.327818 0.951835
29 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091360 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.097056 0 0 0 0 1.824480 3.143971 0.834154
30 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091488 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.097248 0 0 0 0 2.036640 3.161273 0.800470
31 4 dense off gpu-occlusion gpu-occlusion forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090912 0.006688 0 0 0.000000 0.000000 0.000000 0.000000 0.097600 0 0 0 0 1.616960 2.886605 0.918743
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090464,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,0.095744,0,0,0,0,1.647904,2.915660,0.825126
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091136,0.005248,0,0,0.000000,0.000000,0.000000,0.000000,0.096384,0,0,0,0,1.867168,3.413820,0.841697
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091072,0.004992,0,0,0.000000,0.000000,0.000000,0.000000,0.096064,0,0,0,0,1.708352,3.123672,0.805890
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091360,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.097152,0,0,0,0,1.588288,3.304423,0.807934
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090880,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,0.096448,0,0,0,0,1.846432,3.036418,0.764893
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090912,0.004960,0,0,0.000000,0.000000,0.000000,0.000000,0.095872,0,0,0,0,2.022656,3.173066,0.828373
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091552,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.097280,0,0,0,0,1.475552,3.030596,0.881944
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090272,0.005312,0,0,0.000000,0.000000,0.000000,0.000000,0.095584,0,0,0,0,1.478400,2.721794,0.851626
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090624,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.096320,0,0,0,0,1.888736,3.221957,0.874018
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091872,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.097568,0,0,0,0,1.634752,2.944424,0.853861
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090464,0.004704,0,0,0.000000,0.000000,0.000000,0.000000,0.095168,0,0,0,0,2.063040,3.578510,0.887374
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091200,0.005216,0,0,0.000000,0.000000,0.000000,0.000000,0.096416,0,0,0,0,1.489728,2.766218,0.901681
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091008,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.096736,0,0,0,0,1.584800,3.305696,0.884498
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091360,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.097120,0,0,0,0,1.837504,3.171613,0.878357
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091424,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.097248,0,0,0,0,2.025376,3.384695,0.997722
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091264,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.097024,0,0,0,0,1.493408,2.789562,0.896150
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091520,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.097376,0,0,0,0,2.024352,3.396286,0.887694
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091520,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.097344,0,0,0,0,1.476064,2.727856,0.829595
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091680,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.097536,0,0,0,0,1.479680,2.668985,0.805770
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090752,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,0.096704,0,0,0,0,1.736576,3.069460,0.818574
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090560,0.006112,0,0,0.000000,0.000000,0.000000,0.000000,0.096672,0,0,0,0,1.655008,2.891835,0.821930
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090912,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.096640,0,0,0,0,1.630048,3.519459,0.921728
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091424,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.097184,0,0,0,0,1.486944,2.882838,0.923352
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091136,0.005120,0,0,0.000000,0.000000,0.000000,0.000000,0.096256,0,0,0,0,2.027296,3.863468,1.308949
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091104,0.005056,0,0,0.000000,0.000000,0.000000,0.000000,0.096160,0,0,0,0,1.845536,3.725848,1.321533
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091584,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.097280,0,0,0,0,1.870304,3.626100,1.186268
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.090944,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.097024,0,0,0,0,1.726304,3.658712,1.236492
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091328,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.097152,0,0,0,0,1.890016,3.824875,1.268092
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091296,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.097024,0,0,0,0,1.635200,3.502978,1.301194
4,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,0,0,0,0,0,2,104292576,0.091296,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.097152,0,0,0,0,1.733504,3.526432,1.200946
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090464 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 0.095744 0 0 0 0 1.647904 2.915660 0.825126
3 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091136 0.005248 0 0 0.000000 0.000000 0.000000 0.000000 0.096384 0 0 0 0 1.867168 3.413820 0.841697
4 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091072 0.004992 0 0 0.000000 0.000000 0.000000 0.000000 0.096064 0 0 0 0 1.708352 3.123672 0.805890
5 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091360 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.097152 0 0 0 0 1.588288 3.304423 0.807934
6 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090880 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 0.096448 0 0 0 0 1.846432 3.036418 0.764893
7 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090912 0.004960 0 0 0.000000 0.000000 0.000000 0.000000 0.095872 0 0 0 0 2.022656 3.173066 0.828373
8 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091552 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.097280 0 0 0 0 1.475552 3.030596 0.881944
9 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090272 0.005312 0 0 0.000000 0.000000 0.000000 0.000000 0.095584 0 0 0 0 1.478400 2.721794 0.851626
10 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090624 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.096320 0 0 0 0 1.888736 3.221957 0.874018
11 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091872 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.097568 0 0 0 0 1.634752 2.944424 0.853861
12 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090464 0.004704 0 0 0.000000 0.000000 0.000000 0.000000 0.095168 0 0 0 0 2.063040 3.578510 0.887374
13 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091200 0.005216 0 0 0.000000 0.000000 0.000000 0.000000 0.096416 0 0 0 0 1.489728 2.766218 0.901681
14 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091008 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.096736 0 0 0 0 1.584800 3.305696 0.884498
15 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091360 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.097120 0 0 0 0 1.837504 3.171613 0.878357
16 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091424 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.097248 0 0 0 0 2.025376 3.384695 0.997722
17 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091264 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.097024 0 0 0 0 1.493408 2.789562 0.896150
18 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091520 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.097376 0 0 0 0 2.024352 3.396286 0.887694
19 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091520 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.097344 0 0 0 0 1.476064 2.727856 0.829595
20 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091680 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.097536 0 0 0 0 1.479680 2.668985 0.805770
21 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090752 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 0.096704 0 0 0 0 1.736576 3.069460 0.818574
22 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090560 0.006112 0 0 0.000000 0.000000 0.000000 0.000000 0.096672 0 0 0 0 1.655008 2.891835 0.821930
23 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090912 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.096640 0 0 0 0 1.630048 3.519459 0.921728
24 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091424 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.097184 0 0 0 0 1.486944 2.882838 0.923352
25 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091136 0.005120 0 0 0.000000 0.000000 0.000000 0.000000 0.096256 0 0 0 0 2.027296 3.863468 1.308949
26 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091104 0.005056 0 0 0.000000 0.000000 0.000000 0.000000 0.096160 0 0 0 0 1.845536 3.725848 1.321533
27 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091584 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.097280 0 0 0 0 1.870304 3.626100 1.186268
28 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.090944 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.097024 0 0 0 0 1.726304 3.658712 1.236492
29 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091328 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.097152 0 0 0 0 1.890016 3.824875 1.268092
30 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091296 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.097024 0 0 0 0 1.635200 3.502978 1.301194
31 4 dense off gpu-occlusion gpu-occlusion forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 0 0 0 0 0 2 104292576 0.091296 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.097152 0 0 0 0 1.733504 3.526432 1.200946
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281888,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,0.287552,0,0,0,0,2.205824,3.708085,0.968267
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281792,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.287616,0,0,0,0,1.679616,3.075521,0.959550
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280640,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.286336,0,0,0,0,2.205888,3.711020,0.997803
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281120,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.286816,0,0,0,0,1.910944,3.408299,0.943620
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281248,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.287104,0,0,0,0,1.773568,3.651568,0.871714
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281152,0.005312,0,0,0.000000,0.000000,0.000000,0.000000,0.286464,0,0,0,0,1.683808,3.084318,0.954751
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280256,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,0.285920,0,0,0,0,1.664672,3.242487,0.925726
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281280,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.286976,0,0,0,0,1.842048,3.446871,0.969569
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280288,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.285984,0,0,0,0,2.211136,3.599780,0.877224
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282048,0.004672,0,0,0.000000,0.000000,0.000000,0.000000,0.286720,0,0,0,0,1.833568,3.312238,0.961553
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280640,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,0.285984,0,0,0,0,2.213216,3.612554,0.893986
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280160,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.285888,0,0,0,0,1.678784,3.010168,0.917631
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281824,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.287520,0,0,0,0,2.432800,3.938940,0.848270
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280704,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,0.286368,0,0,0,0,1.680864,2.985001,0.913172
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282464,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.288160,0,0,0,0,2.435424,3.811379,0.840756
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280640,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,0.286304,0,0,0,0,1.679776,3.036457,0.937830
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282080,0.004928,0,0,0.000000,0.000000,0.000000,0.000000,0.287008,0,0,0,0,2.433120,3.787945,0.847639
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280608,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.286304,0,0,0,0,1.682560,3.017953,0.920586
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281632,0.004960,0,0,0.000000,0.000000,0.000000,0.000000,0.286592,0,0,0,0,2.436608,3.804506,0.846236
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281856,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.287584,0,0,0,0,1.682432,2.984460,0.888867
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281696,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.287392,0,0,0,0,2.375808,3.822451,0.947717
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281024,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,0.286432,0,0,0,0,1.679392,3.093756,0.946496
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281920,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.287648,0,0,0,0,2.371520,3.796130,0.910707
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282016,0.004800,0,0,0.000000,0.000000,0.000000,0.000000,0.286816,0,0,0,0,1.677056,3.077004,0.960652
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280832,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.286528,0,0,0,0,2.374336,3.752329,0.867056
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.280896,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.286624,0,0,0,0,1.679456,3.067657,0.961454
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281664,0.004832,0,0,0.000000,0.000000,0.000000,0.000000,0.286496,0,0,0,0,2.376128,3.753641,0.862297
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281152,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.286848,0,0,0,0,1.667840,2.946868,0.875171
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282208,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.288032,0,0,0,0,2.437504,3.887443,0.869190
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281120,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.286976,0,0,0,0,1.683904,3.073487,0.934744
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281888 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 0.287552 0 0 0 0 2.205824 3.708085 0.968267
3 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281792 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.287616 0 0 0 0 1.679616 3.075521 0.959550
4 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280640 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.286336 0 0 0 0 2.205888 3.711020 0.997803
5 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281120 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.286816 0 0 0 0 1.910944 3.408299 0.943620
6 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281248 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.287104 0 0 0 0 1.773568 3.651568 0.871714
7 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281152 0.005312 0 0 0.000000 0.000000 0.000000 0.000000 0.286464 0 0 0 0 1.683808 3.084318 0.954751
8 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280256 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 0.285920 0 0 0 0 1.664672 3.242487 0.925726
9 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281280 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.286976 0 0 0 0 1.842048 3.446871 0.969569
10 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280288 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.285984 0 0 0 0 2.211136 3.599780 0.877224
11 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282048 0.004672 0 0 0.000000 0.000000 0.000000 0.000000 0.286720 0 0 0 0 1.833568 3.312238 0.961553
12 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280640 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 0.285984 0 0 0 0 2.213216 3.612554 0.893986
13 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280160 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.285888 0 0 0 0 1.678784 3.010168 0.917631
14 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281824 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.287520 0 0 0 0 2.432800 3.938940 0.848270
15 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280704 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 0.286368 0 0 0 0 1.680864 2.985001 0.913172
16 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282464 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.288160 0 0 0 0 2.435424 3.811379 0.840756
17 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280640 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 0.286304 0 0 0 0 1.679776 3.036457 0.937830
18 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282080 0.004928 0 0 0.000000 0.000000 0.000000 0.000000 0.287008 0 0 0 0 2.433120 3.787945 0.847639
19 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280608 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.286304 0 0 0 0 1.682560 3.017953 0.920586
20 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281632 0.004960 0 0 0.000000 0.000000 0.000000 0.000000 0.286592 0 0 0 0 2.436608 3.804506 0.846236
21 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281856 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.287584 0 0 0 0 1.682432 2.984460 0.888867
22 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281696 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.287392 0 0 0 0 2.375808 3.822451 0.947717
23 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281024 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 0.286432 0 0 0 0 1.679392 3.093756 0.946496
24 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281920 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.287648 0 0 0 0 2.371520 3.796130 0.910707
25 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282016 0.004800 0 0 0.000000 0.000000 0.000000 0.000000 0.286816 0 0 0 0 1.677056 3.077004 0.960652
26 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280832 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.286528 0 0 0 0 2.374336 3.752329 0.867056
27 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.280896 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.286624 0 0 0 0 1.679456 3.067657 0.961454
28 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281664 0.004832 0 0 0.000000 0.000000 0.000000 0.000000 0.286496 0 0 0 0 2.376128 3.753641 0.862297
29 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281152 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.286848 0 0 0 0 1.667840 2.946868 0.875171
30 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282208 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.288032 0 0 0 0 2.437504 3.887443 0.869190
31 16 dense off gpu-occlusion gpu-occlusion forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281120 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.286976 0 0 0 0 1.683904 3.073487 0.934744
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282720,0.005440,0,0,0.000000,0.000000,0.000000,0.000000,0.288160,0,0,0,0,2.380352,3.894897,0.992141
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283008,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.288704,0,0,0,0,1.672320,2.936139,0.884218
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282848,0.005312,0,0,0.000000,0.000000,0.000000,0.000000,0.288160,0,0,0,0,2.020384,3.524689,0.909867
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282816,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.288544,0,0,0,0,1.806272,3.137799,0.853901
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283648,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,0.288992,0,0,0,0,1.838112,3.542903,0.916268
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284832,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,0.290112,0,0,0,0,1.669632,2.916251,0.844583
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282240,0.004768,0,0,0.000000,0.000000,0.000000,0.000000,0.287008,0,0,0,0,1.785376,3.965540,0.923102
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283552,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.289280,0,0,0,0,1.678016,2.880052,0.828072
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283008,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,0.288352,0,0,0,0,2.394976,3.735026,0.883577
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283232,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.288960,0,0,0,0,1.700704,2.885272,0.831127
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283104,0.005088,0,0,0.000000,0.000000,0.000000,0.000000,0.288192,0,0,0,0,2.394208,3.742068,0.915186
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282208,0.017600,0,0,0.000000,0.000000,0.000000,0.000000,0.299808,0,0,0,0,1.693824,3.054932,0.807163
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281856,0.004832,0,0,0.000000,0.000000,0.000000,0.000000,0.286688,0,0,0,0,2.396576,3.712704,0.889178
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282560,0.004736,0,0,0.000000,0.000000,0.000000,0.000000,0.287296,0,0,0,0,1.685568,3.103765,0.793266
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283968,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.289696,0,0,0,0,2.396480,3.753250,0.912712
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283232,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.289024,0,0,0,0,1.959520,3.246764,0.837610
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282080,0.005088,0,0,0.000000,0.000000,0.000000,0.000000,0.287168,0,0,0,0,2.397312,3.746587,0.894797
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282976,0.005440,0,0,0.000000,0.000000,0.000000,0.000000,0.288416,0,0,0,0,2.091904,3.407748,0.849162
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284000,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.289792,0,0,0,0,2.231232,3.954900,1.211456
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284832,0.005248,0,0,0.000000,0.000000,0.000000,0.000000,0.290080,0,0,0,0,2.004064,3.578660,0.971953
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283712,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.289408,0,0,0,0,1.830720,3.438265,1.018711
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283136,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,0.288704,0,0,0,0,2.009568,3.394483,0.885961
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.295584,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.301312,0,0,0,0,1.847072,3.369766,1.006890
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282624,0.014912,0,0,0.000000,0.000000,0.000000,0.000000,0.297536,0,0,0,0,2.022208,3.439949,0.926397
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283744,0.005632,0,0,0.000000,0.000000,0.000000,0.000000,0.289376,0,0,0,0,1.830848,3.550778,1.023370
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284064,0.015040,0,0,0.000000,0.000000,0.000000,0.000000,0.299104,0,0,0,0,2.033120,3.420783,0.894147
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284288,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.289984,0,0,0,0,1.860960,3.412637,1.031636
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284352,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.290048,0,0,0,0,2.023584,3.451531,0.927670
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283552,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.289280,0,0,0,0,1.847200,3.440631,1.054640
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283072,0.016096,0,0,0.000000,0.000000,0.000000,0.000000,0.299168,0,0,0,0,2.008448,3.482139,0.919274
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282720 0.005440 0 0 0.000000 0.000000 0.000000 0.000000 0.288160 0 0 0 0 2.380352 3.894897 0.992141
3 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283008 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.288704 0 0 0 0 1.672320 2.936139 0.884218
4 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282848 0.005312 0 0 0.000000 0.000000 0.000000 0.000000 0.288160 0 0 0 0 2.020384 3.524689 0.909867
5 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282816 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.288544 0 0 0 0 1.806272 3.137799 0.853901
6 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283648 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 0.288992 0 0 0 0 1.838112 3.542903 0.916268
7 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284832 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 0.290112 0 0 0 0 1.669632 2.916251 0.844583
8 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282240 0.004768 0 0 0.000000 0.000000 0.000000 0.000000 0.287008 0 0 0 0 1.785376 3.965540 0.923102
9 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283552 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.289280 0 0 0 0 1.678016 2.880052 0.828072
10 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283008 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 0.288352 0 0 0 0 2.394976 3.735026 0.883577
11 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283232 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.288960 0 0 0 0 1.700704 2.885272 0.831127
12 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283104 0.005088 0 0 0.000000 0.000000 0.000000 0.000000 0.288192 0 0 0 0 2.394208 3.742068 0.915186
13 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282208 0.017600 0 0 0.000000 0.000000 0.000000 0.000000 0.299808 0 0 0 0 1.693824 3.054932 0.807163
14 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281856 0.004832 0 0 0.000000 0.000000 0.000000 0.000000 0.286688 0 0 0 0 2.396576 3.712704 0.889178
15 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282560 0.004736 0 0 0.000000 0.000000 0.000000 0.000000 0.287296 0 0 0 0 1.685568 3.103765 0.793266
16 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283968 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.289696 0 0 0 0 2.396480 3.753250 0.912712
17 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283232 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.289024 0 0 0 0 1.959520 3.246764 0.837610
18 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282080 0.005088 0 0 0.000000 0.000000 0.000000 0.000000 0.287168 0 0 0 0 2.397312 3.746587 0.894797
19 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282976 0.005440 0 0 0.000000 0.000000 0.000000 0.000000 0.288416 0 0 0 0 2.091904 3.407748 0.849162
20 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284000 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.289792 0 0 0 0 2.231232 3.954900 1.211456
21 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284832 0.005248 0 0 0.000000 0.000000 0.000000 0.000000 0.290080 0 0 0 0 2.004064 3.578660 0.971953
22 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283712 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.289408 0 0 0 0 1.830720 3.438265 1.018711
23 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283136 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 0.288704 0 0 0 0 2.009568 3.394483 0.885961
24 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.295584 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.301312 0 0 0 0 1.847072 3.369766 1.006890
25 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282624 0.014912 0 0 0.000000 0.000000 0.000000 0.000000 0.297536 0 0 0 0 2.022208 3.439949 0.926397
26 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283744 0.005632 0 0 0.000000 0.000000 0.000000 0.000000 0.289376 0 0 0 0 1.830848 3.550778 1.023370
27 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284064 0.015040 0 0 0.000000 0.000000 0.000000 0.000000 0.299104 0 0 0 0 2.033120 3.420783 0.894147
28 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284288 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.289984 0 0 0 0 1.860960 3.412637 1.031636
29 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284352 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.290048 0 0 0 0 2.023584 3.451531 0.927670
30 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283552 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.289280 0 0 0 0 1.847200 3.440631 1.054640
31 16 dense off gpu-occlusion gpu-occlusion forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283072 0.016096 0 0 0.000000 0.000000 0.000000 0.000000 0.299168 0 0 0 0 2.008448 3.482139 0.919274
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283008,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.288768,0,0,0,0,1.931520,3.507746,1.011188
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282752,0.005056,0,0,0.000000,0.000000,0.000000,0.000000,0.287808,0,0,0,0,2.066144,3.598227,0.978937
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281984,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.287712,0,0,0,0,1.893568,3.373974,0.993525
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282528,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.288224,0,0,0,0,2.069568,3.618946,1.014624
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282016,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,0.287424,0,0,0,0,1.785856,3.312960,1.027708
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282592,0.005440,0,0,0.000000,0.000000,0.000000,0.000000,0.288032,0,0,0,0,2.063328,3.868207,1.260808
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.281792,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,0.287360,0,0,0,0,1.667872,3.350900,1.003874
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283328,0.004768,0,0,0.000000,0.000000,0.000000,0.000000,0.288096,0,0,0,0,2.091296,3.547081,0.955202
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283968,0.005472,0,0,0.000000,0.000000,0.000000,0.000000,0.289440,0,0,0,0,1.688256,3.044793,0.945594
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283776,0.004736,0,0,0.000000,0.000000,0.000000,0.000000,0.288512,0,0,0,0,2.088864,3.567519,0.993755
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283168,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.288896,0,0,0,0,1.687520,3.060122,0.999446
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282752,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.288576,0,0,0,0,2.087040,3.631620,1.013481
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282560,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.288352,0,0,0,0,1.687072,3.471659,1.390222
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283296,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.289024,0,0,0,0,1.931680,3.468433,0.985619
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282688,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.288480,0,0,0,0,1.686464,3.084478,1.008652
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282880,0.005248,0,0,0.000000,0.000000,0.000000,0.000000,0.288128,0,0,0,0,2.091840,3.721811,1.014393
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283584,0.005600,0,0,0.000000,0.000000,0.000000,0.000000,0.289184,0,0,0,0,1.688768,3.135654,1.067053
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283744,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,0.289280,0,0,0,0,2.088704,3.684400,0.994265
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284928,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.290656,0,0,0,0,1.688896,3.086883,1.002811
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283552,0.006272,0,0,0.000000,0.000000,0.000000,0.000000,0.289824,0,0,0,0,2.065696,3.594240,1.023610
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.313408,0.004768,0,0,0.000000,0.000000,0.000000,0.000000,0.318176,0,0,0,0,1.717760,3.199465,1.093843
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283776,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.289568,0,0,0,0,2.066720,3.616011,1.009084
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284384,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.290112,0,0,0,0,1.684480,3.100879,1.022178
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284384,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.290080,0,0,0,0,2.068000,3.644595,1.064498
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283168,0.005056,0,0,0.000000,0.000000,0.000000,0.000000,0.288224,0,0,0,0,1.684608,3.084649,1.010536
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282720,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,0.288064,0,0,0,0,1.840256,3.495674,1.088904
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.282752,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.288512,0,0,0,0,1.982560,3.560406,1.000357
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.284864,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.290592,0,0,0,0,2.068480,3.644955,1.054850
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.285024,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.290784,0,0,0,0,1.676128,3.110066,1.011538
16,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,0,0,0,0,0,2,104293536,0.283584,0.005088,0,0,0.000000,0.000000,0.000000,0.000000,0.288672,0,0,0,0,1.831008,3.439318,1.051053
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283008 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.288768 0 0 0 0 1.931520 3.507746 1.011188
3 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282752 0.005056 0 0 0.000000 0.000000 0.000000 0.000000 0.287808 0 0 0 0 2.066144 3.598227 0.978937
4 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281984 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.287712 0 0 0 0 1.893568 3.373974 0.993525
5 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282528 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.288224 0 0 0 0 2.069568 3.618946 1.014624
6 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282016 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 0.287424 0 0 0 0 1.785856 3.312960 1.027708
7 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282592 0.005440 0 0 0.000000 0.000000 0.000000 0.000000 0.288032 0 0 0 0 2.063328 3.868207 1.260808
8 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.281792 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 0.287360 0 0 0 0 1.667872 3.350900 1.003874
9 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283328 0.004768 0 0 0.000000 0.000000 0.000000 0.000000 0.288096 0 0 0 0 2.091296 3.547081 0.955202
10 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283968 0.005472 0 0 0.000000 0.000000 0.000000 0.000000 0.289440 0 0 0 0 1.688256 3.044793 0.945594
11 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283776 0.004736 0 0 0.000000 0.000000 0.000000 0.000000 0.288512 0 0 0 0 2.088864 3.567519 0.993755
12 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283168 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.288896 0 0 0 0 1.687520 3.060122 0.999446
13 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282752 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.288576 0 0 0 0 2.087040 3.631620 1.013481
14 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282560 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.288352 0 0 0 0 1.687072 3.471659 1.390222
15 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283296 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.289024 0 0 0 0 1.931680 3.468433 0.985619
16 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282688 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.288480 0 0 0 0 1.686464 3.084478 1.008652
17 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282880 0.005248 0 0 0.000000 0.000000 0.000000 0.000000 0.288128 0 0 0 0 2.091840 3.721811 1.014393
18 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283584 0.005600 0 0 0.000000 0.000000 0.000000 0.000000 0.289184 0 0 0 0 1.688768 3.135654 1.067053
19 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283744 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 0.289280 0 0 0 0 2.088704 3.684400 0.994265
20 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284928 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.290656 0 0 0 0 1.688896 3.086883 1.002811
21 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283552 0.006272 0 0 0.000000 0.000000 0.000000 0.000000 0.289824 0 0 0 0 2.065696 3.594240 1.023610
22 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.313408 0.004768 0 0 0.000000 0.000000 0.000000 0.000000 0.318176 0 0 0 0 1.717760 3.199465 1.093843
23 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283776 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.289568 0 0 0 0 2.066720 3.616011 1.009084
24 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284384 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.290112 0 0 0 0 1.684480 3.100879 1.022178
25 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284384 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.290080 0 0 0 0 2.068000 3.644595 1.064498
26 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283168 0.005056 0 0 0.000000 0.000000 0.000000 0.000000 0.288224 0 0 0 0 1.684608 3.084649 1.010536
27 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282720 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 0.288064 0 0 0 0 1.840256 3.495674 1.088904
28 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.282752 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.288512 0 0 0 0 1.982560 3.560406 1.000357
29 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.284864 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.290592 0 0 0 0 2.068480 3.644955 1.054850
30 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.285024 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.290784 0 0 0 0 1.676128 3.110066 1.011538
31 16 dense off gpu-occlusion gpu-occlusion forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 0 0 0 0 0 2 104293536 0.283584 0.005088 0 0 0.000000 0.000000 0.000000 0.000000 0.288672 0 0 0 0 1.831008 3.439318 1.051053
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.544096,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,0.549632,0,0,0,0,2.058624,3.528266,0.871584
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.544608,0.005152,0,0,0.000000,0.000000,0.000000,0.000000,0.549760,0,0,0,0,1.931744,3.181120,0.859822
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.545632,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.551456,0,0,0,0,1.931424,3.341884,0.938771
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.545088,0.005440,0,0,0.000000,0.000000,0.000000,0.000000,0.550528,0,0,0,0,1.934048,3.215746,0.901901
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.543936,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.549856,0,0,0,0,1.928896,3.360709,1.051905
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.545376,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.551072,0,0,0,0,1.932352,3.431774,0.860413
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.544928,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.550688,0,0,0,0,2.070624,3.729465,0.972865
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.545536,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.551232,0,0,0,0,2.192320,3.595553,0.907512
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.544928,0.004864,0,0,0.000000,0.000000,0.000000,0.000000,0.549792,0,0,0,0,1.929632,3.284065,0.942948
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548128,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,0.553792,0,0,0,0,1.934464,3.441862,0.944011
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.543776,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.549568,0,0,0,0,1.929184,3.302550,0.956214
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.544928,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.550624,0,0,0,0,1.933152,3.585323,0.892233
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.544704,0.005472,0,0,0.000000,0.000000,0.000000,0.000000,0.550176,0,0,0,0,1.928992,3.359147,0.995198
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548896,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,0.554560,0,0,0,0,1.935616,3.429028,0.937187
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.547360,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.553056,0,0,0,0,1.932736,3.267504,0.921819
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.546976,0.004832,0,0,0.000000,0.000000,0.000000,0.000000,0.551808,0,0,0,0,2.195840,3.594691,0.870152
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.547680,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.553376,0,0,0,0,1.933376,3.350651,1.025805
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.546656,0.004864,0,0,0.000000,0.000000,0.000000,0.000000,0.551520,0,0,0,0,2.197248,3.702574,1.017369
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.544096,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.549824,0,0,0,0,1.967776,3.355289,0.957496
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.545568,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,0.551520,0,0,0,0,1.932864,3.220134,0.770894
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.547680,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.553376,0,0,0,0,1.932032,3.224503,0.935695
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.546112,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.551936,0,0,0,0,2.199808,3.542442,0.884599
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.547840,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.553920,0,0,0,0,2.052544,3.538484,0.970030
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548736,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.554560,0,0,0,0,1.937152,3.558202,0.921017
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.546464,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.552224,0,0,0,0,2.073248,3.639896,1.046875
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549152,0.005312,0,0,0.000000,0.000000,0.000000,0.000000,0.554464,0,0,0,0,1.935328,3.392640,0.956515
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549056,0.004800,0,0,0.000000,0.000000,0.000000,0.000000,0.553856,0,0,0,0,2.226528,3.753740,1.003422
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.547264,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.553088,0,0,0,0,1.935456,3.291970,0.931588
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.547872,0.005024,0,0,0.000000,0.000000,0.000000,0.000000,0.552896,0,0,0,0,1.967872,3.391457,1.049840
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.544640,0.006112,0,0,0.000000,0.000000,0.000000,0.000000,0.550752,0,0,0,0,1.932704,3.368544,0.932128
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.544096 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 0.549632 0 0 0 0 2.058624 3.528266 0.871584
3 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.544608 0.005152 0 0 0.000000 0.000000 0.000000 0.000000 0.549760 0 0 0 0 1.931744 3.181120 0.859822
4 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.545632 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.551456 0 0 0 0 1.931424 3.341884 0.938771
5 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.545088 0.005440 0 0 0.000000 0.000000 0.000000 0.000000 0.550528 0 0 0 0 1.934048 3.215746 0.901901
6 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.543936 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.549856 0 0 0 0 1.928896 3.360709 1.051905
7 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.545376 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.551072 0 0 0 0 1.932352 3.431774 0.860413
8 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.544928 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.550688 0 0 0 0 2.070624 3.729465 0.972865
9 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.545536 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.551232 0 0 0 0 2.192320 3.595553 0.907512
10 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.544928 0.004864 0 0 0.000000 0.000000 0.000000 0.000000 0.549792 0 0 0 0 1.929632 3.284065 0.942948
11 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548128 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 0.553792 0 0 0 0 1.934464 3.441862 0.944011
12 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.543776 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.549568 0 0 0 0 1.929184 3.302550 0.956214
13 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.544928 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.550624 0 0 0 0 1.933152 3.585323 0.892233
14 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.544704 0.005472 0 0 0.000000 0.000000 0.000000 0.000000 0.550176 0 0 0 0 1.928992 3.359147 0.995198
15 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548896 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 0.554560 0 0 0 0 1.935616 3.429028 0.937187
16 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.547360 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.553056 0 0 0 0 1.932736 3.267504 0.921819
17 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.546976 0.004832 0 0 0.000000 0.000000 0.000000 0.000000 0.551808 0 0 0 0 2.195840 3.594691 0.870152
18 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.547680 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.553376 0 0 0 0 1.933376 3.350651 1.025805
19 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.546656 0.004864 0 0 0.000000 0.000000 0.000000 0.000000 0.551520 0 0 0 0 2.197248 3.702574 1.017369
20 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.544096 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.549824 0 0 0 0 1.967776 3.355289 0.957496
21 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.545568 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 0.551520 0 0 0 0 1.932864 3.220134 0.770894
22 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.547680 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.553376 0 0 0 0 1.932032 3.224503 0.935695
23 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.546112 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.551936 0 0 0 0 2.199808 3.542442 0.884599
24 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.547840 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.553920 0 0 0 0 2.052544 3.538484 0.970030
25 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548736 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.554560 0 0 0 0 1.937152 3.558202 0.921017
26 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.546464 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.552224 0 0 0 0 2.073248 3.639896 1.046875
27 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549152 0.005312 0 0 0.000000 0.000000 0.000000 0.000000 0.554464 0 0 0 0 1.935328 3.392640 0.956515
28 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549056 0.004800 0 0 0.000000 0.000000 0.000000 0.000000 0.553856 0 0 0 0 2.226528 3.753740 1.003422
29 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.547264 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.553088 0 0 0 0 1.935456 3.291970 0.931588
30 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.547872 0.005024 0 0 0.000000 0.000000 0.000000 0.000000 0.552896 0 0 0 0 1.967872 3.391457 1.049840
31 32 dense off gpu-occlusion gpu-occlusion forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.544640 0.006112 0 0 0.000000 0.000000 0.000000 0.000000 0.550752 0 0 0 0 1.932704 3.368544 0.932128
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.551040,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.556960,0,0,0,0,2.619168,4.140400,0.882464
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.551424,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.557184,0,0,0,0,1.952800,3.348346,0.963999
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.546976,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.552896,0,0,0,0,2.693568,4.178952,0.926337
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548896,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.554656,0,0,0,0,2.491616,3.993122,0.957396
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549920,0.006016,0,0,0.000000,0.000000,0.000000,0.000000,0.555936,0,0,0,0,2.288448,3.746878,0.942888
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549216,0.005632,0,0,0.000000,0.000000,0.000000,0.000000,0.554848,0,0,0,0,2.495040,3.970840,1.037728
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.551520,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.557440,0,0,0,0,2.167392,3.991008,0.923052
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550592,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.556352,0,0,0,0,2.057280,3.765092,1.106627
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.551072,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.556832,0,0,0,0,2.159264,3.694409,0.943810
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549824,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,0.555712,0,0,0,0,2.357632,3.789739,0.878577
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.547456,0.005504,0,0,0.000000,0.000000,0.000000,0.000000,0.552960,0,0,0,0,1.946880,3.378202,0.969007
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548640,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.554720,0,0,0,0,2.369152,3.788216,0.908694
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549248,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.555008,0,0,0,0,1.935936,3.327326,0.940915
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548096,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.553888,0,0,0,0,2.371648,3.811610,0.923241
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548512,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,0.554464,0,0,0,0,2.427840,3.883516,0.948169
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550432,0.004896,0,0,0.000000,0.000000,0.000000,0.000000,0.555328,0,0,0,0,2.226208,3.646669,0.914344
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548416,0.004832,0,0,0.000000,0.000000,0.000000,0.000000,0.553248,0,0,0,0,2.492064,4.420699,1.294552
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550304,0.005632,0,0,0.000000,0.000000,0.000000,0.000000,0.555936,0,0,0,0,2.277184,3.844983,0.937959
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549248,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.555168,0,0,0,0,2.056224,3.675112,1.070479
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550560,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,0.556448,0,0,0,0,1.951136,3.757117,1.207939
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550272,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,0.556192,0,0,0,0,2.522464,4.183883,0.933481
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549344,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.555072,0,0,0,0,2.490048,4.160999,1.119592
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549536,0.004960,0,0,0.000000,0.000000,0.000000,0.000000,0.554496,0,0,0,0,2.155712,3.845193,0.916289
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548544,0.004960,0,0,0.000000,0.000000,0.000000,0.000000,0.553504,0,0,0,0,2.130688,4.183070,1.225772
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550464,0.005440,0,0,0.000000,0.000000,0.000000,0.000000,0.555904,0,0,0,0,2.166048,3.917058,0.965542
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549792,0.006048,0,0,0.000000,0.000000,0.000000,0.000000,0.555840,0,0,0,0,2.362592,3.823322,0.951706
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549280,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.555072,0,0,0,0,1.950944,3.362182,0.960752
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548288,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,0.554176,0,0,0,0,2.359936,3.856604,0.974118
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549504,0.019104,0,0,0.000000,0.000000,0.000000,0.000000,0.568608,0,0,0,0,2.520064,4.240339,1.168805
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548864,0.004896,0,0,0.000000,0.000000,0.000000,0.000000,0.553760,0,0,0,0,2.161472,3.834713,0.975130
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.551040 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.556960 0 0 0 0 2.619168 4.140400 0.882464
3 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.551424 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.557184 0 0 0 0 1.952800 3.348346 0.963999
4 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.546976 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.552896 0 0 0 0 2.693568 4.178952 0.926337
5 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548896 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.554656 0 0 0 0 2.491616 3.993122 0.957396
6 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549920 0.006016 0 0 0.000000 0.000000 0.000000 0.000000 0.555936 0 0 0 0 2.288448 3.746878 0.942888
7 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549216 0.005632 0 0 0.000000 0.000000 0.000000 0.000000 0.554848 0 0 0 0 2.495040 3.970840 1.037728
8 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.551520 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.557440 0 0 0 0 2.167392 3.991008 0.923052
9 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550592 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.556352 0 0 0 0 2.057280 3.765092 1.106627
10 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.551072 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.556832 0 0 0 0 2.159264 3.694409 0.943810
11 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549824 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 0.555712 0 0 0 0 2.357632 3.789739 0.878577
12 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.547456 0.005504 0 0 0.000000 0.000000 0.000000 0.000000 0.552960 0 0 0 0 1.946880 3.378202 0.969007
13 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548640 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.554720 0 0 0 0 2.369152 3.788216 0.908694
14 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549248 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.555008 0 0 0 0 1.935936 3.327326 0.940915
15 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548096 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.553888 0 0 0 0 2.371648 3.811610 0.923241
16 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548512 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 0.554464 0 0 0 0 2.427840 3.883516 0.948169
17 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550432 0.004896 0 0 0.000000 0.000000 0.000000 0.000000 0.555328 0 0 0 0 2.226208 3.646669 0.914344
18 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548416 0.004832 0 0 0.000000 0.000000 0.000000 0.000000 0.553248 0 0 0 0 2.492064 4.420699 1.294552
19 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550304 0.005632 0 0 0.000000 0.000000 0.000000 0.000000 0.555936 0 0 0 0 2.277184 3.844983 0.937959
20 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549248 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.555168 0 0 0 0 2.056224 3.675112 1.070479
21 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550560 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 0.556448 0 0 0 0 1.951136 3.757117 1.207939
22 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550272 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 0.556192 0 0 0 0 2.522464 4.183883 0.933481
23 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549344 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.555072 0 0 0 0 2.490048 4.160999 1.119592
24 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549536 0.004960 0 0 0.000000 0.000000 0.000000 0.000000 0.554496 0 0 0 0 2.155712 3.845193 0.916289
25 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548544 0.004960 0 0 0.000000 0.000000 0.000000 0.000000 0.553504 0 0 0 0 2.130688 4.183070 1.225772
26 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550464 0.005440 0 0 0.000000 0.000000 0.000000 0.000000 0.555904 0 0 0 0 2.166048 3.917058 0.965542
27 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549792 0.006048 0 0 0.000000 0.000000 0.000000 0.000000 0.555840 0 0 0 0 2.362592 3.823322 0.951706
28 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549280 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.555072 0 0 0 0 1.950944 3.362182 0.960752
29 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548288 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 0.554176 0 0 0 0 2.359936 3.856604 0.974118
30 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549504 0.019104 0 0 0.000000 0.000000 0.000000 0.000000 0.568608 0 0 0 0 2.520064 4.240339 1.168805
31 32 dense off gpu-occlusion gpu-occlusion forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548864 0.004896 0 0 0.000000 0.000000 0.000000 0.000000 0.553760 0 0 0 0 2.161472 3.834713 0.975130
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550816,0.005472,0,0,0.000000,0.000000,0.000000,0.000000,0.556288,0,0,0,0,1.939008,3.284536,1.004745
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549696,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.555456,0,0,0,0,2.546304,4.006828,0.887805
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.551264,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,0.557152,0,0,0,0,1.947456,3.444247,1.175497
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550368,0.006368,0,0,0.000000,0.000000,0.000000,0.000000,0.556736,0,0,0,0,2.351296,3.871283,0.949842
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549248,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.555008,0,0,0,0,2.502880,3.970029,0.925676
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550592,0.006016,0,0,0.000000,0.000000,0.000000,0.000000,0.556608,0,0,0,0,1.956384,3.157947,0.808565
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550496,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,0.556320,0,0,0,0,2.495712,4.073484,0.977944
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550592,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,0.556128,0,0,0,0,1.969920,3.267915,0.905438
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548320,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.554112,0,0,0,0,2.213312,4.117387,0.831488
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.551136,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.556864,0,0,0,0,1.951296,3.139873,0.833692
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548928,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.554624,0,0,0,0,2.401920,4.063866,0.821089
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.553824,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.559552,0,0,0,0,1.943456,3.125446,0.823974
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548416,0.005152,0,0,0.000000,0.000000,0.000000,0.000000,0.553568,0,0,0,0,2.335072,3.614018,0.818604
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549056,0.012800,0,0,0.000000,0.000000,0.000000,0.000000,0.561856,0,0,0,0,1.976608,3.219453,0.885911
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548992,0.006304,0,0,0.000000,0.000000,0.000000,0.000000,0.555296,0,0,0,0,2.337760,3.822591,0.912611
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.559328,0.005120,0,0,0.000000,0.000000,0.000000,0.000000,0.564448,0,0,0,0,1.966816,3.293934,0.891061
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549568,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.555296,0,0,0,0,2.359744,3.726870,0.880531
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.548960,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,0.554656,0,0,0,0,1.938432,3.412988,1.029812
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.554464,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.560256,0,0,0,0,2.450368,4.116625,1.039832
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.553216,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,0.559104,0,0,0,0,1.939424,3.477079,1.048458
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.552576,0.005120,0,0,0.000000,0.000000,0.000000,0.000000,0.557696,0,0,0,0,2.454528,3.914174,0.931216
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550080,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,0.555840,0,0,0,0,1.934624,3.573250,1.206155
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.553376,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,0.559456,0,0,0,0,2.568192,3.953116,0.864130
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.551488,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.557216,0,0,0,0,2.521920,3.875230,0.942187
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.552160,0.005440,0,0,0.000000,0.000000,0.000000,0.000000,0.557600,0,0,0,0,1.961728,3.186340,0.826338
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550048,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.555840,0,0,0,0,2.496832,3.762277,0.898465
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.551104,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,0.556960,0,0,0,0,1.962368,3.163598,0.803375
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.550656,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,0.556000,0,0,0,0,2.497120,3.816699,0.952156
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549280,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,0.555072,0,0,0,0,1.962912,3.324892,0.928742
32,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,0,0,0,0,0,2,104294816,0.549408,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,0.555136,0,0,0,0,2.490496,3.824194,0.924394
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550816 0.005472 0 0 0.000000 0.000000 0.000000 0.000000 0.556288 0 0 0 0 1.939008 3.284536 1.004745
3 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549696 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.555456 0 0 0 0 2.546304 4.006828 0.887805
4 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.551264 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 0.557152 0 0 0 0 1.947456 3.444247 1.175497
5 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550368 0.006368 0 0 0.000000 0.000000 0.000000 0.000000 0.556736 0 0 0 0 2.351296 3.871283 0.949842
6 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549248 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.555008 0 0 0 0 2.502880 3.970029 0.925676
7 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550592 0.006016 0 0 0.000000 0.000000 0.000000 0.000000 0.556608 0 0 0 0 1.956384 3.157947 0.808565
8 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550496 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 0.556320 0 0 0 0 2.495712 4.073484 0.977944
9 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550592 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 0.556128 0 0 0 0 1.969920 3.267915 0.905438
10 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548320 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.554112 0 0 0 0 2.213312 4.117387 0.831488
11 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.551136 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.556864 0 0 0 0 1.951296 3.139873 0.833692
12 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548928 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.554624 0 0 0 0 2.401920 4.063866 0.821089
13 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.553824 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.559552 0 0 0 0 1.943456 3.125446 0.823974
14 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548416 0.005152 0 0 0.000000 0.000000 0.000000 0.000000 0.553568 0 0 0 0 2.335072 3.614018 0.818604
15 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549056 0.012800 0 0 0.000000 0.000000 0.000000 0.000000 0.561856 0 0 0 0 1.976608 3.219453 0.885911
16 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548992 0.006304 0 0 0.000000 0.000000 0.000000 0.000000 0.555296 0 0 0 0 2.337760 3.822591 0.912611
17 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.559328 0.005120 0 0 0.000000 0.000000 0.000000 0.000000 0.564448 0 0 0 0 1.966816 3.293934 0.891061
18 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549568 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.555296 0 0 0 0 2.359744 3.726870 0.880531
19 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.548960 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 0.554656 0 0 0 0 1.938432 3.412988 1.029812
20 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.554464 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.560256 0 0 0 0 2.450368 4.116625 1.039832
21 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.553216 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 0.559104 0 0 0 0 1.939424 3.477079 1.048458
22 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.552576 0.005120 0 0 0.000000 0.000000 0.000000 0.000000 0.557696 0 0 0 0 2.454528 3.914174 0.931216
23 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550080 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 0.555840 0 0 0 0 1.934624 3.573250 1.206155
24 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.553376 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 0.559456 0 0 0 0 2.568192 3.953116 0.864130
25 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.551488 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.557216 0 0 0 0 2.521920 3.875230 0.942187
26 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.552160 0.005440 0 0 0.000000 0.000000 0.000000 0.000000 0.557600 0 0 0 0 1.961728 3.186340 0.826338
27 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550048 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.555840 0 0 0 0 2.496832 3.762277 0.898465
28 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.551104 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 0.556960 0 0 0 0 1.962368 3.163598 0.803375
29 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.550656 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 0.556000 0 0 0 0 2.497120 3.816699 0.952156
30 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549280 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 0.555072 0 0 0 0 1.962912 3.324892 0.928742
31 32 dense off gpu-occlusion gpu-occlusion forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 0 0 0 0 0 2 104294816 0.549408 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 0.555136 0 0 0 0 2.490496 3.824194 0.924394
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.064416,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.070144,0,0,0,0,3.347904,4.977990,1.001028
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.064000,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,1.069664,0,0,0,0,3.011168,4.514877,0.958388
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.062656,0.004864,0,0,0.000000,0.000000,0.000000,0.000000,1.067520,0,0,0,0,2.735488,4.312375,1.087802
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072032,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.077760,0,0,0,0,3.496448,5.305288,0.976542
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.069216,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,1.074976,0,0,0,0,3.294976,4.769386,0.957426
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.068544,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.074240,0,0,0,0,2.453376,3.986409,1.042787
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.062912,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,1.068736,0,0,0,0,3.431648,5.228823,1.027138
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.070400,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.076096,0,0,0,0,3.304864,4.827907,0.972364
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.067328,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,1.073088,0,0,0,0,2.452640,3.991880,1.077102
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.073952,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,1.079744,0,0,0,0,3.441472,5.070013,1.071170
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.066304,0.004992,0,0,0.000000,0.000000,0.000000,0.000000,1.071296,0,0,0,0,2.745344,4.249556,0.917110
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.065696,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,1.071360,0,0,0,0,2.451840,3.962304,1.041254
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.063680,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.069376,0,0,0,0,3.188384,4.587102,0.959109
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.064672,0.005216,0,0,0.000000,0.000000,0.000000,0.000000,1.069888,0,0,0,0,2.717248,4.107799,0.931176
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.061568,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.067264,0,0,0,0,2.878496,4.617680,1.055992
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.064896,0.004960,0,0,0.000000,0.000000,0.000000,0.000000,1.069856,0,0,0,0,3.393632,4.990393,1.015114
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.060704,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.066432,0,0,0,0,3.052448,4.594286,0.987874
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.059136,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.064864,0,0,0,0,2.890560,4.454723,0.943600
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.064320,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,1.069856,0,0,0,0,3.569504,5.077488,0.862147
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.068288,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,1.073856,0,0,0,0,3.258208,4.708592,0.955061
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.062304,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.068032,0,0,0,0,2.749856,4.251860,1.063666
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.060512,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,1.065856,0,0,0,0,3.565216,5.151106,0.998633
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.061952,0.004992,0,0,0.000000,0.000000,0.000000,0.000000,1.066944,0,0,0,0,3.129184,4.659499,0.964790
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.059776,0.005152,0,0,0.000000,0.000000,0.000000,0.000000,1.064928,0,0,0,0,2.743360,4.259145,1.079135
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.061824,0.004896,0,0,0.000000,0.000000,0.000000,0.000000,1.066720,0,0,0,0,3.620768,5.169471,1.005456
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.061312,0.005216,0,0,0.000000,0.000000,0.000000,0.000000,1.066528,0,0,0,0,3.127776,4.625866,0.921829
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.059392,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.065088,0,0,0,0,2.750080,4.177320,0.988695
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.061792,0.004736,0,0,0.000000,0.000000,0.000000,0.000000,1.066528,0,0,0,0,3.422240,4.935139,0.932088
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.068544,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,1.074336,0,0,0,0,3.149632,4.681661,0.912150
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.061568,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,1.066848,0,0,0,0,2.752992,4.183582,0.986490
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.064416 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.070144 0 0 0 0 3.347904 4.977990 1.001028
3 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.064000 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 1.069664 0 0 0 0 3.011168 4.514877 0.958388
4 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.062656 0.004864 0 0 0.000000 0.000000 0.000000 0.000000 1.067520 0 0 0 0 2.735488 4.312375 1.087802
5 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072032 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.077760 0 0 0 0 3.496448 5.305288 0.976542
6 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.069216 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 1.074976 0 0 0 0 3.294976 4.769386 0.957426
7 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.068544 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.074240 0 0 0 0 2.453376 3.986409 1.042787
8 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.062912 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 1.068736 0 0 0 0 3.431648 5.228823 1.027138
9 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.070400 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.076096 0 0 0 0 3.304864 4.827907 0.972364
10 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.067328 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 1.073088 0 0 0 0 2.452640 3.991880 1.077102
11 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.073952 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 1.079744 0 0 0 0 3.441472 5.070013 1.071170
12 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.066304 0.004992 0 0 0.000000 0.000000 0.000000 0.000000 1.071296 0 0 0 0 2.745344 4.249556 0.917110
13 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.065696 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 1.071360 0 0 0 0 2.451840 3.962304 1.041254
14 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.063680 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.069376 0 0 0 0 3.188384 4.587102 0.959109
15 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.064672 0.005216 0 0 0.000000 0.000000 0.000000 0.000000 1.069888 0 0 0 0 2.717248 4.107799 0.931176
16 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.061568 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.067264 0 0 0 0 2.878496 4.617680 1.055992
17 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.064896 0.004960 0 0 0.000000 0.000000 0.000000 0.000000 1.069856 0 0 0 0 3.393632 4.990393 1.015114
18 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.060704 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.066432 0 0 0 0 3.052448 4.594286 0.987874
19 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.059136 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.064864 0 0 0 0 2.890560 4.454723 0.943600
20 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.064320 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 1.069856 0 0 0 0 3.569504 5.077488 0.862147
21 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.068288 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 1.073856 0 0 0 0 3.258208 4.708592 0.955061
22 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.062304 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.068032 0 0 0 0 2.749856 4.251860 1.063666
23 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.060512 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 1.065856 0 0 0 0 3.565216 5.151106 0.998633
24 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.061952 0.004992 0 0 0.000000 0.000000 0.000000 0.000000 1.066944 0 0 0 0 3.129184 4.659499 0.964790
25 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.059776 0.005152 0 0 0.000000 0.000000 0.000000 0.000000 1.064928 0 0 0 0 2.743360 4.259145 1.079135
26 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.061824 0.004896 0 0 0.000000 0.000000 0.000000 0.000000 1.066720 0 0 0 0 3.620768 5.169471 1.005456
27 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.061312 0.005216 0 0 0.000000 0.000000 0.000000 0.000000 1.066528 0 0 0 0 3.127776 4.625866 0.921829
28 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.059392 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.065088 0 0 0 0 2.750080 4.177320 0.988695
29 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.061792 0.004736 0 0 0.000000 0.000000 0.000000 0.000000 1.066528 0 0 0 0 3.422240 4.935139 0.932088
30 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.068544 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 1.074336 0 0 0 0 3.149632 4.681661 0.912150
31 64 dense off gpu-occlusion gpu-occlusion forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.061568 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 1.066848 0 0 0 0 2.752992 4.183582 0.986490
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.075360,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,1.080704,0,0,0,0,3.291872,4.930139,1.187119
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.071872,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,1.077408,0,0,0,0,2.812992,4.247572,0.975089
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.074816,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,1.080576,0,0,0,0,3.549376,4.935861,0.848000
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.077952,0.004768,0,0,0.000000,0.000000,0.000000,0.000000,1.082720,0,0,0,0,3.256864,4.647236,1.029632
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.075648,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,1.081600,0,0,0,0,2.794464,4.216323,0.990288
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.079680,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,1.085504,0,0,0,0,3.287968,4.994391,1.039531
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.078304,0.005600,0,0,0.000000,0.000000,0.000000,0.000000,1.083904,0,0,0,0,3.260000,4.911504,0.932990
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.074336,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,1.079680,0,0,0,0,2.937664,4.257781,0.906260
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.076096,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,1.081856,0,0,0,0,3.394592,4.777441,0.871985
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.077568,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.083264,0,0,0,0,3.257504,4.599426,0.966523
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.073312,0.004928,0,0,0.000000,0.000000,0.000000,0.000000,1.078240,0,0,0,0,2.930080,4.341219,0.970220
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.075040,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.080768,0,0,0,0,3.550816,5.090142,0.979117
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.073312,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,1.078720,0,0,0,0,3.252064,4.731455,1.032678
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.077440,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.083168,0,0,0,0,3.289504,5.000112,1.067694
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.076480,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.082208,0,0,0,0,3.234624,4.736374,0.977444
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.082752,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,1.088576,0,0,0,0,3.540320,5.577732,0.917140
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.075808,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,1.081568,0,0,0,0,3.284960,4.705927,1.020615
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.076576,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.082272,0,0,0,0,2.465056,3.921417,0.894307
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.070528,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,1.076384,0,0,0,0,3.244224,4.816956,1.009083
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.070400,0.005984,0,0,0.000000,0.000000,0.000000,0.000000,1.076384,0,0,0,0,3.279936,4.862652,1.044801
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.073056,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.078784,0,0,0,0,2.928448,4.361768,0.928612
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072544,0.004832,0,0,0.000000,0.000000,0.000000,0.000000,1.077376,0,0,0,0,3.154432,4.803371,1.069507
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.069152,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,1.074720,0,0,0,0,3.266368,4.770208,0.950543
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.067296,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,1.072960,0,0,0,0,2.746240,4.336690,0.950854
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.070944,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,1.076704,0,0,0,0,3.393504,4.882951,0.916379
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.067072,0.005312,0,0,0.000000,0.000000,0.000000,0.000000,1.072384,0,0,0,0,3.267264,4.707360,1.083073
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.075232,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,1.081184,0,0,0,0,2.931776,4.389310,0.941626
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072096,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,1.077856,0,0,0,0,3.389024,4.926963,0.951084
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.068896,0.006048,0,0,0.000000,0.000000,0.000000,0.000000,1.074944,0,0,0,0,3.256544,4.832336,1.199683
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.069088,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,1.074848,0,0,0,0,2.744416,4.340617,1.045091
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.075360 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 1.080704 0 0 0 0 3.291872 4.930139 1.187119
3 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.071872 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 1.077408 0 0 0 0 2.812992 4.247572 0.975089
4 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.074816 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 1.080576 0 0 0 0 3.549376 4.935861 0.848000
5 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.077952 0.004768 0 0 0.000000 0.000000 0.000000 0.000000 1.082720 0 0 0 0 3.256864 4.647236 1.029632
6 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.075648 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 1.081600 0 0 0 0 2.794464 4.216323 0.990288
7 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.079680 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 1.085504 0 0 0 0 3.287968 4.994391 1.039531
8 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.078304 0.005600 0 0 0.000000 0.000000 0.000000 0.000000 1.083904 0 0 0 0 3.260000 4.911504 0.932990
9 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.074336 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 1.079680 0 0 0 0 2.937664 4.257781 0.906260
10 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.076096 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 1.081856 0 0 0 0 3.394592 4.777441 0.871985
11 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.077568 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.083264 0 0 0 0 3.257504 4.599426 0.966523
12 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.073312 0.004928 0 0 0.000000 0.000000 0.000000 0.000000 1.078240 0 0 0 0 2.930080 4.341219 0.970220
13 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.075040 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.080768 0 0 0 0 3.550816 5.090142 0.979117
14 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.073312 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 1.078720 0 0 0 0 3.252064 4.731455 1.032678
15 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.077440 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.083168 0 0 0 0 3.289504 5.000112 1.067694
16 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.076480 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.082208 0 0 0 0 3.234624 4.736374 0.977444
17 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.082752 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 1.088576 0 0 0 0 3.540320 5.577732 0.917140
18 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.075808 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 1.081568 0 0 0 0 3.284960 4.705927 1.020615
19 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.076576 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.082272 0 0 0 0 2.465056 3.921417 0.894307
20 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.070528 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 1.076384 0 0 0 0 3.244224 4.816956 1.009083
21 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.070400 0.005984 0 0 0.000000 0.000000 0.000000 0.000000 1.076384 0 0 0 0 3.279936 4.862652 1.044801
22 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.073056 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.078784 0 0 0 0 2.928448 4.361768 0.928612
23 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072544 0.004832 0 0 0.000000 0.000000 0.000000 0.000000 1.077376 0 0 0 0 3.154432 4.803371 1.069507
24 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.069152 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 1.074720 0 0 0 0 3.266368 4.770208 0.950543
25 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.067296 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 1.072960 0 0 0 0 2.746240 4.336690 0.950854
26 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.070944 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 1.076704 0 0 0 0 3.393504 4.882951 0.916379
27 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.067072 0.005312 0 0 0.000000 0.000000 0.000000 0.000000 1.072384 0 0 0 0 3.267264 4.707360 1.083073
28 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.075232 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 1.081184 0 0 0 0 2.931776 4.389310 0.941626
29 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072096 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 1.077856 0 0 0 0 3.389024 4.926963 0.951084
30 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.068896 0.006048 0 0 0.000000 0.000000 0.000000 0.000000 1.074944 0 0 0 0 3.256544 4.832336 1.199683
31 64 dense off gpu-occlusion gpu-occlusion forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.069088 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 1.074848 0 0 0 0 2.744416 4.340617 1.045091
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.074464,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,1.080256,0,0,0,0,3.306880,4.743598,0.921879
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.076320,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.082016,0,0,0,0,2.942432,4.325048,0.871103
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072512,0.004704,0,0,0.000000,0.000000,0.000000,0.000000,1.077216,0,0,0,0,2.874400,4.612681,0.918012
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.073952,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,1.079840,0,0,0,0,3.308864,4.710175,0.911159
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.076224,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,1.082144,0,0,0,0,2.938080,4.368611,0.880010
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.071552,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,1.077504,0,0,0,0,2.892224,4.886457,1.044300
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.073440,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.079168,0,0,0,0,3.018720,4.751432,1.024282
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.075424,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,1.080768,0,0,0,0,2.949472,4.727327,1.201096
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072544,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.078272,0,0,0,0,2.893664,4.383248,0.961654
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072896,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,1.078848,0,0,0,0,3.302336,4.761021,0.965221
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.071136,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.076864,0,0,0,0,2.946848,4.319157,0.881773
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.073696,0.005600,0,0,0.000000,0.000000,0.000000,0.000000,1.079296,0,0,0,0,2.863488,4.485571,0.951094
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.071296,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,1.076960,0,0,0,0,3.311808,4.752845,0.951154
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.067872,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.073600,0,0,0,0,2.947840,4.344034,0.869190
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.067456,0.005632,0,0,0.000000,0.000000,0.000000,0.000000,1.073088,0,0,0,0,2.857536,4.624494,0.922310
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072320,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.078016,0,0,0,0,3.309216,4.753336,0.930065
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.068800,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,1.074528,0,0,0,0,2.947744,4.516169,0.882295
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.065984,0.005984,0,0,0.000000,0.000000,0.000000,0.000000,1.071968,0,0,0,0,2.855808,4.502773,0.949972
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.067808,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.073504,0,0,0,0,3.308640,4.753797,0.956965
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.071456,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,1.076992,0,0,0,0,2.976128,4.455365,0.924784
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.069312,0.005216,0,0,0.000000,0.000000,0.000000,0.000000,1.074528,0,0,0,0,3.463744,5.284097,0.907812
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.075136,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,1.080928,0,0,0,0,3.014688,4.875957,1.285545
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.069056,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,1.074752,0,0,0,0,2.935552,4.368661,0.871433
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072672,0.004992,0,0,0.000000,0.000000,0.000000,0.000000,1.077664,0,0,0,0,3.516480,4.963262,0.911830
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072352,0.005472,0,0,0.000000,0.000000,0.000000,0.000000,1.077824,0,0,0,0,3.251456,4.845239,1.234529
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.068096,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,1.073440,0,0,0,0,2.473184,3.994344,0.947567
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.067296,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,1.073248,0,0,0,0,3.527104,5.245775,1.191678
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.069920,0.005920,0,0,0.000000,0.000000,0.000000,0.000000,1.075840,0,0,0,0,3.263680,4.705727,0.947607
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.069312,0.005088,0,0,0.000000,0.000000,0.000000,0.000000,1.074400,0,0,0,0,2.931936,4.244666,0.908113
64,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,0,0,0,0,0,2,104297376,1.072928,0.004992,0,0,0.000000,0.000000,0.000000,0.000000,1.077920,0,0,0,0,3.345088,4.947562,1.022308
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.074464 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 1.080256 0 0 0 0 3.306880 4.743598 0.921879
3 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.076320 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.082016 0 0 0 0 2.942432 4.325048 0.871103
4 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072512 0.004704 0 0 0.000000 0.000000 0.000000 0.000000 1.077216 0 0 0 0 2.874400 4.612681 0.918012
5 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.073952 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 1.079840 0 0 0 0 3.308864 4.710175 0.911159
6 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.076224 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 1.082144 0 0 0 0 2.938080 4.368611 0.880010
7 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.071552 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 1.077504 0 0 0 0 2.892224 4.886457 1.044300
8 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.073440 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.079168 0 0 0 0 3.018720 4.751432 1.024282
9 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.075424 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 1.080768 0 0 0 0 2.949472 4.727327 1.201096
10 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072544 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.078272 0 0 0 0 2.893664 4.383248 0.961654
11 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072896 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 1.078848 0 0 0 0 3.302336 4.761021 0.965221
12 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.071136 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.076864 0 0 0 0 2.946848 4.319157 0.881773
13 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.073696 0.005600 0 0 0.000000 0.000000 0.000000 0.000000 1.079296 0 0 0 0 2.863488 4.485571 0.951094
14 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.071296 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 1.076960 0 0 0 0 3.311808 4.752845 0.951154
15 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.067872 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.073600 0 0 0 0 2.947840 4.344034 0.869190
16 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.067456 0.005632 0 0 0.000000 0.000000 0.000000 0.000000 1.073088 0 0 0 0 2.857536 4.624494 0.922310
17 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072320 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.078016 0 0 0 0 3.309216 4.753336 0.930065
18 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.068800 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 1.074528 0 0 0 0 2.947744 4.516169 0.882295
19 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.065984 0.005984 0 0 0.000000 0.000000 0.000000 0.000000 1.071968 0 0 0 0 2.855808 4.502773 0.949972
20 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.067808 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.073504 0 0 0 0 3.308640 4.753797 0.956965
21 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.071456 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 1.076992 0 0 0 0 2.976128 4.455365 0.924784
22 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.069312 0.005216 0 0 0.000000 0.000000 0.000000 0.000000 1.074528 0 0 0 0 3.463744 5.284097 0.907812
23 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.075136 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 1.080928 0 0 0 0 3.014688 4.875957 1.285545
24 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.069056 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 1.074752 0 0 0 0 2.935552 4.368661 0.871433
25 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072672 0.004992 0 0 0.000000 0.000000 0.000000 0.000000 1.077664 0 0 0 0 3.516480 4.963262 0.911830
26 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072352 0.005472 0 0 0.000000 0.000000 0.000000 0.000000 1.077824 0 0 0 0 3.251456 4.845239 1.234529
27 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.068096 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 1.073440 0 0 0 0 2.473184 3.994344 0.947567
28 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.067296 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 1.073248 0 0 0 0 3.527104 5.245775 1.191678
29 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.069920 0.005920 0 0 0.000000 0.000000 0.000000 0.000000 1.075840 0 0 0 0 3.263680 4.705727 0.947607
30 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.069312 0.005088 0 0 0.000000 0.000000 0.000000 0.000000 1.074400 0 0 0 0 2.931936 4.244666 0.908113
31 64 dense off gpu-occlusion gpu-occlusion forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 0 0 0 0 0 2 104297376 1.072928 0.004992 0 0 0.000000 0.000000 0.000000 0.000000 1.077920 0 0 0 0 3.345088 4.947562 1.022308
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.096224,0.004992,0,0,0.000000,0.000000,0.000000,0.000000,2.101216,0,0,0,0,3.518560,5.161676,0.924564
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.096896,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.102592,0,0,0,0,3.932544,5.748484,1.002611
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.099808,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.105504,0,0,0,0,4.487808,6.402737,0.963517
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.097376,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,2.102784,0,0,0,0,4.689344,6.575784,1.163004
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.098272,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.104000,0,0,0,0,4.632832,6.496163,1.127577
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.091936,0.005248,0,0,0.000000,0.000000,0.000000,0.000000,2.097184,0,0,0,0,4.803552,6.418447,0.885620
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.103072,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.108800,0,0,0,0,4.802944,6.334579,0.784990
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.098560,0.004864,0,0,0.000000,0.000000,0.000000,0.000000,2.103424,0,0,0,0,4.892288,6.348435,0.938120
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.098144,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.103904,0,0,0,0,4.098112,5.588231,0.882425
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.093952,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,2.099744,0,0,0,0,3.781056,5.184951,0.975009
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.097888,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,2.103232,0,0,0,0,4.320416,5.761909,0.912080
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.096320,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,2.102144,0,0,0,0,4.634400,6.522293,1.205744
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.084256,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.089952,0,0,0,0,4.616512,6.455527,1.151021
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.086304,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,2.091712,0,0,0,0,4.803840,6.771824,1.274815
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.091904,0.004864,0,0,0.000000,0.000000,0.000000,0.000000,2.096768,0,0,0,0,4.797216,6.698716,1.151321
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.091616,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.097312,0,0,0,0,4.822240,6.570023,1.049750
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.077664,0.005184,0,0,0.000000,0.000000,0.000000,0.000000,2.082848,0,0,0,0,4.777344,6.625918,1.159868
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.090016,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,2.095904,0,0,0,0,4.882208,6.644293,1.053999
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.081376,0.004992,0,0,0.000000,0.000000,0.000000,0.000000,2.086368,0,0,0,0,4.629344,6.115897,0.936015
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.081024,0.006176,0,0,0.000000,0.000000,0.000000,0.000000,2.087200,0,0,0,0,4.652704,6.074428,0.875672
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.084928,0.017344,0,0,0.000000,0.000000,0.000000,0.000000,2.102272,0,0,0,0,3.786208,5.202203,0.848941
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.087840,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,2.093504,0,0,0,0,3.892704,5.346516,0.914144
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.083200,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,2.089056,0,0,0,0,4.425280,5.992184,1.011508
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.087648,0.005344,0,0,0.000000,0.000000,0.000000,0.000000,2.092992,0,0,0,0,4.800896,6.289163,0.913192
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.102272,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.107968,0,0,0,0,4.659552,6.424899,1.192700
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.084160,0.004864,0,0,0.000000,0.000000,0.000000,0.000000,2.089024,0,0,0,0,4.661792,6.573259,1.170127
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.085664,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.091360,0,0,0,0,4.652256,6.510891,1.126004
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.083680,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.089408,0,0,0,0,4.650528,6.471257,1.153185
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.087680,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,2.092960,0,0,0,0,4.655584,6.251191,0.850454
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.083008,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.088736,0,0,0,0,3.809088,5.155825,0.828743
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.096224 0.004992 0 0 0.000000 0.000000 0.000000 0.000000 2.101216 0 0 0 0 3.518560 5.161676 0.924564
3 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.096896 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.102592 0 0 0 0 3.932544 5.748484 1.002611
4 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.099808 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.105504 0 0 0 0 4.487808 6.402737 0.963517
5 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.097376 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 2.102784 0 0 0 0 4.689344 6.575784 1.163004
6 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.098272 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.104000 0 0 0 0 4.632832 6.496163 1.127577
7 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.091936 0.005248 0 0 0.000000 0.000000 0.000000 0.000000 2.097184 0 0 0 0 4.803552 6.418447 0.885620
8 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.103072 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.108800 0 0 0 0 4.802944 6.334579 0.784990
9 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.098560 0.004864 0 0 0.000000 0.000000 0.000000 0.000000 2.103424 0 0 0 0 4.892288 6.348435 0.938120
10 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.098144 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.103904 0 0 0 0 4.098112 5.588231 0.882425
11 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.093952 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 2.099744 0 0 0 0 3.781056 5.184951 0.975009
12 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.097888 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 2.103232 0 0 0 0 4.320416 5.761909 0.912080
13 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.096320 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 2.102144 0 0 0 0 4.634400 6.522293 1.205744
14 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.084256 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.089952 0 0 0 0 4.616512 6.455527 1.151021
15 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.086304 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 2.091712 0 0 0 0 4.803840 6.771824 1.274815
16 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.091904 0.004864 0 0 0.000000 0.000000 0.000000 0.000000 2.096768 0 0 0 0 4.797216 6.698716 1.151321
17 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.091616 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.097312 0 0 0 0 4.822240 6.570023 1.049750
18 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.077664 0.005184 0 0 0.000000 0.000000 0.000000 0.000000 2.082848 0 0 0 0 4.777344 6.625918 1.159868
19 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.090016 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 2.095904 0 0 0 0 4.882208 6.644293 1.053999
20 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.081376 0.004992 0 0 0.000000 0.000000 0.000000 0.000000 2.086368 0 0 0 0 4.629344 6.115897 0.936015
21 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.081024 0.006176 0 0 0.000000 0.000000 0.000000 0.000000 2.087200 0 0 0 0 4.652704 6.074428 0.875672
22 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.084928 0.017344 0 0 0.000000 0.000000 0.000000 0.000000 2.102272 0 0 0 0 3.786208 5.202203 0.848941
23 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.087840 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 2.093504 0 0 0 0 3.892704 5.346516 0.914144
24 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.083200 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 2.089056 0 0 0 0 4.425280 5.992184 1.011508
25 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.087648 0.005344 0 0 0.000000 0.000000 0.000000 0.000000 2.092992 0 0 0 0 4.800896 6.289163 0.913192
26 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.102272 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.107968 0 0 0 0 4.659552 6.424899 1.192700
27 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.084160 0.004864 0 0 0.000000 0.000000 0.000000 0.000000 2.089024 0 0 0 0 4.661792 6.573259 1.170127
28 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.085664 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.091360 0 0 0 0 4.652256 6.510891 1.126004
29 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.083680 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.089408 0 0 0 0 4.650528 6.471257 1.153185
30 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.087680 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 2.092960 0 0 0 0 4.655584 6.251191 0.850454
31 128 dense off gpu-occlusion gpu-occlusion forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.083008 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.088736 0 0 0 0 3.809088 5.155825 0.828743
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.111424,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,2.116832,0,0,0,0,4.471008,5.880864,0.908644
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.114144,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.119872,0,0,0,0,4.541536,6.113912,1.014073
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.114848,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.120608,0,0,0,0,4.855008,6.576776,1.082853
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.109888,0.005408,0,0,0.000000,0.000000,0.000000,0.000000,2.115296,0,0,0,0,4.797120,6.420461,0.993223
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.114528,0.005440,0,0,0.000000,0.000000,0.000000,0.000000,2.119968,0,0,0,0,4.819200,6.454886,1.032367
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.124640,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,2.129920,0,0,0,0,4.841504,6.414761,0.966263
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.116928,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,2.122720,0,0,0,0,4.800640,6.553462,0.929834
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.116704,0.004992,0,0,0.000000,0.000000,0.000000,0.000000,2.121696,0,0,0,0,4.347488,5.864242,0.968738
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.118720,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.124448,0,0,0,0,4.127392,5.706704,0.967655
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.141504,0.005536,0,0,0.000000,0.000000,0.000000,0.000000,2.147040,0,0,0,0,3.696288,5.792587,1.025785
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.121952,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.127712,0,0,0,0,4.666400,6.432414,1.021157
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.118496,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.124192,0,0,0,0,4.405760,6.042789,1.019843
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.118624,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.124384,0,0,0,0,4.535744,6.198562,1.037177
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.109600,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.115328,0,0,0,0,4.519040,6.407316,0.935956
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.114048,0.006112,0,0,0.000000,0.000000,0.000000,0.000000,2.120160,0,0,0,0,4.951264,6.583217,0.952637
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.105856,0.005376,0,0,0.000000,0.000000,0.000000,0.000000,2.111232,0,0,0,0,4.826336,6.326874,0.883757
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.102592,0.005152,0,0,0.000000,0.000000,0.000000,0.000000,2.107744,0,0,0,0,4.241760,5.910509,1.160850
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.107744,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.113504,0,0,0,0,4.525472,6.227136,1.167893
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.107200,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.112928,0,0,0,0,4.560672,6.168676,0.921799
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.099136,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,2.105088,0,0,0,0,3.898208,5.895290,0.974398
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.117504,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.123264,0,0,0,0,4.537888,6.268263,0.969589
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.113920,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,2.119872,0,0,0,0,4.541120,6.136245,0.996911
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.121856,0.005152,0,0,0.000000,0.000000,0.000000,0.000000,2.127008,0,0,0,0,4.534048,6.516512,1.249597
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.106304,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,2.112128,0,0,0,0,4.510528,6.399070,1.186137
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.105920,0.005568,0,0,0.000000,0.000000,0.000000,0.000000,2.111488,0,0,0,0,4.486496,6.667227,1.183272
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.128608,0.005728,0,0,0.000000,0.000000,0.000000,0.000000,2.134336,0,0,0,0,4.540448,6.964788,1.454844
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.098016,0.004736,0,0,0.000000,0.000000,0.000000,0.000000,2.102752,0,0,0,0,4.407712,6.976400,1.343104
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.102848,0.006080,0,0,0.000000,0.000000,0.000000,0.000000,2.108928,0,0,0,0,4.514016,6.927708,1.476966
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.105248,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,2.110912,0,0,0,0,4.521056,6.864739,1.466086
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.107232,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,2.113024,0,0,0,0,4.521344,6.927758,1.529405
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.111424 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 2.116832 0 0 0 0 4.471008 5.880864 0.908644
3 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.114144 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.119872 0 0 0 0 4.541536 6.113912 1.014073
4 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.114848 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.120608 0 0 0 0 4.855008 6.576776 1.082853
5 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.109888 0.005408 0 0 0.000000 0.000000 0.000000 0.000000 2.115296 0 0 0 0 4.797120 6.420461 0.993223
6 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.114528 0.005440 0 0 0.000000 0.000000 0.000000 0.000000 2.119968 0 0 0 0 4.819200 6.454886 1.032367
7 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.124640 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 2.129920 0 0 0 0 4.841504 6.414761 0.966263
8 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.116928 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 2.122720 0 0 0 0 4.800640 6.553462 0.929834
9 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.116704 0.004992 0 0 0.000000 0.000000 0.000000 0.000000 2.121696 0 0 0 0 4.347488 5.864242 0.968738
10 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.118720 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.124448 0 0 0 0 4.127392 5.706704 0.967655
11 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.141504 0.005536 0 0 0.000000 0.000000 0.000000 0.000000 2.147040 0 0 0 0 3.696288 5.792587 1.025785
12 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.121952 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.127712 0 0 0 0 4.666400 6.432414 1.021157
13 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.118496 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.124192 0 0 0 0 4.405760 6.042789 1.019843
14 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.118624 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.124384 0 0 0 0 4.535744 6.198562 1.037177
15 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.109600 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.115328 0 0 0 0 4.519040 6.407316 0.935956
16 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.114048 0.006112 0 0 0.000000 0.000000 0.000000 0.000000 2.120160 0 0 0 0 4.951264 6.583217 0.952637
17 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.105856 0.005376 0 0 0.000000 0.000000 0.000000 0.000000 2.111232 0 0 0 0 4.826336 6.326874 0.883757
18 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.102592 0.005152 0 0 0.000000 0.000000 0.000000 0.000000 2.107744 0 0 0 0 4.241760 5.910509 1.160850
19 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.107744 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.113504 0 0 0 0 4.525472 6.227136 1.167893
20 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.107200 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.112928 0 0 0 0 4.560672 6.168676 0.921799
21 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.099136 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 2.105088 0 0 0 0 3.898208 5.895290 0.974398
22 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.117504 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.123264 0 0 0 0 4.537888 6.268263 0.969589
23 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.113920 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 2.119872 0 0 0 0 4.541120 6.136245 0.996911
24 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.121856 0.005152 0 0 0.000000 0.000000 0.000000 0.000000 2.127008 0 0 0 0 4.534048 6.516512 1.249597
25 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.106304 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 2.112128 0 0 0 0 4.510528 6.399070 1.186137
26 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.105920 0.005568 0 0 0.000000 0.000000 0.000000 0.000000 2.111488 0 0 0 0 4.486496 6.667227 1.183272
27 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.128608 0.005728 0 0 0.000000 0.000000 0.000000 0.000000 2.134336 0 0 0 0 4.540448 6.964788 1.454844
28 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.098016 0.004736 0 0 0.000000 0.000000 0.000000 0.000000 2.102752 0 0 0 0 4.407712 6.976400 1.343104
29 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.102848 0.006080 0 0 0.000000 0.000000 0.000000 0.000000 2.108928 0 0 0 0 4.514016 6.927708 1.476966
30 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.105248 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 2.110912 0 0 0 0 4.521056 6.864739 1.466086
31 128 dense off gpu-occlusion gpu-occlusion forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.107232 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 2.113024 0 0 0 0 4.521344 6.927758 1.529405
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.121696,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,2.127552,0,0,0,0,4.577888,6.029944,0.894387
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.106048,0.004768,0,0,0.000000,0.000000,0.000000,0.000000,2.110816,0,0,0,0,3.897440,5.831640,0.954700
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.127680,0.005664,0,0,0.000000,0.000000,0.000000,0.000000,2.133344,0,0,0,0,4.781536,6.254427,0.930525
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.121664,0.004800,0,0,0.000000,0.000000,0.000000,0.000000,2.126464,0,0,0,0,4.304256,5.789000,0.936907
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.116992,0.005248,0,0,0.000000,0.000000,0.000000,0.000000,2.122240,0,0,0,0,3.990624,5.532075,0.998333
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.115776,0.005184,0,0,0.000000,0.000000,0.000000,0.000000,2.120960,0,0,0,0,4.268256,5.749345,1.019413
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.114720,0.005856,0,0,0.000000,0.000000,0.000000,0.000000,2.120576,0,0,0,0,4.559648,6.237796,0.882796
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.108544,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,2.113824,0,0,0,0,3.926784,5.442987,0.951555
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.124160,0.004864,0,0,0.000000,0.000000,0.000000,0.000000,2.129024,0,0,0,0,4.548544,6.113812,1.010807
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.110656,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,2.116608,0,0,0,0,4.400000,6.075230,1.081250
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.113920,0.005600,0,0,0.000000,0.000000,0.000000,0.000000,2.119520,0,0,0,0,4.524320,6.383431,1.037106
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.119744,0.005952,0,0,0.000000,0.000000,0.000000,0.000000,2.125696,0,0,0,0,4.537472,6.340229,0.972915
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.111072,0.004800,0,0,0.000000,0.000000,0.000000,0.000000,2.115872,0,0,0,0,4.813760,6.237005,0.887865
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.106240,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.111936,0,0,0,0,3.975328,5.242178,0.862878
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.096416,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,2.102208,0,0,0,0,4.663680,6.353174,1.152925
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.103328,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,2.109120,0,0,0,0,3.934912,5.818847,1.163996
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.099840,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,2.105632,0,0,0,0,4.277632,6.126086,1.173303
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.102560,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,2.108352,0,0,0,0,4.330432,6.186830,1.154137
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.098080,0.005280,0,0,0.000000,0.000000,0.000000,0.000000,2.103360,0,0,0,0,4.642752,6.404030,1.118850
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.114400,0.005888,0,0,0.000000,0.000000,0.000000,0.000000,2.120288,0,0,0,0,4.402880,6.248417,1.137876
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.106528,0.005504,0,0,0.000000,0.000000,0.000000,0.000000,2.112032,0,0,0,0,4.624928,6.527453,1.200294
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.101376,0.004736,0,0,0.000000,0.000000,0.000000,0.000000,2.106112,0,0,0,0,4.539072,6.414189,1.188652
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.095744,0.005824,0,0,0.000000,0.000000,0.000000,0.000000,2.101568,0,0,0,0,4.063232,5.860515,1.120163
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.107552,0.004832,0,0,0.000000,0.000000,0.000000,0.000000,2.112384,0,0,0,0,4.376160,6.159879,1.094404
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.099424,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.105184,0,0,0,0,4.544000,6.363914,1.107499
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.102976,0.005696,0,0,0.000000,0.000000,0.000000,0.000000,2.108672,0,0,0,0,3.911200,5.785433,1.190866
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.111488,0.005024,0,0,0.000000,0.000000,0.000000,0.000000,2.116512,0,0,0,0,4.653184,6.502776,1.147745
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.102752,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.108512,0,0,0,0,4.519840,6.343285,1.172952
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.105056,0.005760,0,0,0.000000,0.000000,0.000000,0.000000,2.110816,0,0,0,0,4.518496,6.401896,1.148155
128,dense,off,gpu-occlusion,gpu-occlusion,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,0,0,0,0,0,2,104302496,2.100096,0.005792,0,0,0.000000,0.000000,0.000000,0.000000,2.105888,0,0,0,0,4.775264,6.809084,1.131344
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.121696 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 2.127552 0 0 0 0 4.577888 6.029944 0.894387
3 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.106048 0.004768 0 0 0.000000 0.000000 0.000000 0.000000 2.110816 0 0 0 0 3.897440 5.831640 0.954700
4 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.127680 0.005664 0 0 0.000000 0.000000 0.000000 0.000000 2.133344 0 0 0 0 4.781536 6.254427 0.930525
5 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.121664 0.004800 0 0 0.000000 0.000000 0.000000 0.000000 2.126464 0 0 0 0 4.304256 5.789000 0.936907
6 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.116992 0.005248 0 0 0.000000 0.000000 0.000000 0.000000 2.122240 0 0 0 0 3.990624 5.532075 0.998333
7 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.115776 0.005184 0 0 0.000000 0.000000 0.000000 0.000000 2.120960 0 0 0 0 4.268256 5.749345 1.019413
8 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.114720 0.005856 0 0 0.000000 0.000000 0.000000 0.000000 2.120576 0 0 0 0 4.559648 6.237796 0.882796
9 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.108544 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 2.113824 0 0 0 0 3.926784 5.442987 0.951555
10 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.124160 0.004864 0 0 0.000000 0.000000 0.000000 0.000000 2.129024 0 0 0 0 4.548544 6.113812 1.010807
11 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.110656 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 2.116608 0 0 0 0 4.400000 6.075230 1.081250
12 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.113920 0.005600 0 0 0.000000 0.000000 0.000000 0.000000 2.119520 0 0 0 0 4.524320 6.383431 1.037106
13 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.119744 0.005952 0 0 0.000000 0.000000 0.000000 0.000000 2.125696 0 0 0 0 4.537472 6.340229 0.972915
14 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.111072 0.004800 0 0 0.000000 0.000000 0.000000 0.000000 2.115872 0 0 0 0 4.813760 6.237005 0.887865
15 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.106240 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.111936 0 0 0 0 3.975328 5.242178 0.862878
16 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.096416 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 2.102208 0 0 0 0 4.663680 6.353174 1.152925
17 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.103328 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 2.109120 0 0 0 0 3.934912 5.818847 1.163996
18 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.099840 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 2.105632 0 0 0 0 4.277632 6.126086 1.173303
19 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.102560 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 2.108352 0 0 0 0 4.330432 6.186830 1.154137
20 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.098080 0.005280 0 0 0.000000 0.000000 0.000000 0.000000 2.103360 0 0 0 0 4.642752 6.404030 1.118850
21 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.114400 0.005888 0 0 0.000000 0.000000 0.000000 0.000000 2.120288 0 0 0 0 4.402880 6.248417 1.137876
22 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.106528 0.005504 0 0 0.000000 0.000000 0.000000 0.000000 2.112032 0 0 0 0 4.624928 6.527453 1.200294
23 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.101376 0.004736 0 0 0.000000 0.000000 0.000000 0.000000 2.106112 0 0 0 0 4.539072 6.414189 1.188652
24 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.095744 0.005824 0 0 0.000000 0.000000 0.000000 0.000000 2.101568 0 0 0 0 4.063232 5.860515 1.120163
25 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.107552 0.004832 0 0 0.000000 0.000000 0.000000 0.000000 2.112384 0 0 0 0 4.376160 6.159879 1.094404
26 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.099424 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.105184 0 0 0 0 4.544000 6.363914 1.107499
27 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.102976 0.005696 0 0 0.000000 0.000000 0.000000 0.000000 2.108672 0 0 0 0 3.911200 5.785433 1.190866
28 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.111488 0.005024 0 0 0.000000 0.000000 0.000000 0.000000 2.116512 0 0 0 0 4.653184 6.502776 1.147745
29 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.102752 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.108512 0 0 0 0 4.519840 6.343285 1.172952
30 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.105056 0.005760 0 0 0.000000 0.000000 0.000000 0.000000 2.110816 0 0 0 0 4.518496 6.401896 1.148155
31 128 dense off gpu-occlusion gpu-occlusion forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 0 0 0 0 0 2 104302496 2.100096 0.005792 0 0 0.000000 0.000000 0.000000 0.000000 2.105888 0 0 0 0 4.775264 6.809084 1.131344
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,on,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036192,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036192,0,0,0,0,1.594560,2.938533,0.848701
0,dense,on,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036192,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036192,0,0,0,0,1.815424,3.093375,0.968426
0,dense,on,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035936,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035936,0,0,0,0,1.410976,3.013013,1.074968
0,dense,on,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036992,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036992,0,0,0,0,1.513440,3.812341,1.096258
0,dense,on,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035552,0,0,0,0,1.682848,3.030477,0.886382
0,dense,on,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036384,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036384,0,0,0,0,1.426272,2.739267,0.876113
0,dense,on,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035488,0,0,0,0,1.261408,2.823235,0.921999
0,dense,on,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036640,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036640,0,0,0,0,1.481184,2.770897,0.878066
0,dense,on,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035648,0,0,0,0,1.426176,3.112081,0.949070
0,dense,on,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036544,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036544,0,0,0,0,1.545984,3.188515,1.215082
0,dense,on,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036768,0,0,0,0,1.810176,3.304904,0.987253
0,dense,on,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036640,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036640,0,0,0,0,1.854976,3.364627,1.056984
0,dense,on,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036032,0,0,0,0,1.817216,3.439337,1.153086
0,dense,on,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036576,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036576,0,0,0,0,1.785888,3.622864,1.342883
0,dense,on,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036416,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036416,0,0,0,0,1.819936,3.593007,1.244467
0,dense,on,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035904,0,0,0,0,1.539008,3.197281,1.202879
0,dense,on,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036000,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036000,0,0,0,0,1.751488,3.672157,1.411162
0,dense,on,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035744,0,0,0,0,1.538528,3.558753,1.474681
0,dense,on,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037632,0,0,0,0,1.891040,4.017989,1.545405
0,dense,on,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036832,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036832,0,0,0,0,1.279200,3.126277,1.314640
0,dense,on,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036768,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036768,0,0,0,0,1.647072,3.545588,1.304992
0,dense,on,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.037056,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.037056,0,0,0,0,1.435008,3.456240,1.354034
0,dense,on,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036864,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036864,0,0,0,0,1.262336,3.076563,1.298559
0,dense,on,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036544,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036544,0,0,0,0,1.262016,2.616836,0.938020
0,dense,on,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036128,0,0,0,0,1.825024,3.138410,0.973236
0,dense,on,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036704,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036704,0,0,0,0,1.539904,2.878630,0.899497
0,dense,on,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036064,0,0,0,0,1.278976,2.578534,0.902182
0,dense,on,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035936,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035936,0,0,0,0,1.451552,2.774855,0.905468
0,dense,on,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036448,0,0,0,0,1.832064,3.095589,0.848581
0,dense,on,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035648,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035648,0,0,0,0,1.816960,3.112902,0.915066
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense on direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036192 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036192 0 0 0 0 1.594560 2.938533 0.848701
3 0 dense on direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036192 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036192 0 0 0 0 1.815424 3.093375 0.968426
4 0 dense on direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035936 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035936 0 0 0 0 1.410976 3.013013 1.074968
5 0 dense on direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036992 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036992 0 0 0 0 1.513440 3.812341 1.096258
6 0 dense on direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035552 0 0 0 0 1.682848 3.030477 0.886382
7 0 dense on direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036384 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036384 0 0 0 0 1.426272 2.739267 0.876113
8 0 dense on direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035488 0 0 0 0 1.261408 2.823235 0.921999
9 0 dense on direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036640 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036640 0 0 0 0 1.481184 2.770897 0.878066
10 0 dense on direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035648 0 0 0 0 1.426176 3.112081 0.949070
11 0 dense on direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036544 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036544 0 0 0 0 1.545984 3.188515 1.215082
12 0 dense on direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036768 0 0 0 0 1.810176 3.304904 0.987253
13 0 dense on direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036640 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036640 0 0 0 0 1.854976 3.364627 1.056984
14 0 dense on direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036032 0 0 0 0 1.817216 3.439337 1.153086
15 0 dense on direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036576 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036576 0 0 0 0 1.785888 3.622864 1.342883
16 0 dense on direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036416 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036416 0 0 0 0 1.819936 3.593007 1.244467
17 0 dense on direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035904 0 0 0 0 1.539008 3.197281 1.202879
18 0 dense on direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036000 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036000 0 0 0 0 1.751488 3.672157 1.411162
19 0 dense on direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035744 0 0 0 0 1.538528 3.558753 1.474681
20 0 dense on direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037632 0 0 0 0 1.891040 4.017989 1.545405
21 0 dense on direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036832 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036832 0 0 0 0 1.279200 3.126277 1.314640
22 0 dense on direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036768 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036768 0 0 0 0 1.647072 3.545588 1.304992
23 0 dense on direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.037056 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.037056 0 0 0 0 1.435008 3.456240 1.354034
24 0 dense on direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036864 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036864 0 0 0 0 1.262336 3.076563 1.298559
25 0 dense on direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036544 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036544 0 0 0 0 1.262016 2.616836 0.938020
26 0 dense on direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036128 0 0 0 0 1.825024 3.138410 0.973236
27 0 dense on direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036704 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036704 0 0 0 0 1.539904 2.878630 0.899497
28 0 dense on direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036064 0 0 0 0 1.278976 2.578534 0.902182
29 0 dense on direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035936 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035936 0 0 0 0 1.451552 2.774855 0.905468
30 0 dense on direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036448 0 0 0 0 1.832064 3.095589 0.848581
31 0 dense on direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035648 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035648 0 0 0 0 1.816960 3.112902 0.915066
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,on,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035968,0,0,0,0,1.476768,2.960845,0.818494
0,dense,on,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036224,0,0,0,0,1.386304,2.677210,0.842550
0,dense,on,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036160,0,0,0,0,1.615616,2.900822,0.814056
0,dense,on,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036576,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036576,0,0,0,0,1.813952,3.019636,0.895469
0,dense,on,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035552,0,0,0,0,1.269504,2.694463,0.909716
0,dense,on,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035904,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035904,0,0,0,0,1.417568,2.760507,0.835436
0,dense,on,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036128,0,0,0,0,1.531744,3.038041,0.848160
0,dense,on,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035616,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035616,0,0,0,0,1.610816,2.804130,0.819166
0,dense,on,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035872,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035872,0,0,0,0,1.431648,3.216177,0.901561
0,dense,on,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036480,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036480,0,0,0,0,1.414816,3.010919,0.931286
0,dense,on,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036288,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036288,0,0,0,0,1.816512,3.150223,0.898996
0,dense,on,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036160,0,0,0,0,1.286816,2.849004,1.049660
0,dense,on,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035392,0,0,0,0,1.265760,2.731061,1.013912
0,dense,on,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036448,0,0,0,0,1.532448,3.088896,1.031176
0,dense,on,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036096,0,0,0,0,1.479200,3.273995,1.101238
0,dense,on,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035776,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035776,0,0,0,0,1.686240,3.419480,1.118720
0,dense,on,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036288,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036288,0,0,0,0,1.606336,2.766999,0.834654
0,dense,on,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036160,0,0,0,0,1.430848,3.457492,1.055200
0,dense,on,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036032,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036032,0,0,0,0,1.290272,2.787458,1.069177
0,dense,on,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036192,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036192,0,0,0,0,2.044320,3.694599,1.101598
0,dense,on,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035392,0,0,0,0,1.274784,2.733777,1.014785
0,dense,on,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036256,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036256,0,0,0,0,1.981120,3.529267,1.049549
0,dense,on,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036064,0,0,0,0,1.261920,2.727615,0.996179
0,dense,on,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035680,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035680,0,0,0,0,1.265088,2.686017,0.996850
0,dense,on,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036288,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036288,0,0,0,0,1.532736,3.341984,1.314980
0,dense,on,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035520,0,0,0,0,1.412608,3.319522,1.319208
0,dense,on,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035008,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035008,0,0,0,0,1.532032,3.371389,1.303017
0,dense,on,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036224,0,0,0,0,1.483968,3.337496,1.318757
0,dense,on,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035488,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035488,0,0,0,0,1.691648,3.105258,0.887283
0,dense,on,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035392,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035392,0,0,0,0,1.581152,2.797116,0.842730
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense on direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035968 0 0 0 0 1.476768 2.960845 0.818494
3 0 dense on direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036224 0 0 0 0 1.386304 2.677210 0.842550
4 0 dense on direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036160 0 0 0 0 1.615616 2.900822 0.814056
5 0 dense on direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036576 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036576 0 0 0 0 1.813952 3.019636 0.895469
6 0 dense on direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035552 0 0 0 0 1.269504 2.694463 0.909716
7 0 dense on direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035904 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035904 0 0 0 0 1.417568 2.760507 0.835436
8 0 dense on direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036128 0 0 0 0 1.531744 3.038041 0.848160
9 0 dense on direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035616 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035616 0 0 0 0 1.610816 2.804130 0.819166
10 0 dense on direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035872 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035872 0 0 0 0 1.431648 3.216177 0.901561
11 0 dense on direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036480 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036480 0 0 0 0 1.414816 3.010919 0.931286
12 0 dense on direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036288 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036288 0 0 0 0 1.816512 3.150223 0.898996
13 0 dense on direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036160 0 0 0 0 1.286816 2.849004 1.049660
14 0 dense on direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035392 0 0 0 0 1.265760 2.731061 1.013912
15 0 dense on direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036448 0 0 0 0 1.532448 3.088896 1.031176
16 0 dense on direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036096 0 0 0 0 1.479200 3.273995 1.101238
17 0 dense on direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035776 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035776 0 0 0 0 1.686240 3.419480 1.118720
18 0 dense on direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036288 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036288 0 0 0 0 1.606336 2.766999 0.834654
19 0 dense on direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036160 0 0 0 0 1.430848 3.457492 1.055200
20 0 dense on direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036032 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036032 0 0 0 0 1.290272 2.787458 1.069177
21 0 dense on direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036192 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036192 0 0 0 0 2.044320 3.694599 1.101598
22 0 dense on direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035392 0 0 0 0 1.274784 2.733777 1.014785
23 0 dense on direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036256 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036256 0 0 0 0 1.981120 3.529267 1.049549
24 0 dense on direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036064 0 0 0 0 1.261920 2.727615 0.996179
25 0 dense on direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035680 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035680 0 0 0 0 1.265088 2.686017 0.996850
26 0 dense on direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036288 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036288 0 0 0 0 1.532736 3.341984 1.314980
27 0 dense on direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035520 0 0 0 0 1.412608 3.319522 1.319208
28 0 dense on direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035008 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035008 0 0 0 0 1.532032 3.371389 1.303017
29 0 dense on direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036224 0 0 0 0 1.483968 3.337496 1.318757
30 0 dense on direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035488 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035488 0 0 0 0 1.691648 3.105258 0.887283
31 0 dense on direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035392 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035392 0 0 0 0 1.581152 2.797116 0.842730
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,on,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035872,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035872,0,0,0,0,1.407488,2.853844,0.922100
0,dense,on,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036416,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036416,0,0,0,0,1.280064,2.541114,0.940544
0,dense,on,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036096,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036096,0,0,0,0,1.821728,3.583079,1.303328
0,dense,on,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036320,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036320,0,0,0,0,1.280576,2.754535,1.053387
0,dense,on,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036224,0,0,0,0,2.212704,3.840204,1.161872
0,dense,on,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035744,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035744,0,0,0,0,1.302752,2.920228,1.125433
0,dense,on,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035424,0,0,0,0,2.325920,3.952466,1.030564
0,dense,on,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.060160,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.060160,0,0,0,0,1.317152,2.964923,1.179936
0,dense,on,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035552,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035552,0,0,0,0,1.831744,3.387500,1.129751
0,dense,on,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036224,0,0,0,0,1.414880,3.038151,1.099504
0,dense,on,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036288,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036288,0,0,0,0,2.237184,3.700380,1.102409
0,dense,on,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036608,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036608,0,0,0,0,1.270944,2.971205,1.292508
0,dense,on,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035520,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035520,0,0,0,0,1.840736,3.425341,1.104123
0,dense,on,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035968,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035968,0,0,0,0,1.269440,3.021189,1.317275
0,dense,on,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035712,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035712,0,0,0,0,1.412896,2.829888,0.998784
0,dense,on,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036128,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036128,0,0,0,0,1.467200,3.159991,1.133328
0,dense,on,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036448,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036448,0,0,0,0,1.570304,3.238969,1.052906
0,dense,on,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036192,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036192,0,0,0,0,1.816992,3.577358,1.281167
0,dense,on,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036544,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036544,0,0,0,0,1.601312,3.175109,1.089685
0,dense,on,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036320,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036320,0,0,0,0,1.825728,3.689900,1.233217
0,dense,on,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035296,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035296,0,0,0,0,1.503744,3.047188,0.962005
0,dense,on,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035424,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035424,0,0,0,0,1.820640,3.597055,1.269154
0,dense,on,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036320,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036320,0,0,0,0,1.577344,3.228580,1.048227
0,dense,on,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036224,0,0,0,0,1.819840,3.410704,1.105094
0,dense,on,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036480,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036480,0,0,0,0,1.570464,3.141877,0.981141
0,dense,on,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036064,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036064,0,0,0,0,1.819904,3.297480,1.023962
0,dense,on,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035328,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035328,0,0,0,0,1.279712,2.760287,0.962024
0,dense,on,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.035616,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.035616,0,0,0,0,1.525024,2.854605,0.975631
0,dense,on,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036416,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036416,0,0,0,0,1.581120,3.099016,1.009845
0,dense,on,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,10,59577472,0.036224,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.036224,0,0,0,0,1.494208,3.047378,0.969559
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense on direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035872 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035872 0 0 0 0 1.407488 2.853844 0.922100
3 0 dense on direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036416 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036416 0 0 0 0 1.280064 2.541114 0.940544
4 0 dense on direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036096 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036096 0 0 0 0 1.821728 3.583079 1.303328
5 0 dense on direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036320 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036320 0 0 0 0 1.280576 2.754535 1.053387
6 0 dense on direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036224 0 0 0 0 2.212704 3.840204 1.161872
7 0 dense on direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035744 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035744 0 0 0 0 1.302752 2.920228 1.125433
8 0 dense on direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035424 0 0 0 0 2.325920 3.952466 1.030564
9 0 dense on direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.060160 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.060160 0 0 0 0 1.317152 2.964923 1.179936
10 0 dense on direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035552 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035552 0 0 0 0 1.831744 3.387500 1.129751
11 0 dense on direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036224 0 0 0 0 1.414880 3.038151 1.099504
12 0 dense on direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036288 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036288 0 0 0 0 2.237184 3.700380 1.102409
13 0 dense on direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036608 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036608 0 0 0 0 1.270944 2.971205 1.292508
14 0 dense on direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035520 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035520 0 0 0 0 1.840736 3.425341 1.104123
15 0 dense on direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035968 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035968 0 0 0 0 1.269440 3.021189 1.317275
16 0 dense on direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035712 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035712 0 0 0 0 1.412896 2.829888 0.998784
17 0 dense on direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036128 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036128 0 0 0 0 1.467200 3.159991 1.133328
18 0 dense on direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036448 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036448 0 0 0 0 1.570304 3.238969 1.052906
19 0 dense on direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036192 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036192 0 0 0 0 1.816992 3.577358 1.281167
20 0 dense on direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036544 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036544 0 0 0 0 1.601312 3.175109 1.089685
21 0 dense on direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036320 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036320 0 0 0 0 1.825728 3.689900 1.233217
22 0 dense on direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035296 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035296 0 0 0 0 1.503744 3.047188 0.962005
23 0 dense on direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035424 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035424 0 0 0 0 1.820640 3.597055 1.269154
24 0 dense on direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036320 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036320 0 0 0 0 1.577344 3.228580 1.048227
25 0 dense on direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036224 0 0 0 0 1.819840 3.410704 1.105094
26 0 dense on direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036480 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036480 0 0 0 0 1.570464 3.141877 0.981141
27 0 dense on direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036064 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036064 0 0 0 0 1.819904 3.297480 1.023962
28 0 dense on direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035328 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035328 0 0 0 0 1.279712 2.760287 0.962024
29 0 dense on direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.035616 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.035616 0 0 0 0 1.525024 2.854605 0.975631
30 0 dense on direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036416 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036416 0 0 0 0 1.581120 3.099016 1.009845
31 0 dense on direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 10 59577472 0.036224 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.036224 0 0 0 0 1.494208 3.047378 0.969559
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,on,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129536,0.000000,0,0,0.000000,0.017824,0.017824,0.000000,0.129536,0,0,0,0,1.387136,2.749477,0.926007
4,dense,on,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129664,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.129664,0,0,0,0,2.160448,3.706622,1.001489
4,dense,on,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129024,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,0.129024,0,0,0,0,1.650496,3.097943,0.910858
4,dense,on,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128800,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.128800,0,0,0,0,2.162592,3.809195,1.089455
4,dense,on,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129248,0.000000,0,0,0.000000,0.017472,0.017472,0.000000,0.129248,0,0,0,0,1.381952,3.119995,1.138297
4,dense,on,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128736,0.000000,0,0,0.000000,0.016384,0.016384,0.000000,0.128736,0,0,0,0,2.155104,3.689520,0.957586
4,dense,on,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129088,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.129088,0,0,0,0,1.383328,3.126308,1.023410
4,dense,on,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.130112,0.000000,0,0,0.000000,0.016608,0.016608,0.000000,0.130112,0,0,0,0,2.162272,3.689550,0.960482
4,dense,on,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129504,0.000000,0,0,0.000000,0.017664,0.017664,0.000000,0.129504,0,0,0,0,1.511616,4.826213,2.441385
4,dense,on,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129824,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.129824,0,0,0,0,1.505600,3.117661,0.985328
4,dense,on,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129312,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,0.129312,0,0,0,0,1.700064,3.199906,0.921378
4,dense,on,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129920,0.000000,0,0,0.000000,0.016384,0.016384,0.000000,0.129920,0,0,0,0,1.557344,3.272473,1.021507
4,dense,on,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129536,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,0.129536,0,0,0,0,1.997568,3.507386,0.964910
4,dense,on,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128864,0.000000,0,0,0.000000,0.016704,0.016704,0.000000,0.128864,0,0,0,0,1.559872,3.191450,0.971733
4,dense,on,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129248,0.000000,0,0,0.000000,0.017440,0.017440,0.000000,0.129248,0,0,0,0,1.646944,3.198303,0.971142
4,dense,on,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129312,0.000000,0,0,0.000000,0.018112,0.018112,0.000000,0.129312,0,0,0,0,1.930624,3.451230,0.958488
4,dense,on,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128288,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.128288,0,0,0,0,1.708480,3.288042,0.810459
4,dense,on,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128928,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,0.128928,0,0,0,0,1.934880,3.311216,0.986410
4,dense,on,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128224,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,0.128224,0,0,0,0,1.953312,3.485645,0.951695
4,dense,on,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.150880,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.150880,0,0,0,0,1.939008,3.559184,1.052806
4,dense,on,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128704,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,0.128704,0,0,0,0,2.002144,3.420331,0.841758
4,dense,on,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129056,0.000000,0,0,0.000000,0.017536,0.017536,0.000000,0.129056,0,0,0,0,1.944640,3.356742,0.982263
4,dense,on,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128512,0.000000,0,0,0.000000,0.016896,0.016896,0.000000,0.128512,0,0,0,0,1.378624,2.976325,0.925185
4,dense,on,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129120,0.000000,0,0,0.000000,0.016896,0.016896,0.000000,0.129120,0,0,0,0,1.933856,3.518237,1.006178
4,dense,on,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128512,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.128512,0,0,0,0,1.652768,3.817771,1.293810
4,dense,on,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.149504,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.149504,0,0,0,0,1.950400,3.531802,0.995528
4,dense,on,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129440,0.000000,0,0,0.000000,0.017760,0.017760,0.000000,0.129440,0,0,0,0,1.997632,3.348637,0.860233
4,dense,on,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129824,0.000000,0,0,0.000000,0.017472,0.017472,0.000000,0.129824,0,0,0,0,1.935360,3.332396,0.979297
4,dense,on,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128928,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.128928,0,0,0,0,1.727680,3.033752,0.799058
4,dense,on,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128992,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,0.128992,0,0,0,0,1.939008,3.289064,0.974699
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense on direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129536 0.000000 0 0 0.000000 0.017824 0.017824 0.000000 0.129536 0 0 0 0 1.387136 2.749477 0.926007
3 4 dense on direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129664 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.129664 0 0 0 0 2.160448 3.706622 1.001489
4 4 dense on direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129024 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 0.129024 0 0 0 0 1.650496 3.097943 0.910858
5 4 dense on direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128800 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.128800 0 0 0 0 2.162592 3.809195 1.089455
6 4 dense on direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129248 0.000000 0 0 0.000000 0.017472 0.017472 0.000000 0.129248 0 0 0 0 1.381952 3.119995 1.138297
7 4 dense on direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128736 0.000000 0 0 0.000000 0.016384 0.016384 0.000000 0.128736 0 0 0 0 2.155104 3.689520 0.957586
8 4 dense on direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129088 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.129088 0 0 0 0 1.383328 3.126308 1.023410
9 4 dense on direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.130112 0.000000 0 0 0.000000 0.016608 0.016608 0.000000 0.130112 0 0 0 0 2.162272 3.689550 0.960482
10 4 dense on direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129504 0.000000 0 0 0.000000 0.017664 0.017664 0.000000 0.129504 0 0 0 0 1.511616 4.826213 2.441385
11 4 dense on direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129824 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.129824 0 0 0 0 1.505600 3.117661 0.985328
12 4 dense on direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129312 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 0.129312 0 0 0 0 1.700064 3.199906 0.921378
13 4 dense on direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129920 0.000000 0 0 0.000000 0.016384 0.016384 0.000000 0.129920 0 0 0 0 1.557344 3.272473 1.021507
14 4 dense on direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129536 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 0.129536 0 0 0 0 1.997568 3.507386 0.964910
15 4 dense on direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128864 0.000000 0 0 0.000000 0.016704 0.016704 0.000000 0.128864 0 0 0 0 1.559872 3.191450 0.971733
16 4 dense on direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129248 0.000000 0 0 0.000000 0.017440 0.017440 0.000000 0.129248 0 0 0 0 1.646944 3.198303 0.971142
17 4 dense on direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129312 0.000000 0 0 0.000000 0.018112 0.018112 0.000000 0.129312 0 0 0 0 1.930624 3.451230 0.958488
18 4 dense on direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128288 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.128288 0 0 0 0 1.708480 3.288042 0.810459
19 4 dense on direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128928 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 0.128928 0 0 0 0 1.934880 3.311216 0.986410
20 4 dense on direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128224 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 0.128224 0 0 0 0 1.953312 3.485645 0.951695
21 4 dense on direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.150880 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.150880 0 0 0 0 1.939008 3.559184 1.052806
22 4 dense on direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128704 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 0.128704 0 0 0 0 2.002144 3.420331 0.841758
23 4 dense on direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129056 0.000000 0 0 0.000000 0.017536 0.017536 0.000000 0.129056 0 0 0 0 1.944640 3.356742 0.982263
24 4 dense on direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128512 0.000000 0 0 0.000000 0.016896 0.016896 0.000000 0.128512 0 0 0 0 1.378624 2.976325 0.925185
25 4 dense on direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129120 0.000000 0 0 0.000000 0.016896 0.016896 0.000000 0.129120 0 0 0 0 1.933856 3.518237 1.006178
26 4 dense on direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128512 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.128512 0 0 0 0 1.652768 3.817771 1.293810
27 4 dense on direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.149504 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.149504 0 0 0 0 1.950400 3.531802 0.995528
28 4 dense on direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129440 0.000000 0 0 0.000000 0.017760 0.017760 0.000000 0.129440 0 0 0 0 1.997632 3.348637 0.860233
29 4 dense on direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129824 0.000000 0 0 0.000000 0.017472 0.017472 0.000000 0.129824 0 0 0 0 1.935360 3.332396 0.979297
30 4 dense on direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128928 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.128928 0 0 0 0 1.727680 3.033752 0.799058
31 4 dense on direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128992 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 0.128992 0 0 0 0 1.939008 3.289064 0.974699
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,on,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129216,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,0.129216,0,0,0,0,1.563680,3.036989,0.949602
4,dense,on,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129568,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,0.129568,0,0,0,0,1.676736,3.149721,0.886422
4,dense,on,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128512,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.128512,0,0,0,0,1.557888,3.310204,0.993604
4,dense,on,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129600,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,0.129600,0,0,0,0,1.981152,3.443084,0.880671
4,dense,on,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128608,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.128608,0,0,0,0,1.565056,3.387920,1.043258
4,dense,on,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129760,0.000000,0,0,0.000000,0.024672,0.024672,0.000000,0.129760,0,0,0,0,1.749088,3.167706,0.895469
4,dense,on,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128512,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,0.128512,0,0,0,0,2.273984,3.872795,1.005277
4,dense,on,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128896,0.000000,0,0,0.000000,0.017984,0.017984,0.000000,0.128896,0,0,0,0,1.710208,3.135374,0.871724
4,dense,on,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128992,0.000000,0,0,0.000000,0.018144,0.018144,0.000000,0.128992,0,0,0,0,1.487520,3.436683,0.983725
4,dense,on,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129504,0.000000,0,0,0.000000,0.017664,0.017664,0.000000,0.129504,0,0,0,0,1.733536,3.178896,0.893716
4,dense,on,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129408,0.000000,0,0,0.000000,0.017536,0.017536,0.000000,0.129408,0,0,0,0,1.924480,3.329060,1.029372
4,dense,on,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128992,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,0.128992,0,0,0,0,1.714592,3.207841,0.874911
4,dense,on,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129344,0.000000,0,0,0.000000,0.017536,0.017536,0.000000,0.129344,0,0,0,0,1.934496,3.312428,1.017168
4,dense,on,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128928,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,0.128928,0,0,0,0,1.382272,3.324551,1.242875
4,dense,on,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129696,0.000000,0,0,0.000000,0.017760,0.017760,0.000000,0.129696,0,0,0,0,1.926976,3.916478,1.371867
4,dense,on,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129120,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,0.129120,0,0,0,0,1.605120,3.302700,0.992692
4,dense,on,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128416,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.128416,0,0,0,0,1.528864,3.776383,1.152103
4,dense,on,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.153824,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,0.153824,0,0,0,0,1.639808,3.477109,0.968907
4,dense,on,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128736,0.000000,0,0,0.000000,0.017120,0.017120,0.000000,0.128736,0,0,0,0,1.527424,3.502707,1.144348
4,dense,on,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129696,0.000000,0,0,0.000000,0.017504,0.017504,0.000000,0.129696,0,0,0,0,1.741312,3.278865,0.936005
4,dense,on,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129280,0.000000,0,0,0.000000,0.017664,0.017664,0.000000,0.129280,0,0,0,0,1.559392,3.367892,1.128138
4,dense,on,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129248,0.000000,0,0,0.000000,0.017504,0.017504,0.000000,0.129248,0,0,0,0,1.736000,3.450869,0.975089
4,dense,on,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129248,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,0.129248,0,0,0,0,1.527744,3.497507,1.152484
4,dense,on,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128608,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.128608,0,0,0,0,1.735712,3.419470,0.924453
4,dense,on,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128608,0.000000,0,0,0.000000,0.016704,0.016704,0.000000,0.128608,0,0,0,0,1.528032,3.380216,1.093743
4,dense,on,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128576,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,0.128576,0,0,0,0,1.739776,3.367131,0.984026
4,dense,on,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128480,0.000000,0,0,0.000000,0.016832,0.016832,0.000000,0.128480,0,0,0,0,1.535936,3.461800,1.030113
4,dense,on,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128800,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,0.128800,0,0,0,0,1.713152,3.549926,0.938420
4,dense,on,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129184,0.000000,0,0,0.000000,0.017760,0.017760,0.000000,0.129184,0,0,0,0,1.561536,3.334420,1.108351
4,dense,on,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.130176,0.000000,0,0,0.000000,0.017056,0.017056,0.000000,0.130176,0,0,0,0,1.702368,3.583850,0.991160
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense on direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129216 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 0.129216 0 0 0 0 1.563680 3.036989 0.949602
3 4 dense on direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129568 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 0.129568 0 0 0 0 1.676736 3.149721 0.886422
4 4 dense on direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128512 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.128512 0 0 0 0 1.557888 3.310204 0.993604
5 4 dense on direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129600 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 0.129600 0 0 0 0 1.981152 3.443084 0.880671
6 4 dense on direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128608 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.128608 0 0 0 0 1.565056 3.387920 1.043258
7 4 dense on direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129760 0.000000 0 0 0.000000 0.024672 0.024672 0.000000 0.129760 0 0 0 0 1.749088 3.167706 0.895469
8 4 dense on direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128512 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 0.128512 0 0 0 0 2.273984 3.872795 1.005277
9 4 dense on direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128896 0.000000 0 0 0.000000 0.017984 0.017984 0.000000 0.128896 0 0 0 0 1.710208 3.135374 0.871724
10 4 dense on direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128992 0.000000 0 0 0.000000 0.018144 0.018144 0.000000 0.128992 0 0 0 0 1.487520 3.436683 0.983725
11 4 dense on direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129504 0.000000 0 0 0.000000 0.017664 0.017664 0.000000 0.129504 0 0 0 0 1.733536 3.178896 0.893716
12 4 dense on direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129408 0.000000 0 0 0.000000 0.017536 0.017536 0.000000 0.129408 0 0 0 0 1.924480 3.329060 1.029372
13 4 dense on direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128992 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 0.128992 0 0 0 0 1.714592 3.207841 0.874911
14 4 dense on direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129344 0.000000 0 0 0.000000 0.017536 0.017536 0.000000 0.129344 0 0 0 0 1.934496 3.312428 1.017168
15 4 dense on direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128928 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 0.128928 0 0 0 0 1.382272 3.324551 1.242875
16 4 dense on direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129696 0.000000 0 0 0.000000 0.017760 0.017760 0.000000 0.129696 0 0 0 0 1.926976 3.916478 1.371867
17 4 dense on direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129120 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 0.129120 0 0 0 0 1.605120 3.302700 0.992692
18 4 dense on direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128416 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.128416 0 0 0 0 1.528864 3.776383 1.152103
19 4 dense on direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.153824 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 0.153824 0 0 0 0 1.639808 3.477109 0.968907
20 4 dense on direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128736 0.000000 0 0 0.000000 0.017120 0.017120 0.000000 0.128736 0 0 0 0 1.527424 3.502707 1.144348
21 4 dense on direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129696 0.000000 0 0 0.000000 0.017504 0.017504 0.000000 0.129696 0 0 0 0 1.741312 3.278865 0.936005
22 4 dense on direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129280 0.000000 0 0 0.000000 0.017664 0.017664 0.000000 0.129280 0 0 0 0 1.559392 3.367892 1.128138
23 4 dense on direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129248 0.000000 0 0 0.000000 0.017504 0.017504 0.000000 0.129248 0 0 0 0 1.736000 3.450869 0.975089
24 4 dense on direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129248 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 0.129248 0 0 0 0 1.527744 3.497507 1.152484
25 4 dense on direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128608 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.128608 0 0 0 0 1.735712 3.419470 0.924453
26 4 dense on direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128608 0.000000 0 0 0.000000 0.016704 0.016704 0.000000 0.128608 0 0 0 0 1.528032 3.380216 1.093743
27 4 dense on direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128576 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 0.128576 0 0 0 0 1.739776 3.367131 0.984026
28 4 dense on direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128480 0.000000 0 0 0.000000 0.016832 0.016832 0.000000 0.128480 0 0 0 0 1.535936 3.461800 1.030113
29 4 dense on direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128800 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 0.128800 0 0 0 0 1.713152 3.549926 0.938420
30 4 dense on direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129184 0.000000 0 0 0.000000 0.017760 0.017760 0.000000 0.129184 0 0 0 0 1.561536 3.334420 1.108351
31 4 dense on direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.130176 0.000000 0 0 0.000000 0.017056 0.017056 0.000000 0.130176 0 0 0 0 1.702368 3.583850 0.991160
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,on,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128608,0.000000,0,0,0.000000,0.016832,0.016832,0.000000,0.128608,0,0,0,0,2.251456,3.709968,0.921729
4,dense,on,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128896,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.128896,0,0,0,0,1.520544,3.071323,0.948249
4,dense,on,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128672,0.000000,0,0,0.000000,0.016384,0.016384,0.000000,0.128672,0,0,0,0,2.083296,3.535088,0.979497
4,dense,on,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129024,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,0.129024,0,0,0,0,1.398080,2.916130,1.033259
4,dense,on,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128992,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.128992,0,0,0,0,2.246816,3.899125,1.044801
4,dense,on,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128832,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,0.128832,0,0,0,0,1.690880,3.147888,0.892383
4,dense,on,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128832,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,0.128832,0,0,0,0,2.086912,3.604519,0.835406
4,dense,on,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129152,0.000000,0,0,0.000000,0.017824,0.017824,0.000000,0.129152,0,0,0,0,1.389472,2.658374,0.880210
4,dense,on,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128896,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,0.128896,0,0,0,0,1.639360,2.894360,0.800470
4,dense,on,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128480,0.000000,0,0,0.000000,0.016832,0.016832,0.000000,0.128480,0,0,0,0,1.504416,2.906964,0.868678
4,dense,on,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128224,0.000000,0,0,0.000000,0.016704,0.016704,0.000000,0.128224,0,0,0,0,1.581888,2.991963,0.813234
4,dense,on,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128800,0.000000,0,0,0.000000,0.016384,0.016384,0.000000,0.128800,0,0,0,0,1.558144,3.239290,0.881052
4,dense,on,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129152,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.129152,0,0,0,0,1.380320,2.659908,0.888786
4,dense,on,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128320,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.128320,0,0,0,0,2.088512,3.394974,0.849854
4,dense,on,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129056,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.129056,0,0,0,0,1.382176,2.605544,0.812703
4,dense,on,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128512,0.000000,0,0,0.000000,0.017152,0.017152,0.000000,0.128512,0,0,0,0,1.640736,2.905942,0.821730
4,dense,on,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128320,0.000000,0,0,0.000000,0.016512,0.016512,0.000000,0.128320,0,0,0,0,1.504608,2.825460,0.818784
4,dense,on,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129312,0.000000,0,0,0.000000,0.017728,0.017728,0.000000,0.129312,0,0,0,0,1.582592,2.957659,0.796182
4,dense,on,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129120,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,0.129120,0,0,0,0,1.922528,3.253768,0.882375
4,dense,on,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.157792,0.000000,0,0,0.000000,0.022528,0.022528,0.000000,0.157792,0,0,0,0,1.421248,2.683973,0.853921
4,dense,on,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128224,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,0.128224,0,0,0,0,2.085344,3.377601,0.816851
4,dense,on,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129504,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.129504,0,0,0,0,1.382240,2.578794,0.820317
4,dense,on,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128928,0.000000,0,0,0.000000,0.017568,0.017568,0.000000,0.128928,0,0,0,0,1.370880,2.574596,0.803005
4,dense,on,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129792,0.000000,0,0,0.000000,0.016608,0.016608,0.000000,0.129792,0,0,0,0,1.527712,2.843444,0.819155
4,dense,on,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129248,0.000000,0,0,0.000000,0.017664,0.017664,0.000000,0.129248,0,0,0,0,1.387360,2.658665,0.882054
4,dense,on,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129280,0.000000,0,0,0.000000,0.018112,0.018112,0.000000,0.129280,0,0,0,0,2.252096,3.567009,0.864982
4,dense,on,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.129696,0.000000,0,0,0.000000,0.017440,0.017440,0.000000,0.129696,0,0,0,0,1.404160,2.674545,0.885430
4,dense,on,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128768,0.000000,0,0,0.000000,0.017184,0.017184,0.000000,0.128768,0,0,0,0,1.631872,2.938463,0.861395
4,dense,on,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128576,0.000000,0,0,0.000000,0.016416,0.016416,0.000000,0.128576,0,0,0,0,1.501888,2.951919,0.865322
4,dense,on,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,42,59612064,0.128928,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.128928,0,0,0,0,1.578176,3.072736,0.911299
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense on direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128608 0.000000 0 0 0.000000 0.016832 0.016832 0.000000 0.128608 0 0 0 0 2.251456 3.709968 0.921729
3 4 dense on direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128896 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.128896 0 0 0 0 1.520544 3.071323 0.948249
4 4 dense on direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128672 0.000000 0 0 0.000000 0.016384 0.016384 0.000000 0.128672 0 0 0 0 2.083296 3.535088 0.979497
5 4 dense on direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129024 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 0.129024 0 0 0 0 1.398080 2.916130 1.033259
6 4 dense on direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128992 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.128992 0 0 0 0 2.246816 3.899125 1.044801
7 4 dense on direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128832 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 0.128832 0 0 0 0 1.690880 3.147888 0.892383
8 4 dense on direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128832 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 0.128832 0 0 0 0 2.086912 3.604519 0.835406
9 4 dense on direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129152 0.000000 0 0 0.000000 0.017824 0.017824 0.000000 0.129152 0 0 0 0 1.389472 2.658374 0.880210
10 4 dense on direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128896 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 0.128896 0 0 0 0 1.639360 2.894360 0.800470
11 4 dense on direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128480 0.000000 0 0 0.000000 0.016832 0.016832 0.000000 0.128480 0 0 0 0 1.504416 2.906964 0.868678
12 4 dense on direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128224 0.000000 0 0 0.000000 0.016704 0.016704 0.000000 0.128224 0 0 0 0 1.581888 2.991963 0.813234
13 4 dense on direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128800 0.000000 0 0 0.000000 0.016384 0.016384 0.000000 0.128800 0 0 0 0 1.558144 3.239290 0.881052
14 4 dense on direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129152 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.129152 0 0 0 0 1.380320 2.659908 0.888786
15 4 dense on direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128320 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.128320 0 0 0 0 2.088512 3.394974 0.849854
16 4 dense on direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129056 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.129056 0 0 0 0 1.382176 2.605544 0.812703
17 4 dense on direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128512 0.000000 0 0 0.000000 0.017152 0.017152 0.000000 0.128512 0 0 0 0 1.640736 2.905942 0.821730
18 4 dense on direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128320 0.000000 0 0 0.000000 0.016512 0.016512 0.000000 0.128320 0 0 0 0 1.504608 2.825460 0.818784
19 4 dense on direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129312 0.000000 0 0 0.000000 0.017728 0.017728 0.000000 0.129312 0 0 0 0 1.582592 2.957659 0.796182
20 4 dense on direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129120 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 0.129120 0 0 0 0 1.922528 3.253768 0.882375
21 4 dense on direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.157792 0.000000 0 0 0.000000 0.022528 0.022528 0.000000 0.157792 0 0 0 0 1.421248 2.683973 0.853921
22 4 dense on direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128224 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 0.128224 0 0 0 0 2.085344 3.377601 0.816851
23 4 dense on direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129504 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.129504 0 0 0 0 1.382240 2.578794 0.820317
24 4 dense on direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128928 0.000000 0 0 0.000000 0.017568 0.017568 0.000000 0.128928 0 0 0 0 1.370880 2.574596 0.803005
25 4 dense on direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129792 0.000000 0 0 0.000000 0.016608 0.016608 0.000000 0.129792 0 0 0 0 1.527712 2.843444 0.819155
26 4 dense on direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129248 0.000000 0 0 0.000000 0.017664 0.017664 0.000000 0.129248 0 0 0 0 1.387360 2.658665 0.882054
27 4 dense on direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129280 0.000000 0 0 0.000000 0.018112 0.018112 0.000000 0.129280 0 0 0 0 2.252096 3.567009 0.864982
28 4 dense on direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.129696 0.000000 0 0 0.000000 0.017440 0.017440 0.000000 0.129696 0 0 0 0 1.404160 2.674545 0.885430
29 4 dense on direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128768 0.000000 0 0 0.000000 0.017184 0.017184 0.000000 0.128768 0 0 0 0 1.631872 2.938463 0.861395
30 4 dense on direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128576 0.000000 0 0 0.000000 0.016416 0.016416 0.000000 0.128576 0 0 0 0 1.501888 2.951919 0.865322
31 4 dense on direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 42 59612064 0.128928 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.128928 0 0 0 0 1.578176 3.072736 0.911299
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,on,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318112,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.318112,0,0,0,0,1.891200,3.178946,0.791463
16,dense,on,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317952,0.000000,0,0,0.000000,0.017760,0.017760,0.000000,0.317952,0,0,0,0,1.560384,2.733406,0.877185
16,dense,on,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317824,0.000000,0,0,0.000000,0.016544,0.016544,0.000000,0.317824,0,0,0,0,1.565472,2.731652,0.863188
16,dense,on,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318464,0.000000,0,0,0.000000,0.017440,0.017440,0.000000,0.318464,0,0,0,0,2.149184,3.873947,0.993134
16,dense,on,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319168,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,0.319168,0,0,0,0,2.173472,3.457592,0.782486
16,dense,on,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.320480,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,0.320480,0,0,0,0,2.143904,3.465466,0.952366
16,dense,on,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318240,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.318240,0,0,0,0,2.132576,3.682025,0.803084
16,dense,on,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318144,0.000000,0,0,0.000000,0.017984,0.017984,0.000000,0.318144,0,0,0,0,2.122592,3.558883,0.945253
16,dense,on,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318304,0.000000,0,0,0.000000,0.017568,0.017568,0.000000,0.318304,0,0,0,0,2.126176,3.481988,0.838061
16,dense,on,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318720,0.000000,0,0,0.000000,0.016736,0.016736,0.000000,0.318720,0,0,0,0,2.122080,3.647059,0.976431
16,dense,on,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319936,0.000000,0,0,0.000000,0.017728,0.017728,0.000000,0.319936,0,0,0,0,1.826144,3.304063,0.972996
16,dense,on,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319584,0.000000,0,0,0.000000,0.017312,0.017312,0.000000,0.319584,0,0,0,0,2.242016,3.869899,0.996380
16,dense,on,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319104,0.000000,0,0,0.000000,0.016896,0.016896,0.000000,0.319104,0,0,0,0,1.976576,3.657329,1.069838
16,dense,on,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318400,0.000000,0,0,0.000000,0.017568,0.017568,0.000000,0.318400,0,0,0,0,1.749344,3.920035,1.167472
16,dense,on,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318208,0.000000,0,0,0.000000,0.017696,0.017696,0.000000,0.318208,0,0,0,0,1.889216,3.223851,0.834464
16,dense,on,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318112,0.000000,0,0,0.000000,0.017792,0.017792,0.000000,0.318112,0,0,0,0,1.676704,3.116378,0.918112
16,dense,on,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318848,0.000000,0,0,0.000000,0.016608,0.016608,0.000000,0.318848,0,0,0,0,1.558752,2.862149,0.875802
16,dense,on,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319488,0.000000,0,0,0.000000,0.018112,0.018112,0.000000,0.319488,0,0,0,0,2.123232,3.572188,0.958318
16,dense,on,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319488,0.000000,0,0,0.000000,0.017696,0.017696,0.000000,0.319488,0,0,0,0,1.824672,3.194897,0.878247
16,dense,on,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318112,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,0.318112,0,0,0,0,2.123200,3.544857,0.920897
16,dense,on,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318912,0.000000,0,0,0.000000,0.016672,0.016672,0.000000,0.318912,0,0,0,0,1.820160,3.462522,1.115144
16,dense,on,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.320032,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,0.320032,0,0,0,0,2.127136,3.781433,1.118460
16,dense,on,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319872,0.000000,0,0,0.000000,0.018176,0.018176,0.000000,0.319872,0,0,0,0,1.827712,3.431623,1.069217
16,dense,on,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319616,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,0.319616,0,0,0,0,2.128288,3.770692,1.093292
16,dense,on,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.320096,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,0.320096,0,0,0,0,1.892384,3.454045,0.970510
16,dense,on,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318336,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.318336,0,0,0,0,1.752896,3.503609,1.088804
16,dense,on,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318912,0.000000,0,0,0.000000,0.016704,0.016704,0.000000,0.318912,0,0,0,0,1.889856,3.536811,0.836007
16,dense,on,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319424,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,0.319424,0,0,0,0,1.748448,3.519960,1.217306
16,dense,on,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317408,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.317408,0,0,0,0,1.897472,3.380827,0.946485
16,dense,on,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318464,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,0.318464,0,0,0,0,1.752960,3.545538,1.255398
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense on direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318112 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.318112 0 0 0 0 1.891200 3.178946 0.791463
3 16 dense on direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317952 0.000000 0 0 0.000000 0.017760 0.017760 0.000000 0.317952 0 0 0 0 1.560384 2.733406 0.877185
4 16 dense on direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317824 0.000000 0 0 0.000000 0.016544 0.016544 0.000000 0.317824 0 0 0 0 1.565472 2.731652 0.863188
5 16 dense on direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318464 0.000000 0 0 0.000000 0.017440 0.017440 0.000000 0.318464 0 0 0 0 2.149184 3.873947 0.993134
6 16 dense on direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319168 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 0.319168 0 0 0 0 2.173472 3.457592 0.782486
7 16 dense on direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.320480 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 0.320480 0 0 0 0 2.143904 3.465466 0.952366
8 16 dense on direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318240 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.318240 0 0 0 0 2.132576 3.682025 0.803084
9 16 dense on direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318144 0.000000 0 0 0.000000 0.017984 0.017984 0.000000 0.318144 0 0 0 0 2.122592 3.558883 0.945253
10 16 dense on direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318304 0.000000 0 0 0.000000 0.017568 0.017568 0.000000 0.318304 0 0 0 0 2.126176 3.481988 0.838061
11 16 dense on direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318720 0.000000 0 0 0.000000 0.016736 0.016736 0.000000 0.318720 0 0 0 0 2.122080 3.647059 0.976431
12 16 dense on direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319936 0.000000 0 0 0.000000 0.017728 0.017728 0.000000 0.319936 0 0 0 0 1.826144 3.304063 0.972996
13 16 dense on direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319584 0.000000 0 0 0.000000 0.017312 0.017312 0.000000 0.319584 0 0 0 0 2.242016 3.869899 0.996380
14 16 dense on direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319104 0.000000 0 0 0.000000 0.016896 0.016896 0.000000 0.319104 0 0 0 0 1.976576 3.657329 1.069838
15 16 dense on direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318400 0.000000 0 0 0.000000 0.017568 0.017568 0.000000 0.318400 0 0 0 0 1.749344 3.920035 1.167472
16 16 dense on direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318208 0.000000 0 0 0.000000 0.017696 0.017696 0.000000 0.318208 0 0 0 0 1.889216 3.223851 0.834464
17 16 dense on direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318112 0.000000 0 0 0.000000 0.017792 0.017792 0.000000 0.318112 0 0 0 0 1.676704 3.116378 0.918112
18 16 dense on direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318848 0.000000 0 0 0.000000 0.016608 0.016608 0.000000 0.318848 0 0 0 0 1.558752 2.862149 0.875802
19 16 dense on direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319488 0.000000 0 0 0.000000 0.018112 0.018112 0.000000 0.319488 0 0 0 0 2.123232 3.572188 0.958318
20 16 dense on direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319488 0.000000 0 0 0.000000 0.017696 0.017696 0.000000 0.319488 0 0 0 0 1.824672 3.194897 0.878247
21 16 dense on direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318112 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 0.318112 0 0 0 0 2.123200 3.544857 0.920897
22 16 dense on direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318912 0.000000 0 0 0.000000 0.016672 0.016672 0.000000 0.318912 0 0 0 0 1.820160 3.462522 1.115144
23 16 dense on direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.320032 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 0.320032 0 0 0 0 2.127136 3.781433 1.118460
24 16 dense on direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319872 0.000000 0 0 0.000000 0.018176 0.018176 0.000000 0.319872 0 0 0 0 1.827712 3.431623 1.069217
25 16 dense on direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319616 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 0.319616 0 0 0 0 2.128288 3.770692 1.093292
26 16 dense on direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.320096 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 0.320096 0 0 0 0 1.892384 3.454045 0.970510
27 16 dense on direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318336 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.318336 0 0 0 0 1.752896 3.503609 1.088804
28 16 dense on direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318912 0.000000 0 0 0.000000 0.016704 0.016704 0.000000 0.318912 0 0 0 0 1.889856 3.536811 0.836007
29 16 dense on direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319424 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 0.319424 0 0 0 0 1.748448 3.519960 1.217306
30 16 dense on direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317408 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.317408 0 0 0 0 1.897472 3.380827 0.946485
31 16 dense on direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318464 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 0.318464 0 0 0 0 1.752960 3.545538 1.255398
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,on,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.326016,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,0.326016,0,0,0,0,1.565120,2.913546,0.880982
16,dense,on,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319264,0.000000,0,0,0.000000,0.016896,0.016896,0.000000,0.319264,0,0,0,0,2.111072,3.606162,1.004916
16,dense,on,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319168,0.000000,0,0,0.000000,0.017696,0.017696,0.000000,0.319168,0,0,0,0,1.574848,2.919717,0.910418
16,dense,on,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317376,0.000000,0,0,0.000000,0.016544,0.016544,0.000000,0.317376,0,0,0,0,2.116704,4.067803,1.405621
16,dense,on,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318688,0.000000,0,0,0.000000,0.016544,0.016544,0.000000,0.318688,0,0,0,0,1.576192,3.294775,1.037106
16,dense,on,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319168,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.319168,0,0,0,0,2.116576,3.886411,1.217537
16,dense,on,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319616,0.000000,0,0,0.000000,0.017824,0.017824,0.000000,0.319616,0,0,0,0,1.928800,3.633183,0.856075
16,dense,on,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318112,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,0.318112,0,0,0,0,1.681376,3.120226,0.887935
16,dense,on,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317600,0.000000,0,0,0.000000,0.016832,0.016832,0.000000,0.317600,0,0,0,0,1.865088,3.304514,0.886662
16,dense,on,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318624,0.000000,0,0,0.000000,0.016480,0.016480,0.000000,0.318624,0,0,0,0,1.756512,3.413189,0.949802
16,dense,on,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319232,0.000000,0,0,0.000000,0.017056,0.017056,0.000000,0.319232,0,0,0,0,1.854688,3.287551,0.859782
16,dense,on,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318048,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,0.318048,0,0,0,0,2.111104,3.623325,0.990538
16,dense,on,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317216,0.000000,0,0,0.000000,0.016448,0.016448,0.000000,0.317216,0,0,0,0,1.850560,3.365258,0.918352
16,dense,on,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317216,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.317216,0,0,0,0,1.717344,3.568872,0.965041
16,dense,on,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318400,0.000000,0,0,0.000000,0.016384,0.016384,0.000000,0.318400,0,0,0,0,1.863616,3.366610,0.905548
16,dense,on,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318304,0.000000,0,0,0.000000,0.017344,0.017344,0.000000,0.318304,0,0,0,0,1.719808,3.611883,1.022338
16,dense,on,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317664,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,0.317664,0,0,0,0,1.862848,3.396307,0.912992
16,dense,on,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317984,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.317984,0,0,0,0,1.750112,3.460297,0.983946
16,dense,on,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317632,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.317632,0,0,0,0,1.574176,2.989219,0.940854
16,dense,on,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.316832,0.000000,0,0,0.000000,0.016576,0.016576,0.000000,0.316832,0,0,0,0,2.462240,3.975749,0.989606
16,dense,on,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319104,0.000000,0,0,0.000000,0.016448,0.016448,0.000000,0.319104,0,0,0,0,1.566080,2.994719,0.931126
16,dense,on,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318624,0.000000,0,0,0.000000,0.017056,0.017056,0.000000,0.318624,0,0,0,0,2.282816,3.954039,1.149999
16,dense,on,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319488,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,0.319488,0,0,0,0,1.919072,3.457031,0.956575
16,dense,on,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317728,0.000000,0,0,0.000000,0.017792,0.017792,0.000000,0.317728,0,0,0,0,1.750304,3.814866,1.434836
16,dense,on,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.327808,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,0.327808,0,0,0,0,1.883872,3.724615,1.234028
16,dense,on,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318720,0.000000,0,0,0.000000,0.016704,0.016704,0.000000,0.318720,0,0,0,0,1.976256,3.787535,1.172602
16,dense,on,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317696,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.317696,0,0,0,0,1.570912,3.245892,1.222946
16,dense,on,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318432,0.000000,0,0,0.000000,0.017568,0.017568,0.000000,0.318432,0,0,0,0,1.821344,3.710309,1.165658
16,dense,on,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318592,0.000000,0,0,0.000000,0.017472,0.017472,0.000000,0.318592,0,0,0,0,1.570112,3.428487,1.381126
16,dense,on,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318016,0.000000,0,0,0.000000,0.016480,0.016480,0.000000,0.318016,0,0,0,0,1.823584,3.287231,0.926207
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense on direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.326016 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 0.326016 0 0 0 0 1.565120 2.913546 0.880982
3 16 dense on direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319264 0.000000 0 0 0.000000 0.016896 0.016896 0.000000 0.319264 0 0 0 0 2.111072 3.606162 1.004916
4 16 dense on direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319168 0.000000 0 0 0.000000 0.017696 0.017696 0.000000 0.319168 0 0 0 0 1.574848 2.919717 0.910418
5 16 dense on direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317376 0.000000 0 0 0.000000 0.016544 0.016544 0.000000 0.317376 0 0 0 0 2.116704 4.067803 1.405621
6 16 dense on direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318688 0.000000 0 0 0.000000 0.016544 0.016544 0.000000 0.318688 0 0 0 0 1.576192 3.294775 1.037106
7 16 dense on direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319168 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.319168 0 0 0 0 2.116576 3.886411 1.217537
8 16 dense on direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319616 0.000000 0 0 0.000000 0.017824 0.017824 0.000000 0.319616 0 0 0 0 1.928800 3.633183 0.856075
9 16 dense on direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318112 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 0.318112 0 0 0 0 1.681376 3.120226 0.887935
10 16 dense on direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317600 0.000000 0 0 0.000000 0.016832 0.016832 0.000000 0.317600 0 0 0 0 1.865088 3.304514 0.886662
11 16 dense on direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318624 0.000000 0 0 0.000000 0.016480 0.016480 0.000000 0.318624 0 0 0 0 1.756512 3.413189 0.949802
12 16 dense on direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319232 0.000000 0 0 0.000000 0.017056 0.017056 0.000000 0.319232 0 0 0 0 1.854688 3.287551 0.859782
13 16 dense on direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318048 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 0.318048 0 0 0 0 2.111104 3.623325 0.990538
14 16 dense on direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317216 0.000000 0 0 0.000000 0.016448 0.016448 0.000000 0.317216 0 0 0 0 1.850560 3.365258 0.918352
15 16 dense on direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317216 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.317216 0 0 0 0 1.717344 3.568872 0.965041
16 16 dense on direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318400 0.000000 0 0 0.000000 0.016384 0.016384 0.000000 0.318400 0 0 0 0 1.863616 3.366610 0.905548
17 16 dense on direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318304 0.000000 0 0 0.000000 0.017344 0.017344 0.000000 0.318304 0 0 0 0 1.719808 3.611883 1.022338
18 16 dense on direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317664 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 0.317664 0 0 0 0 1.862848 3.396307 0.912992
19 16 dense on direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317984 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.317984 0 0 0 0 1.750112 3.460297 0.983946
20 16 dense on direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317632 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.317632 0 0 0 0 1.574176 2.989219 0.940854
21 16 dense on direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.316832 0.000000 0 0 0.000000 0.016576 0.016576 0.000000 0.316832 0 0 0 0 2.462240 3.975749 0.989606
22 16 dense on direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319104 0.000000 0 0 0.000000 0.016448 0.016448 0.000000 0.319104 0 0 0 0 1.566080 2.994719 0.931126
23 16 dense on direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318624 0.000000 0 0 0.000000 0.017056 0.017056 0.000000 0.318624 0 0 0 0 2.282816 3.954039 1.149999
24 16 dense on direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319488 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 0.319488 0 0 0 0 1.919072 3.457031 0.956575
25 16 dense on direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317728 0.000000 0 0 0.000000 0.017792 0.017792 0.000000 0.317728 0 0 0 0 1.750304 3.814866 1.434836
26 16 dense on direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.327808 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 0.327808 0 0 0 0 1.883872 3.724615 1.234028
27 16 dense on direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318720 0.000000 0 0 0.000000 0.016704 0.016704 0.000000 0.318720 0 0 0 0 1.976256 3.787535 1.172602
28 16 dense on direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317696 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.317696 0 0 0 0 1.570912 3.245892 1.222946
29 16 dense on direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318432 0.000000 0 0 0.000000 0.017568 0.017568 0.000000 0.318432 0 0 0 0 1.821344 3.710309 1.165658
30 16 dense on direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318592 0.000000 0 0 0.000000 0.017472 0.017472 0.000000 0.318592 0 0 0 0 1.570112 3.428487 1.381126
31 16 dense on direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318016 0.000000 0 0 0.000000 0.016480 0.016480 0.000000 0.318016 0 0 0 0 1.823584 3.287231 0.926207
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
16,dense,on,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317600,0.000000,0,0,0.000000,0.017312,0.017312,0.000000,0.317600,0,0,0,0,1.557664,2.901323,0.886663
16,dense,on,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318880,0.000000,0,0,0.000000,0.017216,0.017216,0.000000,0.318880,0,0,0,0,2.602656,3.949931,0.875352
16,dense,on,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.324128,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.324128,0,0,0,0,1.563936,2.867679,0.854672
16,dense,on,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319648,0.000000,0,0,0.000000,0.017472,0.017472,0.000000,0.319648,0,0,0,0,2.291584,3.596164,0.836838
16,dense,on,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.324224,0.000000,0,0,0.000000,0.016544,0.016544,0.000000,0.324224,0,0,0,0,1.569792,2.897756,0.867486
16,dense,on,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318784,0.000000,0,0,0.000000,0.016736,0.016736,0.000000,0.318784,0,0,0,0,2.279840,3.633694,0.885020
16,dense,on,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.357984,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,0.357984,0,0,0,0,1.599552,3.097883,0.851587
16,dense,on,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319296,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,0.319296,0,0,0,0,2.282976,3.624547,0.871234
16,dense,on,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318720,0.000000,0,0,0.000000,0.016704,0.016704,0.000000,0.318720,0,0,0,0,1.585440,2.971716,0.912441
16,dense,on,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319392,0.000000,0,0,0.000000,0.017696,0.017696,0.000000,0.319392,0,0,0,0,2.276512,3.689429,0.905418
16,dense,on,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317696,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,0.317696,0,0,0,0,1.584416,2.988337,0.890340
16,dense,on,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.321088,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.321088,0,0,0,0,2.282912,3.749173,0.916799
16,dense,on,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319136,0.000000,0,0,0.000000,0.016832,0.016832,0.000000,0.319136,0,0,0,0,1.696160,3.223901,0.899015
16,dense,on,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319456,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.319456,0,0,0,0,2.284128,3.703927,0.908323
16,dense,on,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319264,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.319264,0,0,0,0,1.573824,2.934436,0.874530
16,dense,on,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317568,0.000000,0,0,0.000000,0.017664,0.017664,0.000000,0.317568,0,0,0,0,1.821216,3.232167,0.887825
16,dense,on,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317792,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.317792,0,0,0,0,1.694912,3.181652,0.923202
16,dense,on,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319168,0.000000,0,0,0.000000,0.017152,0.017152,0.000000,0.319168,0,0,0,0,1.707680,3.131797,0.935304
16,dense,on,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.319136,0.000000,0,0,0.000000,0.016448,0.016448,0.000000,0.319136,0,0,0,0,1.695680,3.257765,0.944802
16,dense,on,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318112,0.000000,0,0,0.000000,0.017632,0.017632,0.000000,0.318112,0,0,0,0,1.775040,3.262404,0.899717
16,dense,on,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318528,0.000000,0,0,0.000000,0.017504,0.017504,0.000000,0.318528,0,0,0,0,1.672000,3.224192,0.939873
16,dense,on,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318848,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.318848,0,0,0,0,1.897024,3.276871,0.853200
16,dense,on,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318592,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.318592,0,0,0,0,1.749504,3.384555,0.907512
16,dense,on,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318272,0.000000,0,0,0.000000,0.017760,0.017760,0.000000,0.318272,0,0,0,0,1.564896,2.977606,0.923663
16,dense,on,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318016,0.000000,0,0,0.000000,0.017792,0.017792,0.000000,0.318016,0,0,0,0,2.329920,3.926337,0.976122
16,dense,on,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.339680,0.000000,0,0,0.000000,0.023680,0.023680,0.000000,0.339680,0,0,0,0,1.734912,3.268585,0.953259
16,dense,on,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318592,0.000000,0,0,0.000000,0.017536,0.017536,0.000000,0.318592,0,0,0,0,2.106208,3.584191,0.946656
16,dense,on,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317088,0.000000,0,0,0.000000,0.016480,0.016480,0.000000,0.317088,0,0,0,0,1.563872,2.962979,0.917761
16,dense,on,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.317760,0.000000,0,0,0.000000,0.017472,0.017472,0.000000,0.317760,0,0,0,0,2.276416,3.786633,0.930385
16,dense,on,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,16,0,96,12,84,84,12,44,59613024,0.318496,0.000000,0,0,0.000000,0.016576,0.016576,0.000000,0.318496,0,0,0,0,1.560576,2.956687,0.910026
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 16 dense on direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317600 0.000000 0 0 0.000000 0.017312 0.017312 0.000000 0.317600 0 0 0 0 1.557664 2.901323 0.886663
3 16 dense on direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318880 0.000000 0 0 0.000000 0.017216 0.017216 0.000000 0.318880 0 0 0 0 2.602656 3.949931 0.875352
4 16 dense on direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.324128 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.324128 0 0 0 0 1.563936 2.867679 0.854672
5 16 dense on direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319648 0.000000 0 0 0.000000 0.017472 0.017472 0.000000 0.319648 0 0 0 0 2.291584 3.596164 0.836838
6 16 dense on direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.324224 0.000000 0 0 0.000000 0.016544 0.016544 0.000000 0.324224 0 0 0 0 1.569792 2.897756 0.867486
7 16 dense on direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318784 0.000000 0 0 0.000000 0.016736 0.016736 0.000000 0.318784 0 0 0 0 2.279840 3.633694 0.885020
8 16 dense on direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.357984 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 0.357984 0 0 0 0 1.599552 3.097883 0.851587
9 16 dense on direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319296 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 0.319296 0 0 0 0 2.282976 3.624547 0.871234
10 16 dense on direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318720 0.000000 0 0 0.000000 0.016704 0.016704 0.000000 0.318720 0 0 0 0 1.585440 2.971716 0.912441
11 16 dense on direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319392 0.000000 0 0 0.000000 0.017696 0.017696 0.000000 0.319392 0 0 0 0 2.276512 3.689429 0.905418
12 16 dense on direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317696 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 0.317696 0 0 0 0 1.584416 2.988337 0.890340
13 16 dense on direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.321088 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.321088 0 0 0 0 2.282912 3.749173 0.916799
14 16 dense on direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319136 0.000000 0 0 0.000000 0.016832 0.016832 0.000000 0.319136 0 0 0 0 1.696160 3.223901 0.899015
15 16 dense on direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319456 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.319456 0 0 0 0 2.284128 3.703927 0.908323
16 16 dense on direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319264 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.319264 0 0 0 0 1.573824 2.934436 0.874530
17 16 dense on direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317568 0.000000 0 0 0.000000 0.017664 0.017664 0.000000 0.317568 0 0 0 0 1.821216 3.232167 0.887825
18 16 dense on direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317792 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.317792 0 0 0 0 1.694912 3.181652 0.923202
19 16 dense on direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319168 0.000000 0 0 0.000000 0.017152 0.017152 0.000000 0.319168 0 0 0 0 1.707680 3.131797 0.935304
20 16 dense on direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.319136 0.000000 0 0 0.000000 0.016448 0.016448 0.000000 0.319136 0 0 0 0 1.695680 3.257765 0.944802
21 16 dense on direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318112 0.000000 0 0 0.000000 0.017632 0.017632 0.000000 0.318112 0 0 0 0 1.775040 3.262404 0.899717
22 16 dense on direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318528 0.000000 0 0 0.000000 0.017504 0.017504 0.000000 0.318528 0 0 0 0 1.672000 3.224192 0.939873
23 16 dense on direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318848 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.318848 0 0 0 0 1.897024 3.276871 0.853200
24 16 dense on direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318592 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.318592 0 0 0 0 1.749504 3.384555 0.907512
25 16 dense on direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318272 0.000000 0 0 0.000000 0.017760 0.017760 0.000000 0.318272 0 0 0 0 1.564896 2.977606 0.923663
26 16 dense on direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318016 0.000000 0 0 0.000000 0.017792 0.017792 0.000000 0.318016 0 0 0 0 2.329920 3.926337 0.976122
27 16 dense on direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.339680 0.000000 0 0 0.000000 0.023680 0.023680 0.000000 0.339680 0 0 0 0 1.734912 3.268585 0.953259
28 16 dense on direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318592 0.000000 0 0 0.000000 0.017536 0.017536 0.000000 0.318592 0 0 0 0 2.106208 3.584191 0.946656
29 16 dense on direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317088 0.000000 0 0 0.000000 0.016480 0.016480 0.000000 0.317088 0 0 0 0 1.563872 2.962979 0.917761
30 16 dense on direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.317760 0.000000 0 0 0.000000 0.017472 0.017472 0.000000 0.317760 0 0 0 0 2.276416 3.786633 0.930385
31 16 dense on direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 16 0 96 12 84 84 12 44 59613024 0.318496 0.000000 0 0 0.000000 0.016576 0.016576 0.000000 0.318496 0 0 0 0 1.560576 2.956687 0.910026
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,on,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581248,0.000000,0,0,0.000000,0.016864,0.016864,0.000000,0.581248,0,0,0,0,1.961440,3.779199,1.165629
32,dense,on,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.586240,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,0.586240,0,0,0,0,2.285984,4.018049,1.146263
32,dense,on,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.586336,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,0.586336,0,0,0,0,2.423296,3.935023,0.831198
32,dense,on,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582048,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,0.582048,0,0,0,0,2.395168,4.321632,1.401884
32,dense,on,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.583488,0.000000,0,0,0.000000,0.018272,0.018272,0.000000,0.583488,0,0,0,0,2.046624,3.870982,1.134410
32,dense,on,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582656,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,0.582656,0,0,0,0,2.308064,3.857356,0.898255
32,dense,on,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.583840,0.000000,0,0,0.000000,0.018368,0.018368,0.000000,0.583840,0,0,0,0,1.839520,3.782374,1.264114
32,dense,on,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.583392,0.000000,0,0,0.000000,0.018144,0.018144,0.000000,0.583392,0,0,0,0,2.340960,4.185265,1.099594
32,dense,on,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579840,0.000000,0,0,0.000000,0.018240,0.018240,0.000000,0.579840,0,0,0,0,2.372608,4.050250,1.006498
32,dense,on,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.583744,0.000000,0,0,0.000000,0.018112,0.018112,0.000000,0.583744,0,0,0,0,2.158304,3.619468,0.901250
32,dense,on,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582464,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,0.582464,0,0,0,0,2.023808,3.914293,0.966874
32,dense,on,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581760,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.581760,0,0,0,0,2.161408,3.906609,0.905478
32,dense,on,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582752,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.582752,0,0,0,0,1.937984,3.661316,1.155069
32,dense,on,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582080,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.582080,0,0,0,0,1.837952,3.389744,0.907632
32,dense,on,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.583296,0.000000,0,0,0.000000,0.018176,0.018176,0.000000,0.583296,0,0,0,0,2.242784,3.592596,0.808715
32,dense,on,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581216,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.581216,0,0,0,0,1.980512,3.481778,0.939332
32,dense,on,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582432,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.582432,0,0,0,0,2.240928,3.677136,0.903284
32,dense,on,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582048,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.582048,0,0,0,0,1.834432,3.127289,0.871874
32,dense,on,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.584576,0.000000,0,0,0.000000,0.016608,0.016608,0.000000,0.584576,0,0,0,0,2.242944,3.535048,0.801802
32,dense,on,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581504,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.581504,0,0,0,0,1.836992,3.348817,1.052065
32,dense,on,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582336,0.000000,0,0,0.000000,0.016736,0.016736,0.000000,0.582336,0,0,0,0,2.240480,3.743011,0.867587
32,dense,on,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582944,0.000000,0,0,0.000000,0.017184,0.017184,0.000000,0.582944,0,0,0,0,1.836352,3.230213,0.954270
32,dense,on,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581952,0.000000,0,0,0.000000,0.018240,0.018240,0.000000,0.581952,0,0,0,0,2.240192,3.647641,0.878647
32,dense,on,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582208,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.582208,0,0,0,0,1.837248,3.262454,0.987763
32,dense,on,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.583360,0.000000,0,0,0.000000,0.017280,0.017280,0.000000,0.583360,0,0,0,0,2.244384,3.569924,0.782386
32,dense,on,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581856,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,0.581856,0,0,0,0,1.833440,3.100709,0.828242
32,dense,on,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.578848,0.000000,0,0,0.000000,0.017216,0.017216,0.000000,0.578848,0,0,0,0,2.235680,3.519639,0.806642
32,dense,on,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580384,0.000000,0,0,0.000000,0.017184,0.017184,0.000000,0.580384,0,0,0,0,1.834656,3.038001,0.805299
32,dense,on,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.583424,0.000000,0,0,0.000000,0.018112,0.018112,0.000000,0.583424,0,0,0,0,1.938464,3.256612,0.829825
32,dense,on,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580672,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,0.580672,0,0,0,0,2.175424,3.490515,0.841968
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense on direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581248 0.000000 0 0 0.000000 0.016864 0.016864 0.000000 0.581248 0 0 0 0 1.961440 3.779199 1.165629
3 32 dense on direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.586240 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 0.586240 0 0 0 0 2.285984 4.018049 1.146263
4 32 dense on direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.586336 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 0.586336 0 0 0 0 2.423296 3.935023 0.831198
5 32 dense on direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582048 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 0.582048 0 0 0 0 2.395168 4.321632 1.401884
6 32 dense on direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.583488 0.000000 0 0 0.000000 0.018272 0.018272 0.000000 0.583488 0 0 0 0 2.046624 3.870982 1.134410
7 32 dense on direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582656 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 0.582656 0 0 0 0 2.308064 3.857356 0.898255
8 32 dense on direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.583840 0.000000 0 0 0.000000 0.018368 0.018368 0.000000 0.583840 0 0 0 0 1.839520 3.782374 1.264114
9 32 dense on direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.583392 0.000000 0 0 0.000000 0.018144 0.018144 0.000000 0.583392 0 0 0 0 2.340960 4.185265 1.099594
10 32 dense on direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579840 0.000000 0 0 0.000000 0.018240 0.018240 0.000000 0.579840 0 0 0 0 2.372608 4.050250 1.006498
11 32 dense on direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.583744 0.000000 0 0 0.000000 0.018112 0.018112 0.000000 0.583744 0 0 0 0 2.158304 3.619468 0.901250
12 32 dense on direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582464 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 0.582464 0 0 0 0 2.023808 3.914293 0.966874
13 32 dense on direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581760 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.581760 0 0 0 0 2.161408 3.906609 0.905478
14 32 dense on direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582752 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.582752 0 0 0 0 1.937984 3.661316 1.155069
15 32 dense on direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582080 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.582080 0 0 0 0 1.837952 3.389744 0.907632
16 32 dense on direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.583296 0.000000 0 0 0.000000 0.018176 0.018176 0.000000 0.583296 0 0 0 0 2.242784 3.592596 0.808715
17 32 dense on direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581216 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.581216 0 0 0 0 1.980512 3.481778 0.939332
18 32 dense on direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582432 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.582432 0 0 0 0 2.240928 3.677136 0.903284
19 32 dense on direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582048 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.582048 0 0 0 0 1.834432 3.127289 0.871874
20 32 dense on direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.584576 0.000000 0 0 0.000000 0.016608 0.016608 0.000000 0.584576 0 0 0 0 2.242944 3.535048 0.801802
21 32 dense on direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581504 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.581504 0 0 0 0 1.836992 3.348817 1.052065
22 32 dense on direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582336 0.000000 0 0 0.000000 0.016736 0.016736 0.000000 0.582336 0 0 0 0 2.240480 3.743011 0.867587
23 32 dense on direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582944 0.000000 0 0 0.000000 0.017184 0.017184 0.000000 0.582944 0 0 0 0 1.836352 3.230213 0.954270
24 32 dense on direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581952 0.000000 0 0 0.000000 0.018240 0.018240 0.000000 0.581952 0 0 0 0 2.240192 3.647641 0.878647
25 32 dense on direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582208 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.582208 0 0 0 0 1.837248 3.262454 0.987763
26 32 dense on direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.583360 0.000000 0 0 0.000000 0.017280 0.017280 0.000000 0.583360 0 0 0 0 2.244384 3.569924 0.782386
27 32 dense on direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581856 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 0.581856 0 0 0 0 1.833440 3.100709 0.828242
28 32 dense on direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.578848 0.000000 0 0 0.000000 0.017216 0.017216 0.000000 0.578848 0 0 0 0 2.235680 3.519639 0.806642
29 32 dense on direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580384 0.000000 0 0 0.000000 0.017184 0.017184 0.000000 0.580384 0 0 0 0 1.834656 3.038001 0.805299
30 32 dense on direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.583424 0.000000 0 0 0.000000 0.018112 0.018112 0.000000 0.583424 0 0 0 0 1.938464 3.256612 0.829825
31 32 dense on direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580672 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 0.580672 0 0 0 0 2.175424 3.490515 0.841968
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,on,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.583296,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,0.583296,0,0,0,0,1.830144,3.008285,0.778668
32,dense,on,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580544,0.000000,0,0,0.000000,0.016736,0.016736,0.000000,0.580544,0,0,0,0,2.022304,3.534908,1.014253
32,dense,on,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.584832,0.000000,0,0,0.000000,0.017440,0.017440,0.000000,0.584832,0,0,0,0,2.039936,3.629857,0.803696
32,dense,on,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579904,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,0.579904,0,0,0,0,1.932288,3.258997,0.840695
32,dense,on,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.584000,0.000000,0,0,0.000000,0.026304,0.026304,0.000000,0.584000,0,0,0,0,2.011808,3.356512,0.899296
32,dense,on,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582048,0.000000,0,0,0.000000,0.017632,0.017632,0.000000,0.582048,0,0,0,0,1.821632,3.049352,0.790171
32,dense,on,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582432,0.000000,0,0,0.000000,0.017536,0.017536,0.000000,0.582432,0,0,0,0,2.215712,4.145400,1.120934
32,dense,on,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581312,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.581312,0,0,0,0,2.015104,3.693618,0.985018
32,dense,on,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582816,0.000000,0,0,0.000000,0.016896,0.016896,0.000000,0.582816,0,0,0,0,1.826304,2.988537,0.858249
32,dense,on,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580640,0.000000,0,0,0.000000,0.017568,0.017568,0.000000,0.580640,0,0,0,0,2.217280,3.856605,1.089505
32,dense,on,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.585184,0.000000,0,0,0.000000,0.016480,0.016480,0.000000,0.585184,0,0,0,0,1.828704,3.077385,0.841166
32,dense,on,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581152,0.000000,0,0,0.000000,0.016672,0.016672,0.000000,0.581152,0,0,0,0,2.239808,3.987361,1.143147
32,dense,on,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579968,0.000000,0,0,0.000000,0.017984,0.017984,0.000000,0.579968,0,0,0,0,2.024128,3.421794,0.823223
32,dense,on,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581696,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.581696,0,0,0,0,2.238784,3.704839,0.965051
32,dense,on,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580640,0.000000,0,0,0.000000,0.018112,0.018112,0.000000,0.580640,0,0,0,0,2.023232,3.481467,0.833031
32,dense,on,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579232,0.000000,0,0,0.000000,0.017280,0.017280,0.000000,0.579232,0,0,0,0,2.237856,3.773257,1.023020
32,dense,on,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581536,0.000000,0,0,0.000000,0.016832,0.016832,0.000000,0.581536,0,0,0,0,2.024512,3.496896,0.862697
32,dense,on,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582272,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,0.582272,0,0,0,0,2.240064,3.537042,0.770092
32,dense,on,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579328,0.000000,0,0,0.000000,0.017120,0.017120,0.000000,0.579328,0,0,0,0,2.544416,3.824805,0.782736
32,dense,on,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580096,0.000000,0,0,0.000000,0.017056,0.017056,0.000000,0.580096,0,0,0,0,1.968704,3.390195,0.821700
32,dense,on,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579168,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.579168,0,0,0,0,2.365632,4.025804,1.114433
32,dense,on,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580608,0.000000,0,0,0.000000,0.017120,0.017120,0.000000,0.580608,0,0,0,0,1.860512,3.300837,0.893254
32,dense,on,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582656,0.000000,0,0,0.000000,0.017632,0.017632,0.000000,0.582656,0,0,0,0,2.378656,3.898173,1.022468
32,dense,on,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579616,0.000000,0,0,0.000000,0.018144,0.018144,0.000000,0.579616,0,0,0,0,1.853248,3.145003,0.809046
32,dense,on,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581088,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,0.581088,0,0,0,0,2.535456,4.014543,0.963307
32,dense,on,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579040,0.000000,0,0,0.000000,0.016704,0.016704,0.000000,0.579040,0,0,0,0,1.851232,3.201399,0.872997
32,dense,on,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580352,0.000000,0,0,0.000000,0.016640,0.016640,0.000000,0.580352,0,0,0,0,1.936128,3.967955,0.953869
32,dense,on,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581152,0.000000,0,0,0.000000,0.016512,0.016512,0.000000,0.581152,0,0,0,0,2.162752,3.478572,0.794819
32,dense,on,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579520,0.000000,0,0,0.000000,0.017344,0.017344,0.000000,0.579520,0,0,0,0,2.218336,3.788927,1.005316
32,dense,on,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581856,0.000000,0,0,0.000000,0.017472,0.017472,0.000000,0.581856,0,0,0,0,2.154752,3.476177,0.833882
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense on direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.583296 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 0.583296 0 0 0 0 1.830144 3.008285 0.778668
3 32 dense on direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580544 0.000000 0 0 0.000000 0.016736 0.016736 0.000000 0.580544 0 0 0 0 2.022304 3.534908 1.014253
4 32 dense on direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.584832 0.000000 0 0 0.000000 0.017440 0.017440 0.000000 0.584832 0 0 0 0 2.039936 3.629857 0.803696
5 32 dense on direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579904 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 0.579904 0 0 0 0 1.932288 3.258997 0.840695
6 32 dense on direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.584000 0.000000 0 0 0.000000 0.026304 0.026304 0.000000 0.584000 0 0 0 0 2.011808 3.356512 0.899296
7 32 dense on direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582048 0.000000 0 0 0.000000 0.017632 0.017632 0.000000 0.582048 0 0 0 0 1.821632 3.049352 0.790171
8 32 dense on direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582432 0.000000 0 0 0.000000 0.017536 0.017536 0.000000 0.582432 0 0 0 0 2.215712 4.145400 1.120934
9 32 dense on direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581312 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.581312 0 0 0 0 2.015104 3.693618 0.985018
10 32 dense on direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582816 0.000000 0 0 0.000000 0.016896 0.016896 0.000000 0.582816 0 0 0 0 1.826304 2.988537 0.858249
11 32 dense on direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580640 0.000000 0 0 0.000000 0.017568 0.017568 0.000000 0.580640 0 0 0 0 2.217280 3.856605 1.089505
12 32 dense on direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.585184 0.000000 0 0 0.000000 0.016480 0.016480 0.000000 0.585184 0 0 0 0 1.828704 3.077385 0.841166
13 32 dense on direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581152 0.000000 0 0 0.000000 0.016672 0.016672 0.000000 0.581152 0 0 0 0 2.239808 3.987361 1.143147
14 32 dense on direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579968 0.000000 0 0 0.000000 0.017984 0.017984 0.000000 0.579968 0 0 0 0 2.024128 3.421794 0.823223
15 32 dense on direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581696 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.581696 0 0 0 0 2.238784 3.704839 0.965051
16 32 dense on direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580640 0.000000 0 0 0.000000 0.018112 0.018112 0.000000 0.580640 0 0 0 0 2.023232 3.481467 0.833031
17 32 dense on direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579232 0.000000 0 0 0.000000 0.017280 0.017280 0.000000 0.579232 0 0 0 0 2.237856 3.773257 1.023020
18 32 dense on direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581536 0.000000 0 0 0.000000 0.016832 0.016832 0.000000 0.581536 0 0 0 0 2.024512 3.496896 0.862697
19 32 dense on direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582272 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 0.582272 0 0 0 0 2.240064 3.537042 0.770092
20 32 dense on direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579328 0.000000 0 0 0.000000 0.017120 0.017120 0.000000 0.579328 0 0 0 0 2.544416 3.824805 0.782736
21 32 dense on direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580096 0.000000 0 0 0.000000 0.017056 0.017056 0.000000 0.580096 0 0 0 0 1.968704 3.390195 0.821700
22 32 dense on direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579168 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.579168 0 0 0 0 2.365632 4.025804 1.114433
23 32 dense on direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580608 0.000000 0 0 0.000000 0.017120 0.017120 0.000000 0.580608 0 0 0 0 1.860512 3.300837 0.893254
24 32 dense on direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582656 0.000000 0 0 0.000000 0.017632 0.017632 0.000000 0.582656 0 0 0 0 2.378656 3.898173 1.022468
25 32 dense on direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579616 0.000000 0 0 0.000000 0.018144 0.018144 0.000000 0.579616 0 0 0 0 1.853248 3.145003 0.809046
26 32 dense on direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581088 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 0.581088 0 0 0 0 2.535456 4.014543 0.963307
27 32 dense on direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579040 0.000000 0 0 0.000000 0.016704 0.016704 0.000000 0.579040 0 0 0 0 1.851232 3.201399 0.872997
28 32 dense on direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580352 0.000000 0 0 0.000000 0.016640 0.016640 0.000000 0.580352 0 0 0 0 1.936128 3.967955 0.953869
29 32 dense on direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581152 0.000000 0 0 0.000000 0.016512 0.016512 0.000000 0.581152 0 0 0 0 2.162752 3.478572 0.794819
30 32 dense on direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579520 0.000000 0 0 0.000000 0.017344 0.017344 0.000000 0.579520 0 0 0 0 2.218336 3.788927 1.005316
31 32 dense on direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581856 0.000000 0 0 0.000000 0.017472 0.017472 0.000000 0.581856 0 0 0 0 2.154752 3.476177 0.833882
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
32,dense,on,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582752,0.000000,0,0,0.000000,0.017504,0.017504,0.000000,0.582752,0,0,0,0,2.103008,3.577498,0.976182
32,dense,on,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581632,0.000000,0,0,0.000000,0.017216,0.017216,0.000000,0.581632,0,0,0,0,1.830688,3.190999,0.900368
32,dense,on,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581088,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,0.581088,0,0,0,0,1.823648,3.232387,0.991901
32,dense,on,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581760,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,0.581760,0,0,0,0,1.821696,3.177995,0.874290
32,dense,on,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582944,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,0.582944,0,0,0,0,1.828736,3.174017,0.902863
32,dense,on,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580992,0.000000,0,0,0.000000,0.017248,0.017248,0.000000,0.580992,0,0,0,0,2.021024,3.523226,0.918633
32,dense,on,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579744,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,0.579744,0,0,0,0,2.167936,3.761816,0.899036
32,dense,on,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581184,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,0.581184,0,0,0,0,1.934656,3.410233,0.905198
32,dense,on,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.578528,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,0.578528,0,0,0,0,1.967904,3.400985,0.920947
32,dense,on,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581504,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,0.581504,0,0,0,0,1.936672,3.430531,0.915116
32,dense,on,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579488,0.000000,0,0,0.000000,0.018176,0.018176,0.000000,0.579488,0,0,0,0,1.967328,3.425802,0.965542
32,dense,on,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.578208,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,0.578208,0,0,0,0,1.980608,3.534808,0.981822
32,dense,on,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.578624,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,0.578624,0,0,0,0,2.154272,3.558462,0.909947
32,dense,on,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579808,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,0.579808,0,0,0,0,1.955680,3.371219,0.881162
32,dense,on,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.578816,0.000000,0,0,0.000000,0.017120,0.017120,0.000000,0.578816,0,0,0,0,1.821568,3.377421,1.090047
32,dense,on,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579840,0.000000,0,0,0.000000,0.018240,0.018240,0.000000,0.579840,0,0,0,0,2.020320,3.645116,1.009104
32,dense,on,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579232,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.579232,0,0,0,0,2.159008,3.600813,0.886643
32,dense,on,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.580288,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,0.580288,0,0,0,0,1.966368,3.399532,0.847438
32,dense,on,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581728,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,0.581728,0,0,0,0,1.823968,3.204916,0.960853
32,dense,on,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581280,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,0.581280,0,0,0,0,2.108640,3.484482,0.844834
32,dense,on,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.578432,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,0.578432,0,0,0,0,1.820736,3.095189,0.894898
32,dense,on,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579808,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,0.579808,0,0,0,0,1.932928,3.428517,0.895710
32,dense,on,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.577600,0.000000,0,0,0.000000,0.018368,0.018368,0.000000,0.577600,0,0,0,0,1.826528,3.107922,0.884719
32,dense,on,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.582080,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,0.582080,0,0,0,0,2.021280,3.710630,0.983765
32,dense,on,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579808,0.000000,0,0,0.000000,0.022368,0.022368,0.000000,0.579808,0,0,0,0,2.167136,3.601654,0.916879
32,dense,on,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579936,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,0.579936,0,0,0,0,1.936000,3.426684,0.904426
32,dense,on,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579168,0.000000,0,0,0.000000,0.017344,0.017344,0.000000,0.579168,0,0,0,0,1.824640,3.113493,0.894437
32,dense,on,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.577696,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,0.577696,0,0,0,0,2.012800,3.543103,0.932569
32,dense,on,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.581344,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,0.581344,0,0,0,0,1.823616,3.246925,0.959219
32,dense,on,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,32,0,192,12,180,180,12,45,59614304,0.579840,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,0.579840,0,0,0,0,2.371488,3.891190,0.935224
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 32 dense on direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582752 0.000000 0 0 0.000000 0.017504 0.017504 0.000000 0.582752 0 0 0 0 2.103008 3.577498 0.976182
3 32 dense on direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581632 0.000000 0 0 0.000000 0.017216 0.017216 0.000000 0.581632 0 0 0 0 1.830688 3.190999 0.900368
4 32 dense on direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581088 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 0.581088 0 0 0 0 1.823648 3.232387 0.991901
5 32 dense on direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581760 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 0.581760 0 0 0 0 1.821696 3.177995 0.874290
6 32 dense on direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582944 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 0.582944 0 0 0 0 1.828736 3.174017 0.902863
7 32 dense on direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580992 0.000000 0 0 0.000000 0.017248 0.017248 0.000000 0.580992 0 0 0 0 2.021024 3.523226 0.918633
8 32 dense on direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579744 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 0.579744 0 0 0 0 2.167936 3.761816 0.899036
9 32 dense on direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581184 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 0.581184 0 0 0 0 1.934656 3.410233 0.905198
10 32 dense on direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.578528 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 0.578528 0 0 0 0 1.967904 3.400985 0.920947
11 32 dense on direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581504 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 0.581504 0 0 0 0 1.936672 3.430531 0.915116
12 32 dense on direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579488 0.000000 0 0 0.000000 0.018176 0.018176 0.000000 0.579488 0 0 0 0 1.967328 3.425802 0.965542
13 32 dense on direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.578208 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 0.578208 0 0 0 0 1.980608 3.534808 0.981822
14 32 dense on direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.578624 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 0.578624 0 0 0 0 2.154272 3.558462 0.909947
15 32 dense on direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579808 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 0.579808 0 0 0 0 1.955680 3.371219 0.881162
16 32 dense on direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.578816 0.000000 0 0 0.000000 0.017120 0.017120 0.000000 0.578816 0 0 0 0 1.821568 3.377421 1.090047
17 32 dense on direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579840 0.000000 0 0 0.000000 0.018240 0.018240 0.000000 0.579840 0 0 0 0 2.020320 3.645116 1.009104
18 32 dense on direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579232 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.579232 0 0 0 0 2.159008 3.600813 0.886643
19 32 dense on direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.580288 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 0.580288 0 0 0 0 1.966368 3.399532 0.847438
20 32 dense on direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581728 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 0.581728 0 0 0 0 1.823968 3.204916 0.960853
21 32 dense on direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581280 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 0.581280 0 0 0 0 2.108640 3.484482 0.844834
22 32 dense on direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.578432 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 0.578432 0 0 0 0 1.820736 3.095189 0.894898
23 32 dense on direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579808 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 0.579808 0 0 0 0 1.932928 3.428517 0.895710
24 32 dense on direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.577600 0.000000 0 0 0.000000 0.018368 0.018368 0.000000 0.577600 0 0 0 0 1.826528 3.107922 0.884719
25 32 dense on direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.582080 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 0.582080 0 0 0 0 2.021280 3.710630 0.983765
26 32 dense on direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579808 0.000000 0 0 0.000000 0.022368 0.022368 0.000000 0.579808 0 0 0 0 2.167136 3.601654 0.916879
27 32 dense on direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579936 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 0.579936 0 0 0 0 1.936000 3.426684 0.904426
28 32 dense on direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579168 0.000000 0 0 0.000000 0.017344 0.017344 0.000000 0.579168 0 0 0 0 1.824640 3.113493 0.894437
29 32 dense on direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.577696 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 0.577696 0 0 0 0 2.012800 3.543103 0.932569
30 32 dense on direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.581344 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 0.581344 0 0 0 0 1.823616 3.246925 0.959219
31 32 dense on direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 32 0 192 12 180 180 12 45 59614304 0.579840 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 0.579840 0 0 0 0 2.371488 3.891190 0.935224
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,on,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107744,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,1.107744,0,0,0,0,3.490560,5.162878,1.046073
64,dense,on,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.102432,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,1.102432,0,0,0,0,2.678240,4.211114,0.945654
64,dense,on,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.097056,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,1.097056,0,0,0,0,3.024928,4.646425,0.983065
64,dense,on,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.100608,0.000000,0,0,0.000000,0.017792,0.017792,0.000000,1.100608,0,0,0,0,3.262240,4.875396,1.025925
64,dense,on,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104768,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,1.104768,0,0,0,0,2.638944,4.247713,0.960912
64,dense,on,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.099488,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,1.099488,0,0,0,0,3.030016,4.665050,0.976863
64,dense,on,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106080,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,1.106080,0,0,0,0,3.285984,4.947813,0.965501
64,dense,on,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104832,0.000000,0,0,0.000000,0.017824,0.017824,0.000000,1.104832,0,0,0,0,3.033184,4.782130,1.061081
64,dense,on,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.108064,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,1.108064,0,0,0,0,2.978304,4.470893,0.893836
64,dense,on,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.101152,0.000000,0,0,0.000000,0.016832,0.016832,0.000000,1.101152,0,0,0,0,2.905088,4.377487,0.996380
64,dense,on,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.100384,0.000000,0,0,0.000000,0.017984,0.017984,0.000000,1.100384,0,0,0,0,2.339936,4.033188,1.006579
64,dense,on,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.101856,0.000000,0,0,0.000000,0.018240,0.018240,0.000000,1.101856,0,0,0,0,2.773472,4.711648,1.005717
64,dense,on,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.101792,0.000000,0,0,0.000000,0.017184,0.017184,0.000000,1.101792,0,0,0,0,3.259936,4.938265,0.993905
64,dense,on,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.100544,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,1.100544,0,0,0,0,2.342816,4.153154,0.992292
64,dense,on,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.100800,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,1.100800,0,0,0,0,2.774496,4.764227,0.979617
64,dense,on,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.101568,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,1.101568,0,0,0,0,3.476608,5.179600,1.076831
64,dense,on,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.102624,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,1.102624,0,0,0,0,2.647520,4.460855,0.995287
64,dense,on,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.098912,0.000000,0,0,0.000000,0.018368,0.018368,0.000000,1.098912,0,0,0,0,3.031904,5.025229,1.387357
64,dense,on,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.100640,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,1.100640,0,0,0,0,3.387360,5.268638,0.997311
64,dense,on,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.103424,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,1.103424,0,0,0,0,3.395072,5.179440,1.081861
64,dense,on,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.102112,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,1.102112,0,0,0,0,3.544544,5.103246,0.931948
64,dense,on,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106496,0.000000,0,0,0.000000,0.018368,0.018368,0.000000,1.106496,0,0,0,0,2.913568,4.793772,1.195445
64,dense,on,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107360,0.000000,0,0,0.000000,0.017312,0.017312,0.000000,1.107360,0,0,0,0,3.147136,5.013146,1.177982
64,dense,on,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105792,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,1.105792,0,0,0,0,2.912416,4.717138,1.121055
64,dense,on,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107936,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,1.107936,0,0,0,0,2.762816,4.517461,1.108872
64,dense,on,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106080,0.000000,0,0,0.000000,0.017984,0.017984,0.000000,1.106080,0,0,0,0,3.321664,5.133614,1.137105
64,dense,on,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105952,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,1.105952,0,0,0,0,3.505216,5.426667,1.206746
64,dense,on,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106528,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,1.106528,0,0,0,0,2.346464,4.266538,1.172672
64,dense,on,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105888,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,1.105888,0,0,0,0,2.756800,4.586562,1.153716
64,dense,on,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105856,0.000000,0,0,0.000000,0.018240,0.018240,0.000000,1.105856,0,0,0,0,3.383264,5.249853,1.198641
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense on direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107744 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 1.107744 0 0 0 0 3.490560 5.162878 1.046073
3 64 dense on direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.102432 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 1.102432 0 0 0 0 2.678240 4.211114 0.945654
4 64 dense on direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.097056 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 1.097056 0 0 0 0 3.024928 4.646425 0.983065
5 64 dense on direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.100608 0.000000 0 0 0.000000 0.017792 0.017792 0.000000 1.100608 0 0 0 0 3.262240 4.875396 1.025925
6 64 dense on direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104768 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 1.104768 0 0 0 0 2.638944 4.247713 0.960912
7 64 dense on direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.099488 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 1.099488 0 0 0 0 3.030016 4.665050 0.976863
8 64 dense on direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106080 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 1.106080 0 0 0 0 3.285984 4.947813 0.965501
9 64 dense on direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104832 0.000000 0 0 0.000000 0.017824 0.017824 0.000000 1.104832 0 0 0 0 3.033184 4.782130 1.061081
10 64 dense on direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.108064 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 1.108064 0 0 0 0 2.978304 4.470893 0.893836
11 64 dense on direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.101152 0.000000 0 0 0.000000 0.016832 0.016832 0.000000 1.101152 0 0 0 0 2.905088 4.377487 0.996380
12 64 dense on direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.100384 0.000000 0 0 0.000000 0.017984 0.017984 0.000000 1.100384 0 0 0 0 2.339936 4.033188 1.006579
13 64 dense on direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.101856 0.000000 0 0 0.000000 0.018240 0.018240 0.000000 1.101856 0 0 0 0 2.773472 4.711648 1.005717
14 64 dense on direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.101792 0.000000 0 0 0.000000 0.017184 0.017184 0.000000 1.101792 0 0 0 0 3.259936 4.938265 0.993905
15 64 dense on direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.100544 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 1.100544 0 0 0 0 2.342816 4.153154 0.992292
16 64 dense on direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.100800 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 1.100800 0 0 0 0 2.774496 4.764227 0.979617
17 64 dense on direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.101568 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 1.101568 0 0 0 0 3.476608 5.179600 1.076831
18 64 dense on direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.102624 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 1.102624 0 0 0 0 2.647520 4.460855 0.995287
19 64 dense on direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.098912 0.000000 0 0 0.000000 0.018368 0.018368 0.000000 1.098912 0 0 0 0 3.031904 5.025229 1.387357
20 64 dense on direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.100640 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 1.100640 0 0 0 0 3.387360 5.268638 0.997311
21 64 dense on direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.103424 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 1.103424 0 0 0 0 3.395072 5.179440 1.081861
22 64 dense on direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.102112 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 1.102112 0 0 0 0 3.544544 5.103246 0.931948
23 64 dense on direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106496 0.000000 0 0 0.000000 0.018368 0.018368 0.000000 1.106496 0 0 0 0 2.913568 4.793772 1.195445
24 64 dense on direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107360 0.000000 0 0 0.000000 0.017312 0.017312 0.000000 1.107360 0 0 0 0 3.147136 5.013146 1.177982
25 64 dense on direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105792 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 1.105792 0 0 0 0 2.912416 4.717138 1.121055
26 64 dense on direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107936 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 1.107936 0 0 0 0 2.762816 4.517461 1.108872
27 64 dense on direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106080 0.000000 0 0 0.000000 0.017984 0.017984 0.000000 1.106080 0 0 0 0 3.321664 5.133614 1.137105
28 64 dense on direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105952 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 1.105952 0 0 0 0 3.505216 5.426667 1.206746
29 64 dense on direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106528 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 1.106528 0 0 0 0 2.346464 4.266538 1.172672
30 64 dense on direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105888 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 1.105888 0 0 0 0 2.756800 4.586562 1.153716
31 64 dense on direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105856 0.000000 0 0 0.000000 0.018240 0.018240 0.000000 1.105856 0 0 0 0 3.383264 5.249853 1.198641
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,on,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104768,0.000000,0,0,0.000000,0.017728,0.017728,0.000000,1.104768,0,0,0,0,3.341472,4.889263,0.985048
64,dense,on,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.103648,0.000000,0,0,0.000000,0.018240,0.018240,0.000000,1.103648,0,0,0,0,2.832320,4.478939,0.905518
64,dense,on,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.102720,0.000000,0,0,0.000000,0.017696,0.017696,0.000000,1.102720,0,0,0,0,2.784128,4.431389,1.091799
64,dense,on,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.102368,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,1.102368,0,0,0,0,3.244256,4.903861,1.127817
64,dense,on,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104704,0.000000,0,0,0.000000,0.017376,0.017376,0.000000,1.104704,0,0,0,0,2.930688,4.700747,1.216695
64,dense,on,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.103360,0.000000,0,0,0.000000,0.018272,0.018272,0.000000,1.103360,0,0,0,0,3.297824,5.152690,1.362700
64,dense,on,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.113280,0.000000,0,0,0.000000,0.017760,0.017760,0.000000,1.113280,0,0,0,0,2.356800,13.264972,1.053106
64,dense,on,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105504,0.000000,0,0,0.000000,0.017184,0.017184,0.000000,1.105504,0,0,0,0,2.807616,4.616799,1.100035
64,dense,on,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.108352,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,1.108352,0,0,0,0,2.717184,4.218277,0.949831
64,dense,on,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.108544,0.000000,0,0,0.000000,0.017792,0.017792,0.000000,1.108544,0,0,0,0,2.780800,4.551155,1.049911
64,dense,on,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107232,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,1.107232,0,0,0,0,3.367680,4.896446,0.999305
64,dense,on,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.108224,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,1.108224,0,0,0,0,3.111872,4.974613,0.959059
64,dense,on,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105888,0.000000,0,0,0.000000,0.017824,0.017824,0.000000,1.105888,0,0,0,0,3.278400,4.927004,0.887083
64,dense,on,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106816,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,1.106816,0,0,0,0,3.494816,5.018366,1.031626
64,dense,on,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.131168,0.000000,0,0,0.000000,0.017984,0.017984,0.000000,1.131168,0,0,0,0,2.665600,4.159185,0.995057
64,dense,on,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106784,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,1.106784,0,0,0,0,3.220000,4.764777,0.993173
64,dense,on,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105920,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,1.105920,0,0,0,0,3.486560,4.882059,1.003743
64,dense,on,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104128,0.000000,0,0,0.000000,0.018368,0.018368,0.000000,1.104128,0,0,0,0,2.362208,3.785100,0.933671
64,dense,on,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104032,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,1.104032,0,0,0,0,3.393120,4.777792,0.866525
64,dense,on,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.109344,0.000000,0,0,0.000000,0.017568,0.017568,0.000000,1.109344,0,0,0,0,3.143872,4.599777,1.019423
64,dense,on,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105984,0.000000,0,0,0.000000,0.018368,0.018368,0.000000,1.105984,0,0,0,0,2.365952,3.823312,0.918052
64,dense,on,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.102528,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,1.102528,0,0,0,0,2.777024,4.283150,0.985649
64,dense,on,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105312,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,1.105312,0,0,0,0,3.251584,4.827195,0.990509
64,dense,on,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106048,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,1.106048,0,0,0,0,2.873312,4.532840,0.970180
64,dense,on,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107104,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,1.107104,0,0,0,0,2.756864,4.601780,1.192950
64,dense,on,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106656,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,1.106656,0,0,0,0,3.191744,4.728209,1.016648
64,dense,on,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105120,0.000000,0,0,0.000000,0.017152,0.017152,0.000000,1.105120,0,0,0,0,3.134464,4.609816,0.946014
64,dense,on,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107360,0.000000,0,0,0.000000,0.016896,0.016896,0.000000,1.107360,0,0,0,0,2.780672,4.565431,1.055691
64,dense,on,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104672,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,1.104672,0,0,0,0,3.183200,4.683895,0.975130
64,dense,on,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.103296,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,1.103296,0,0,0,0,3.122880,4.399750,0.849652
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense on direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104768 0.000000 0 0 0.000000 0.017728 0.017728 0.000000 1.104768 0 0 0 0 3.341472 4.889263 0.985048
3 64 dense on direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.103648 0.000000 0 0 0.000000 0.018240 0.018240 0.000000 1.103648 0 0 0 0 2.832320 4.478939 0.905518
4 64 dense on direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.102720 0.000000 0 0 0.000000 0.017696 0.017696 0.000000 1.102720 0 0 0 0 2.784128 4.431389 1.091799
5 64 dense on direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.102368 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 1.102368 0 0 0 0 3.244256 4.903861 1.127817
6 64 dense on direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104704 0.000000 0 0 0.000000 0.017376 0.017376 0.000000 1.104704 0 0 0 0 2.930688 4.700747 1.216695
7 64 dense on direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.103360 0.000000 0 0 0.000000 0.018272 0.018272 0.000000 1.103360 0 0 0 0 3.297824 5.152690 1.362700
8 64 dense on direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.113280 0.000000 0 0 0.000000 0.017760 0.017760 0.000000 1.113280 0 0 0 0 2.356800 13.264972 1.053106
9 64 dense on direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105504 0.000000 0 0 0.000000 0.017184 0.017184 0.000000 1.105504 0 0 0 0 2.807616 4.616799 1.100035
10 64 dense on direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.108352 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 1.108352 0 0 0 0 2.717184 4.218277 0.949831
11 64 dense on direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.108544 0.000000 0 0 0.000000 0.017792 0.017792 0.000000 1.108544 0 0 0 0 2.780800 4.551155 1.049911
12 64 dense on direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107232 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 1.107232 0 0 0 0 3.367680 4.896446 0.999305
13 64 dense on direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.108224 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 1.108224 0 0 0 0 3.111872 4.974613 0.959059
14 64 dense on direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105888 0.000000 0 0 0.000000 0.017824 0.017824 0.000000 1.105888 0 0 0 0 3.278400 4.927004 0.887083
15 64 dense on direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106816 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 1.106816 0 0 0 0 3.494816 5.018366 1.031626
16 64 dense on direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.131168 0.000000 0 0 0.000000 0.017984 0.017984 0.000000 1.131168 0 0 0 0 2.665600 4.159185 0.995057
17 64 dense on direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106784 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 1.106784 0 0 0 0 3.220000 4.764777 0.993173
18 64 dense on direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105920 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 1.105920 0 0 0 0 3.486560 4.882059 1.003743
19 64 dense on direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104128 0.000000 0 0 0.000000 0.018368 0.018368 0.000000 1.104128 0 0 0 0 2.362208 3.785100 0.933671
20 64 dense on direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104032 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 1.104032 0 0 0 0 3.393120 4.777792 0.866525
21 64 dense on direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.109344 0.000000 0 0 0.000000 0.017568 0.017568 0.000000 1.109344 0 0 0 0 3.143872 4.599777 1.019423
22 64 dense on direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105984 0.000000 0 0 0.000000 0.018368 0.018368 0.000000 1.105984 0 0 0 0 2.365952 3.823312 0.918052
23 64 dense on direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.102528 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 1.102528 0 0 0 0 2.777024 4.283150 0.985649
24 64 dense on direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105312 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 1.105312 0 0 0 0 3.251584 4.827195 0.990509
25 64 dense on direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106048 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 1.106048 0 0 0 0 2.873312 4.532840 0.970180
26 64 dense on direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107104 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 1.107104 0 0 0 0 2.756864 4.601780 1.192950
27 64 dense on direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106656 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 1.106656 0 0 0 0 3.191744 4.728209 1.016648
28 64 dense on direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105120 0.000000 0 0 0.000000 0.017152 0.017152 0.000000 1.105120 0 0 0 0 3.134464 4.609816 0.946014
29 64 dense on direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107360 0.000000 0 0 0.000000 0.016896 0.016896 0.000000 1.107360 0 0 0 0 2.780672 4.565431 1.055691
30 64 dense on direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104672 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 1.104672 0 0 0 0 3.183200 4.683895 0.975130
31 64 dense on direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.103296 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 1.103296 0 0 0 0 3.122880 4.399750 0.849652
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
64,dense,on,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.100800,0.000000,0,0,0.000000,0.017632,0.017632,0.000000,1.100800,0,0,0,0,3.348512,4.901456,0.970311
64,dense,on,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.100128,0.000000,0,0,0.000000,0.017216,0.017216,0.000000,1.100128,0,0,0,0,2.645760,4.270065,0.929343
64,dense,on,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.098976,0.000000,0,0,0.000000,0.016576,0.016576,0.000000,1.098976,0,0,0,0,3.130304,4.657475,1.010226
64,dense,on,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.101248,0.000000,0,0,0.000000,0.017216,0.017216,0.000000,1.101248,0,0,0,0,3.411136,5.368998,1.312496
64,dense,on,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.103488,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,1.103488,0,0,0,0,2.916704,4.448681,0.907863
64,dense,on,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.100096,0.000000,0,0,0.000000,0.018368,0.018368,0.000000,1.100096,0,0,0,0,2.786912,4.539333,0.946846
64,dense,on,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.102080,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,1.102080,0,0,0,0,3.462656,5.200270,0.936416
64,dense,on,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105504,0.000000,0,0,0.000000,0.017056,0.017056,0.000000,1.105504,0,0,0,0,2.920640,4.363491,0.907662
64,dense,on,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104416,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,1.104416,0,0,0,0,2.768864,4.225771,0.938951
64,dense,on,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105504,0.000000,0,0,0.000000,0.016768,0.016768,0.000000,1.105504,0,0,0,0,3.529056,5.110610,0.922701
64,dense,on,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106816,0.000000,0,0,0.000000,0.018176,0.018176,0.000000,1.106816,0,0,0,0,2.910208,4.393157,0.906340
64,dense,on,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107392,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,1.107392,0,0,0,0,2.796288,4.308397,0.931257
64,dense,on,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107424,0.000000,0,0,0.000000,0.016672,0.016672,0.000000,1.107424,0,0,0,0,3.533152,5.293395,1.108251
64,dense,on,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.110432,0.000000,0,0,0.000000,0.016672,0.016672,0.000000,1.110432,0,0,0,0,2.914464,4.739069,1.141604
64,dense,on,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.103520,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,1.103520,0,0,0,0,2.653984,4.658297,1.116586
64,dense,on,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105088,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,1.105088,0,0,0,0,3.304736,5.336867,1.349585
64,dense,on,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105312,0.000000,0,0,0.000000,0.017216,0.017216,0.000000,1.105312,0,0,0,0,3.536256,5.558054,1.239698
64,dense,on,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.117856,0.000000,0,0,0.000000,0.031936,0.031936,0.000000,1.117856,0,0,0,0,2.958400,4.762604,0.984217
64,dense,on,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.105120,0.000000,0,0,0.000000,0.016576,0.016576,0.000000,1.105120,0,0,0,0,2.769792,4.532229,1.061021
64,dense,on,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.110656,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,1.110656,0,0,0,0,3.805408,5.286031,0.912893
64,dense,on,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107744,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,1.107744,0,0,0,0,3.190528,4.605197,0.906730
64,dense,on,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106112,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,1.106112,0,0,0,0,2.606848,4.036855,0.826940
64,dense,on,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106592,0.000000,0,0,0.000000,0.017376,0.017376,0.000000,1.106592,0,0,0,0,3.327072,4.711467,0.862667
64,dense,on,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104864,0.000000,0,0,0.000000,0.017312,0.017312,0.000000,1.104864,0,0,0,0,2.698208,3.902382,0.819997
64,dense,on,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.108832,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,1.108832,0,0,0,0,2.755968,4.218488,0.849993
64,dense,on,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.103744,0.000000,0,0,0.000000,0.018144,0.018144,0.000000,1.103744,0,0,0,0,3.351392,4.779265,0.943179
64,dense,on,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.106112,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,1.106112,0,0,0,0,2.869856,4.200714,0.895770
64,dense,on,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.107200,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,1.107200,0,0,0,0,3.136448,4.586692,0.923782
64,dense,on,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.104416,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,1.104416,0,0,0,0,3.531552,5.041801,0.955272
64,dense,on,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,64,0,384,12,372,372,12,45,59616864,1.101600,0.000000,0,0,0.000000,0.017376,0.017376,0.000000,1.101600,0,0,0,0,2.687520,4.085216,0.903684
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 64 dense on direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.100800 0.000000 0 0 0.000000 0.017632 0.017632 0.000000 1.100800 0 0 0 0 3.348512 4.901456 0.970311
3 64 dense on direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.100128 0.000000 0 0 0.000000 0.017216 0.017216 0.000000 1.100128 0 0 0 0 2.645760 4.270065 0.929343
4 64 dense on direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.098976 0.000000 0 0 0.000000 0.016576 0.016576 0.000000 1.098976 0 0 0 0 3.130304 4.657475 1.010226
5 64 dense on direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.101248 0.000000 0 0 0.000000 0.017216 0.017216 0.000000 1.101248 0 0 0 0 3.411136 5.368998 1.312496
6 64 dense on direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.103488 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 1.103488 0 0 0 0 2.916704 4.448681 0.907863
7 64 dense on direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.100096 0.000000 0 0 0.000000 0.018368 0.018368 0.000000 1.100096 0 0 0 0 2.786912 4.539333 0.946846
8 64 dense on direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.102080 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 1.102080 0 0 0 0 3.462656 5.200270 0.936416
9 64 dense on direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105504 0.000000 0 0 0.000000 0.017056 0.017056 0.000000 1.105504 0 0 0 0 2.920640 4.363491 0.907662
10 64 dense on direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104416 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 1.104416 0 0 0 0 2.768864 4.225771 0.938951
11 64 dense on direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105504 0.000000 0 0 0.000000 0.016768 0.016768 0.000000 1.105504 0 0 0 0 3.529056 5.110610 0.922701
12 64 dense on direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106816 0.000000 0 0 0.000000 0.018176 0.018176 0.000000 1.106816 0 0 0 0 2.910208 4.393157 0.906340
13 64 dense on direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107392 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 1.107392 0 0 0 0 2.796288 4.308397 0.931257
14 64 dense on direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107424 0.000000 0 0 0.000000 0.016672 0.016672 0.000000 1.107424 0 0 0 0 3.533152 5.293395 1.108251
15 64 dense on direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.110432 0.000000 0 0 0.000000 0.016672 0.016672 0.000000 1.110432 0 0 0 0 2.914464 4.739069 1.141604
16 64 dense on direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.103520 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 1.103520 0 0 0 0 2.653984 4.658297 1.116586
17 64 dense on direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105088 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 1.105088 0 0 0 0 3.304736 5.336867 1.349585
18 64 dense on direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105312 0.000000 0 0 0.000000 0.017216 0.017216 0.000000 1.105312 0 0 0 0 3.536256 5.558054 1.239698
19 64 dense on direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.117856 0.000000 0 0 0.000000 0.031936 0.031936 0.000000 1.117856 0 0 0 0 2.958400 4.762604 0.984217
20 64 dense on direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.105120 0.000000 0 0 0.000000 0.016576 0.016576 0.000000 1.105120 0 0 0 0 2.769792 4.532229 1.061021
21 64 dense on direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.110656 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 1.110656 0 0 0 0 3.805408 5.286031 0.912893
22 64 dense on direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107744 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 1.107744 0 0 0 0 3.190528 4.605197 0.906730
23 64 dense on direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106112 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 1.106112 0 0 0 0 2.606848 4.036855 0.826940
24 64 dense on direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106592 0.000000 0 0 0.000000 0.017376 0.017376 0.000000 1.106592 0 0 0 0 3.327072 4.711467 0.862667
25 64 dense on direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104864 0.000000 0 0 0.000000 0.017312 0.017312 0.000000 1.104864 0 0 0 0 2.698208 3.902382 0.819997
26 64 dense on direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.108832 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 1.108832 0 0 0 0 2.755968 4.218488 0.849993
27 64 dense on direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.103744 0.000000 0 0 0.000000 0.018144 0.018144 0.000000 1.103744 0 0 0 0 3.351392 4.779265 0.943179
28 64 dense on direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.106112 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 1.106112 0 0 0 0 2.869856 4.200714 0.895770
29 64 dense on direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.107200 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 1.107200 0 0 0 0 3.136448 4.586692 0.923782
30 64 dense on direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.104416 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 1.104416 0 0 0 0 3.531552 5.041801 0.955272
31 64 dense on direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 64 0 384 12 372 372 12 45 59616864 1.101600 0.000000 0 0 0.000000 0.017376 0.017376 0.000000 1.101600 0 0 0 0 2.687520 4.085216 0.903684
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,on,direct,direct,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150656,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.150656,0,0,0,0,4.126176,5.626002,0.895289
128,dense,on,direct,direct,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.151648,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,2.151648,0,0,0,0,3.678592,5.082287,0.812252
128,dense,on,direct,direct,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.159104,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,2.159104,0,0,0,0,4.370944,5.790393,0.878487
128,dense,on,direct,direct,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.152256,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,2.152256,0,0,0,0,4.317824,5.882175,0.969839
128,dense,on,direct,direct,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.153440,0.000000,0,0,0.000000,0.017120,0.017120,0.000000,2.153440,0,0,0,0,4.440256,6.243377,1.152824
128,dense,on,direct,direct,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.161312,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,2.161312,0,0,0,0,4.440928,6.562839,1.121195
128,dense,on,direct,direct,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.158368,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,2.158368,0,0,0,0,4.816640,7.025613,1.114061
128,dense,on,direct,direct,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.158944,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,2.158944,0,0,0,0,4.732128,6.294283,0.980880
128,dense,on,direct,direct,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.163648,0.000000,0,0,0.000000,0.017792,0.017792,0.000000,2.163648,0,0,0,0,4.126016,5.748914,1.014714
128,dense,on,direct,direct,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.153664,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,2.153664,0,0,0,0,4.112384,5.775324,1.013702
128,dense,on,direct,direct,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.153760,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.153760,0,0,0,0,4.402080,8.203124,3.041057
128,dense,on,direct,direct,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.152224,0.000000,0,0,0.000000,0.018368,0.018368,0.000000,2.152224,0,0,0,0,4.019488,5.573574,0.891021
128,dense,on,direct,direct,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.159264,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,2.159264,0,0,0,0,4.030816,5.865744,0.851967
128,dense,on,direct,direct,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.153088,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,2.153088,0,0,0,0,4.541952,6.192271,1.113841
128,dense,on,direct,direct,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.143200,0.000000,0,0,0.000000,0.017632,0.017632,0.000000,2.143200,0,0,0,0,4.402336,6.264977,1.246021
128,dense,on,direct,direct,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.147264,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,2.147264,0,0,0,0,4.408000,6.701291,1.506131
128,dense,on,direct,direct,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.148640,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,2.148640,0,0,0,0,4.417216,6.493850,1.125563
128,dense,on,direct,direct,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.142560,0.000000,0,0,0.000000,0.017216,0.017216,0.000000,2.142560,0,0,0,0,4.536992,6.343646,0.970431
128,dense,on,direct,direct,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.144480,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,2.144480,0,0,0,0,4.807904,6.404401,1.021387
128,dense,on,direct,direct,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.144992,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,2.144992,0,0,0,0,4.664768,6.310083,0.944863
128,dense,on,direct,direct,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150880,0.000000,0,0,0.000000,0.017120,0.017120,0.000000,2.150880,0,0,0,0,4.080864,5.698349,0.962115
128,dense,on,direct,direct,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.142560,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,2.142560,0,0,0,0,3.957280,5.680636,1.171751
128,dense,on,direct,direct,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150784,0.000000,0,0,0.000000,0.020512,0.020512,0.000000,2.150784,0,0,0,0,3.821792,6.416543,1.473790
128,dense,on,direct,direct,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.149440,0.000000,0,0,0.000000,0.018176,0.018176,0.000000,2.149440,0,0,0,0,4.726144,7.222694,1.191869
128,dense,on,direct,direct,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.143552,0.000000,0,0,0.000000,0.018912,0.018912,0.000000,2.143552,0,0,0,0,4.107424,6.039722,0.969689
128,dense,on,direct,direct,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.145824,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,2.145824,0,0,0,0,5.159744,7.010153,1.069497
128,dense,on,direct,direct,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.142016,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.142016,0,0,0,0,4.427328,6.096519,1.041244
128,dense,on,direct,direct,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.148576,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.148576,0,0,0,0,4.551936,6.232296,1.047155
128,dense,on,direct,direct,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.144480,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,2.144480,0,0,0,0,4.569824,6.243668,1.077432
128,dense,on,direct,direct,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.139136,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,2.139136,0,0,0,0,4.410752,5.962306,0.945393
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense on direct direct forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150656 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.150656 0 0 0 0 4.126176 5.626002 0.895289
3 128 dense on direct direct forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.151648 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 2.151648 0 0 0 0 3.678592 5.082287 0.812252
4 128 dense on direct direct forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.159104 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 2.159104 0 0 0 0 4.370944 5.790393 0.878487
5 128 dense on direct direct forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.152256 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 2.152256 0 0 0 0 4.317824 5.882175 0.969839
6 128 dense on direct direct forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.153440 0.000000 0 0 0.000000 0.017120 0.017120 0.000000 2.153440 0 0 0 0 4.440256 6.243377 1.152824
7 128 dense on direct direct forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.161312 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 2.161312 0 0 0 0 4.440928 6.562839 1.121195
8 128 dense on direct direct forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.158368 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 2.158368 0 0 0 0 4.816640 7.025613 1.114061
9 128 dense on direct direct forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.158944 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 2.158944 0 0 0 0 4.732128 6.294283 0.980880
10 128 dense on direct direct forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.163648 0.000000 0 0 0.000000 0.017792 0.017792 0.000000 2.163648 0 0 0 0 4.126016 5.748914 1.014714
11 128 dense on direct direct forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.153664 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 2.153664 0 0 0 0 4.112384 5.775324 1.013702
12 128 dense on direct direct forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.153760 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.153760 0 0 0 0 4.402080 8.203124 3.041057
13 128 dense on direct direct forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.152224 0.000000 0 0 0.000000 0.018368 0.018368 0.000000 2.152224 0 0 0 0 4.019488 5.573574 0.891021
14 128 dense on direct direct forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.159264 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 2.159264 0 0 0 0 4.030816 5.865744 0.851967
15 128 dense on direct direct forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.153088 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 2.153088 0 0 0 0 4.541952 6.192271 1.113841
16 128 dense on direct direct forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.143200 0.000000 0 0 0.000000 0.017632 0.017632 0.000000 2.143200 0 0 0 0 4.402336 6.264977 1.246021
17 128 dense on direct direct forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.147264 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 2.147264 0 0 0 0 4.408000 6.701291 1.506131
18 128 dense on direct direct forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.148640 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 2.148640 0 0 0 0 4.417216 6.493850 1.125563
19 128 dense on direct direct forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.142560 0.000000 0 0 0.000000 0.017216 0.017216 0.000000 2.142560 0 0 0 0 4.536992 6.343646 0.970431
20 128 dense on direct direct forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.144480 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 2.144480 0 0 0 0 4.807904 6.404401 1.021387
21 128 dense on direct direct forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.144992 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 2.144992 0 0 0 0 4.664768 6.310083 0.944863
22 128 dense on direct direct forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150880 0.000000 0 0 0.000000 0.017120 0.017120 0.000000 2.150880 0 0 0 0 4.080864 5.698349 0.962115
23 128 dense on direct direct forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.142560 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 2.142560 0 0 0 0 3.957280 5.680636 1.171751
24 128 dense on direct direct forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150784 0.000000 0 0 0.000000 0.020512 0.020512 0.000000 2.150784 0 0 0 0 3.821792 6.416543 1.473790
25 128 dense on direct direct forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.149440 0.000000 0 0 0.000000 0.018176 0.018176 0.000000 2.149440 0 0 0 0 4.726144 7.222694 1.191869
26 128 dense on direct direct forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.143552 0.000000 0 0 0.000000 0.018912 0.018912 0.000000 2.143552 0 0 0 0 4.107424 6.039722 0.969689
27 128 dense on direct direct forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.145824 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 2.145824 0 0 0 0 5.159744 7.010153 1.069497
28 128 dense on direct direct forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.142016 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.142016 0 0 0 0 4.427328 6.096519 1.041244
29 128 dense on direct direct forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.148576 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.148576 0 0 0 0 4.551936 6.232296 1.047155
30 128 dense on direct direct forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.144480 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 2.144480 0 0 0 0 4.569824 6.243668 1.077432
31 128 dense on direct direct forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.139136 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 2.139136 0 0 0 0 4.410752 5.962306 0.945393
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,on,direct,direct,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.155712,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,2.155712,0,0,0,0,4.447104,6.091360,0.847027
128,dense,on,direct,direct,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.153984,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.153984,0,0,0,0,4.843648,6.385506,0.956875
128,dense,on,direct,direct,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.157664,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,2.157664,0,0,0,0,4.830880,6.277862,0.903465
128,dense,on,direct,direct,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.153728,0.000000,0,0,0.000000,0.018144,0.018144,0.000000,2.153728,0,0,0,0,4.820192,6.212488,0.801322
128,dense,on,direct,direct,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.149760,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,2.149760,0,0,0,0,4.418752,5.913104,0.926227
128,dense,on,direct,direct,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.152832,0.000000,0,0,0.000000,0.018272,0.018272,0.000000,2.152832,0,0,0,0,3.743040,5.175512,0.858359
128,dense,on,direct,direct,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.155584,0.000000,0,0,0.000000,0.018112,0.018112,0.000000,2.155584,0,0,0,0,3.806144,5.808877,1.225952
128,dense,on,direct,direct,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150816,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,2.150816,0,0,0,0,3.814720,6.085469,1.246452
128,dense,on,direct,direct,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.161696,0.000000,0,0,0.000000,0.018464,0.018464,0.000000,2.161696,0,0,0,0,4.557696,6.135754,0.969589
128,dense,on,direct,direct,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.169504,0.000000,0,0,0.000000,0.018528,0.018528,0.000000,2.169504,0,0,0,0,4.833984,6.310213,0.900789
128,dense,on,direct,direct,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.156512,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.156512,0,0,0,0,4.416192,5.964310,0.993634
128,dense,on,direct,direct,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.162592,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.162592,0,0,0,0,4.431904,6.475395,1.293550
128,dense,on,direct,direct,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150528,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,2.150528,0,0,0,0,4.544032,6.421222,1.216043
128,dense,on,direct,direct,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150848,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,2.150848,0,0,0,0,4.527744,6.430300,1.030835
128,dense,on,direct,direct,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.144960,0.000000,0,0,0.000000,0.017952,0.017952,0.000000,2.144960,0,0,0,0,3.653760,5.293545,0.956283
128,dense,on,direct,direct,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.143840,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.143840,0,0,0,0,4.452672,6.061914,0.874580
128,dense,on,direct,direct,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.138464,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,2.138464,0,0,0,0,3.779904,5.428790,0.905699
128,dense,on,direct,direct,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.151104,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,2.151104,0,0,0,0,5.178560,6.628614,0.902171
128,dense,on,direct,direct,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.142080,0.000000,0,0,0.000000,0.018656,0.018656,0.000000,2.142080,0,0,0,0,4.412832,6.085028,1.091870
128,dense,on,direct,direct,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.155520,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.155520,0,0,0,0,4.411776,6.424468,1.239157
128,dense,on,direct,direct,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.152320,0.000000,0,0,0.000000,0.018176,0.018176,0.000000,2.152320,0,0,0,0,4.747328,6.975949,1.416482
128,dense,on,direct,direct,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.147328,0.000000,0,0,0.000000,0.019296,0.019296,0.000000,2.147328,0,0,0,0,4.573248,6.422685,0.935615
128,dense,on,direct,direct,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.143616,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,2.143616,0,0,0,0,4.682752,6.545236,1.213639
128,dense,on,direct,direct,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.140960,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,2.140960,0,0,0,0,4.225056,5.885552,0.903454
128,dense,on,direct,direct,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.148096,0.000000,0,0,0.000000,0.018176,0.018176,0.000000,2.148096,0,0,0,0,4.032192,5.903386,1.151532
128,dense,on,direct,direct,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.151808,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.151808,0,0,0,0,4.131360,6.000038,0.952677
128,dense,on,direct,direct,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.146176,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,2.146176,0,0,0,0,3.819936,5.545440,1.166741
128,dense,on,direct,direct,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.149248,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.149248,0,0,0,0,4.816928,7.226171,1.429887
128,dense,on,direct,direct,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150912,0.000000,0,0,0.000000,0.018144,0.018144,0.000000,2.150912,0,0,0,0,4.727552,6.980918,1.288640
128,dense,on,direct,direct,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.143360,0.000000,0,0,0.000000,0.019200,0.019200,0.000000,2.143360,0,0,0,0,5.152960,7.081137,1.303870
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense on direct direct forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.155712 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 2.155712 0 0 0 0 4.447104 6.091360 0.847027
3 128 dense on direct direct forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.153984 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.153984 0 0 0 0 4.843648 6.385506 0.956875
4 128 dense on direct direct forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.157664 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 2.157664 0 0 0 0 4.830880 6.277862 0.903465
5 128 dense on direct direct forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.153728 0.000000 0 0 0.000000 0.018144 0.018144 0.000000 2.153728 0 0 0 0 4.820192 6.212488 0.801322
6 128 dense on direct direct forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.149760 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 2.149760 0 0 0 0 4.418752 5.913104 0.926227
7 128 dense on direct direct forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.152832 0.000000 0 0 0.000000 0.018272 0.018272 0.000000 2.152832 0 0 0 0 3.743040 5.175512 0.858359
8 128 dense on direct direct forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.155584 0.000000 0 0 0.000000 0.018112 0.018112 0.000000 2.155584 0 0 0 0 3.806144 5.808877 1.225952
9 128 dense on direct direct forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150816 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 2.150816 0 0 0 0 3.814720 6.085469 1.246452
10 128 dense on direct direct forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.161696 0.000000 0 0 0.000000 0.018464 0.018464 0.000000 2.161696 0 0 0 0 4.557696 6.135754 0.969589
11 128 dense on direct direct forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.169504 0.000000 0 0 0.000000 0.018528 0.018528 0.000000 2.169504 0 0 0 0 4.833984 6.310213 0.900789
12 128 dense on direct direct forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.156512 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.156512 0 0 0 0 4.416192 5.964310 0.993634
13 128 dense on direct direct forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.162592 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.162592 0 0 0 0 4.431904 6.475395 1.293550
14 128 dense on direct direct forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150528 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 2.150528 0 0 0 0 4.544032 6.421222 1.216043
15 128 dense on direct direct forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150848 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 2.150848 0 0 0 0 4.527744 6.430300 1.030835
16 128 dense on direct direct forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.144960 0.000000 0 0 0.000000 0.017952 0.017952 0.000000 2.144960 0 0 0 0 3.653760 5.293545 0.956283
17 128 dense on direct direct forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.143840 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.143840 0 0 0 0 4.452672 6.061914 0.874580
18 128 dense on direct direct forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.138464 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 2.138464 0 0 0 0 3.779904 5.428790 0.905699
19 128 dense on direct direct forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.151104 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 2.151104 0 0 0 0 5.178560 6.628614 0.902171
20 128 dense on direct direct forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.142080 0.000000 0 0 0.000000 0.018656 0.018656 0.000000 2.142080 0 0 0 0 4.412832 6.085028 1.091870
21 128 dense on direct direct forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.155520 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.155520 0 0 0 0 4.411776 6.424468 1.239157
22 128 dense on direct direct forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.152320 0.000000 0 0 0.000000 0.018176 0.018176 0.000000 2.152320 0 0 0 0 4.747328 6.975949 1.416482
23 128 dense on direct direct forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.147328 0.000000 0 0 0.000000 0.019296 0.019296 0.000000 2.147328 0 0 0 0 4.573248 6.422685 0.935615
24 128 dense on direct direct forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.143616 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 2.143616 0 0 0 0 4.682752 6.545236 1.213639
25 128 dense on direct direct forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.140960 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 2.140960 0 0 0 0 4.225056 5.885552 0.903454
26 128 dense on direct direct forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.148096 0.000000 0 0 0.000000 0.018176 0.018176 0.000000 2.148096 0 0 0 0 4.032192 5.903386 1.151532
27 128 dense on direct direct forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.151808 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.151808 0 0 0 0 4.131360 6.000038 0.952677
28 128 dense on direct direct forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.146176 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 2.146176 0 0 0 0 3.819936 5.545440 1.166741
29 128 dense on direct direct forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.149248 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.149248 0 0 0 0 4.816928 7.226171 1.429887
30 128 dense on direct direct forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150912 0.000000 0 0 0.000000 0.018144 0.018144 0.000000 2.150912 0 0 0 0 4.727552 6.980918 1.288640
31 128 dense on direct direct forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.143360 0.000000 0 0 0.000000 0.019200 0.019200 0.000000 2.143360 0 0 0 0 5.152960 7.081137 1.303870
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
128,dense,on,direct,direct,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.155104,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,2.155104,0,0,0,0,4.556640,6.122138,1.034812
128,dense,on,direct,direct,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.155520,0.000000,0,0,0.000000,0.018464,0.018464,0.000000,2.155520,0,0,0,0,4.198976,6.067275,0.931026
128,dense,on,direct,direct,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.163648,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,2.163648,0,0,0,0,4.571712,6.088655,0.978936
128,dense,on,direct,direct,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.156832,0.000000,0,0,0.000000,0.018688,0.018688,0.000000,2.156832,0,0,0,0,4.417824,6.092592,0.943911
128,dense,on,direct,direct,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.151936,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,2.151936,0,0,0,0,4.414944,5.849093,0.889147
128,dense,on,direct,direct,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.155808,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,2.155808,0,0,0,0,3.864416,5.112704,0.837740
128,dense,on,direct,direct,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.162272,0.000000,0,0,0.000000,0.017184,0.017184,0.000000,2.162272,0,0,0,0,4.599904,6.349057,0.939743
128,dense,on,direct,direct,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.158464,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,2.158464,0,0,0,0,4.134240,5.741330,0.916960
128,dense,on,direct,direct,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.154080,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,2.154080,0,0,0,0,4.187104,5.770855,1.032017
128,dense,on,direct,direct,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.159680,0.000000,0,0,0.000000,0.017536,0.017536,0.000000,2.159680,0,0,0,0,4.300384,6.023632,1.012811
128,dense,on,direct,direct,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.186784,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.186784,0,0,0,0,4.449184,6.269166,1.175778
128,dense,on,direct,direct,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.162880,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.162880,0,0,0,0,4.729568,6.420641,0.894367
128,dense,on,direct,direct,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.152192,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.152192,0,0,0,0,3.395168,4.812247,0.934172
128,dense,on,direct,direct,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150016,0.000000,0,0,0.000000,0.018336,0.018336,0.000000,2.150016,0,0,0,0,4.169344,5.567703,0.905057
128,dense,on,direct,direct,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.156288,0.000000,0,0,0.000000,0.017984,0.017984,0.000000,2.156288,0,0,0,0,4.189088,5.569647,0.938491
128,dense,on,direct,direct,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.153280,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,2.153280,0,0,0,0,4.294720,6.109074,1.200304
128,dense,on,direct,direct,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.145344,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,2.145344,0,0,0,0,4.400608,6.398279,1.221964
128,dense,on,direct,direct,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.151200,0.000000,0,0,0.000000,0.017280,0.017280,0.000000,2.151200,0,0,0,0,4.415072,6.299803,1.157854
128,dense,on,direct,direct,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.144512,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,2.144512,0,0,0,0,4.514976,6.609767,1.256370
128,dense,on,direct,direct,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.146656,0.000000,0,0,0.000000,0.018240,0.018240,0.000000,2.146656,0,0,0,0,4.518464,6.256331,0.893866
128,dense,on,direct,direct,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.144608,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,2.144608,0,0,0,0,3.694944,5.403272,1.024532
128,dense,on,direct,direct,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.150976,0.000000,0,0,0.000000,0.017056,0.017056,0.000000,2.150976,0,0,0,0,3.835136,5.483994,0.960231
128,dense,on,direct,direct,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.145312,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,2.145312,0,0,0,0,4.530368,6.097351,0.961113
128,dense,on,direct,direct,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.152480,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,2.152480,0,0,0,0,4.705856,6.503678,0.974197
128,dense,on,direct,direct,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.147712,0.000000,0,0,0.000000,0.018272,0.018272,0.000000,2.147712,0,0,0,0,4.406560,6.023292,0.984738
128,dense,on,direct,direct,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.168768,0.000000,0,0,0.000000,0.018432,0.018432,0.000000,2.168768,0,0,0,0,4.544480,6.151584,0.985398
128,dense,on,direct,direct,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.157792,0.000000,0,0,0.000000,0.018208,0.018208,0.000000,2.157792,0,0,0,0,4.527552,6.075249,0.918563
128,dense,on,direct,direct,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.161696,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,2.161696,0,0,0,0,3.947872,5.496458,0.928371
128,dense,on,direct,direct,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.161024,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,2.161024,0,0,0,0,3.813824,5.261024,0.971934
128,dense,on,direct,direct,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,128,0,768,12,756,756,12,48,59621984,2.157344,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,2.157344,0,0,0,0,4.372864,5.786535,0.895249
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 128 dense on direct direct forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.155104 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 2.155104 0 0 0 0 4.556640 6.122138 1.034812
3 128 dense on direct direct forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.155520 0.000000 0 0 0.000000 0.018464 0.018464 0.000000 2.155520 0 0 0 0 4.198976 6.067275 0.931026
4 128 dense on direct direct forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.163648 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 2.163648 0 0 0 0 4.571712 6.088655 0.978936
5 128 dense on direct direct forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.156832 0.000000 0 0 0.000000 0.018688 0.018688 0.000000 2.156832 0 0 0 0 4.417824 6.092592 0.943911
6 128 dense on direct direct forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.151936 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 2.151936 0 0 0 0 4.414944 5.849093 0.889147
7 128 dense on direct direct forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.155808 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 2.155808 0 0 0 0 3.864416 5.112704 0.837740
8 128 dense on direct direct forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.162272 0.000000 0 0 0.000000 0.017184 0.017184 0.000000 2.162272 0 0 0 0 4.599904 6.349057 0.939743
9 128 dense on direct direct forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.158464 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 2.158464 0 0 0 0 4.134240 5.741330 0.916960
10 128 dense on direct direct forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.154080 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 2.154080 0 0 0 0 4.187104 5.770855 1.032017
11 128 dense on direct direct forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.159680 0.000000 0 0 0.000000 0.017536 0.017536 0.000000 2.159680 0 0 0 0 4.300384 6.023632 1.012811
12 128 dense on direct direct forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.186784 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.186784 0 0 0 0 4.449184 6.269166 1.175778
13 128 dense on direct direct forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.162880 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.162880 0 0 0 0 4.729568 6.420641 0.894367
14 128 dense on direct direct forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.152192 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.152192 0 0 0 0 3.395168 4.812247 0.934172
15 128 dense on direct direct forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150016 0.000000 0 0 0.000000 0.018336 0.018336 0.000000 2.150016 0 0 0 0 4.169344 5.567703 0.905057
16 128 dense on direct direct forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.156288 0.000000 0 0 0.000000 0.017984 0.017984 0.000000 2.156288 0 0 0 0 4.189088 5.569647 0.938491
17 128 dense on direct direct forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.153280 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 2.153280 0 0 0 0 4.294720 6.109074 1.200304
18 128 dense on direct direct forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.145344 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 2.145344 0 0 0 0 4.400608 6.398279 1.221964
19 128 dense on direct direct forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.151200 0.000000 0 0 0.000000 0.017280 0.017280 0.000000 2.151200 0 0 0 0 4.415072 6.299803 1.157854
20 128 dense on direct direct forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.144512 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 2.144512 0 0 0 0 4.514976 6.609767 1.256370
21 128 dense on direct direct forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.146656 0.000000 0 0 0.000000 0.018240 0.018240 0.000000 2.146656 0 0 0 0 4.518464 6.256331 0.893866
22 128 dense on direct direct forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.144608 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 2.144608 0 0 0 0 3.694944 5.403272 1.024532
23 128 dense on direct direct forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.150976 0.000000 0 0 0.000000 0.017056 0.017056 0.000000 2.150976 0 0 0 0 3.835136 5.483994 0.960231
24 128 dense on direct direct forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.145312 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 2.145312 0 0 0 0 4.530368 6.097351 0.961113
25 128 dense on direct direct forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.152480 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 2.152480 0 0 0 0 4.705856 6.503678 0.974197
26 128 dense on direct direct forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.147712 0.000000 0 0 0.000000 0.018272 0.018272 0.000000 2.147712 0 0 0 0 4.406560 6.023292 0.984738
27 128 dense on direct direct forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.168768 0.000000 0 0 0.000000 0.018432 0.018432 0.000000 2.168768 0 0 0 0 4.544480 6.151584 0.985398
28 128 dense on direct direct forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.157792 0.000000 0 0 0.000000 0.018208 0.018208 0.000000 2.157792 0 0 0 0 4.527552 6.075249 0.918563
29 128 dense on direct direct forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.161696 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 2.161696 0 0 0 0 3.947872 5.496458 0.928371
30 128 dense on direct direct forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.161024 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 2.161024 0 0 0 0 3.813824 5.261024 0.971934
31 128 dense on direct direct forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 128 0 768 12 756 756 12 48 59621984 2.157344 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 2.157344 0 0 0 0 4.372864 5.786535 0.895249
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034016,0,0,0,0,2.032032,3.220144,0.755375
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033920,0,0,0,0,1.292160,2.336718,0.732051
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033248,0,0,0,0,1.282528,2.456634,0.818654
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033920,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033920,0,0,0,0,1.455776,2.847872,0.808355
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,1.556800,2.878840,0.899797
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034080,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034080,0,0,0,0,2.155104,3.337225,0.749694
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034112,0,0,0,0,1.568736,3.058910,0.858901
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033760,0,0,0,0,1.613760,2.699242,0.795721
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033632,0,0,0,0,1.414848,2.661841,0.769391
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033728,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033728,0,0,0,0,1.277312,2.633578,0.995809
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034144,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034144,0,0,0,0,1.858112,3.128371,0.823383
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033632,0,0,0,0,1.563360,2.913696,0.948259
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033600,0,0,0,0,1.616736,3.012793,1.086539
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033248,0,0,0,0,1.417376,2.927762,1.050000
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034112,0,0,0,0,1.279872,2.558076,0.886803
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033472,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033472,0,0,0,0,1.616192,2.996743,0.784701
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033984,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033984,0,0,0,0,1.558368,2.857099,0.860593
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034016,0,0,0,0,1.866592,3.054943,0.746999
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033632,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033632,0,0,0,0,1.550048,2.850046,0.871013
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034144,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034144,0,0,0,0,1.612896,2.743926,0.818975
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034592,0,0,0,0,1.416000,2.676027,0.808946
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034304,0,0,0,0,1.292832,2.544790,0.887905
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,2.021952,3.366521,0.895790
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,1.569856,2.953071,0.905468
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034336,0,0,0,0,2.012864,3.330853,0.847188
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033856,0,0,0,0,1.277536,2.553297,0.929794
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034016,0,0,0,0,1.279776,2.639800,0.960943
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034464,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034464,0,0,0,0,1.593120,2.979550,0.843691
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034304,0,0,0,0,1.555872,3.076734,1.073155
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034112,0,0,0,0,2.007520,3.413759,0.907542
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense on gpu-frustum gpu-frustum forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034016 0 0 0 0 2.032032 3.220144 0.755375
3 0 dense on gpu-frustum gpu-frustum forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033920 0 0 0 0 1.292160 2.336718 0.732051
4 0 dense on gpu-frustum gpu-frustum forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033248 0 0 0 0 1.282528 2.456634 0.818654
5 0 dense on gpu-frustum gpu-frustum forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033920 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033920 0 0 0 0 1.455776 2.847872 0.808355
6 0 dense on gpu-frustum gpu-frustum forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 1.556800 2.878840 0.899797
7 0 dense on gpu-frustum gpu-frustum forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034080 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034080 0 0 0 0 2.155104 3.337225 0.749694
8 0 dense on gpu-frustum gpu-frustum forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034112 0 0 0 0 1.568736 3.058910 0.858901
9 0 dense on gpu-frustum gpu-frustum forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033760 0 0 0 0 1.613760 2.699242 0.795721
10 0 dense on gpu-frustum gpu-frustum forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033632 0 0 0 0 1.414848 2.661841 0.769391
11 0 dense on gpu-frustum gpu-frustum forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033728 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033728 0 0 0 0 1.277312 2.633578 0.995809
12 0 dense on gpu-frustum gpu-frustum forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034144 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034144 0 0 0 0 1.858112 3.128371 0.823383
13 0 dense on gpu-frustum gpu-frustum forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033632 0 0 0 0 1.563360 2.913696 0.948259
14 0 dense on gpu-frustum gpu-frustum forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033600 0 0 0 0 1.616736 3.012793 1.086539
15 0 dense on gpu-frustum gpu-frustum forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033248 0 0 0 0 1.417376 2.927762 1.050000
16 0 dense on gpu-frustum gpu-frustum forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034112 0 0 0 0 1.279872 2.558076 0.886803
17 0 dense on gpu-frustum gpu-frustum forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033472 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033472 0 0 0 0 1.616192 2.996743 0.784701
18 0 dense on gpu-frustum gpu-frustum forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033984 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033984 0 0 0 0 1.558368 2.857099 0.860593
19 0 dense on gpu-frustum gpu-frustum forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034016 0 0 0 0 1.866592 3.054943 0.746999
20 0 dense on gpu-frustum gpu-frustum forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033632 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033632 0 0 0 0 1.550048 2.850046 0.871013
21 0 dense on gpu-frustum gpu-frustum forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034144 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034144 0 0 0 0 1.612896 2.743926 0.818975
22 0 dense on gpu-frustum gpu-frustum forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034592 0 0 0 0 1.416000 2.676027 0.808946
23 0 dense on gpu-frustum gpu-frustum forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034304 0 0 0 0 1.292832 2.544790 0.887905
24 0 dense on gpu-frustum gpu-frustum forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 2.021952 3.366521 0.895790
25 0 dense on gpu-frustum gpu-frustum forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 1.569856 2.953071 0.905468
26 0 dense on gpu-frustum gpu-frustum forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034336 0 0 0 0 2.012864 3.330853 0.847188
27 0 dense on gpu-frustum gpu-frustum forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033856 0 0 0 0 1.277536 2.553297 0.929794
28 0 dense on gpu-frustum gpu-frustum forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034016 0 0 0 0 1.279776 2.639800 0.960943
29 0 dense on gpu-frustum gpu-frustum forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034464 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034464 0 0 0 0 1.593120 2.979550 0.843691
30 0 dense on gpu-frustum gpu-frustum forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034304 0 0 0 0 1.555872 3.076734 1.073155
31 0 dense on gpu-frustum gpu-frustum forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034112 0 0 0 0 2.007520 3.413759 0.907542
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,1.609696,3.087484,0.910969
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034240,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034240,0,0,0,0,1.829760,3.148349,0.973055
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034496,0,0,0,0,1.580576,3.019015,0.840916
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034176,0,0,0,0,1.856256,3.223691,0.910447
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034368,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034368,0,0,0,0,1.284576,2.838664,0.931597
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033760,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033760,0,0,0,0,1.296640,2.580998,0.899286
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033952,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033952,0,0,0,0,1.393952,2.942681,0.866705
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033856,0,0,0,0,1.276832,2.529361,0.840295
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034272,0,0,0,0,1.845408,3.390135,1.138207
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033856,0,0,0,0,1.562880,3.123913,1.117638
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033696,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033696,0,0,0,0,1.841024,3.299784,0.976783
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033664,0,0,0,0,1.902112,3.315053,0.939642
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034400,0,0,0,0,1.284832,2.423812,0.875201
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034112,0,0,0,0,1.677344,3.101471,0.965040
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033248,0,0,0,0,1.276384,2.594173,0.933500
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033600,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033600,0,0,0,0,1.435680,3.722993,0.948690
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034272,0,0,0,0,1.899552,3.309583,0.893616
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034496,0,0,0,0,1.393568,3.185879,0.903975
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034048,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034048,0,0,0,0,1.441696,2.744777,0.855154
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034112,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034112,0,0,0,0,2.166144,3.415032,0.924975
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034496,0,0,0,0,1.641248,3.005008,0.899527
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034592,0,0,0,0,1.287872,2.437207,0.890259
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033856,0,0,0,0,1.698592,3.030677,0.889228
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033248,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033248,0,0,0,0,1.276512,2.654367,0.948730
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034176,0,0,0,0,1.435648,3.311666,0.918382
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033792,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033792,0,0,0,0,1.805824,3.461279,1.125513
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034016,0,0,0,0,1.838816,3.215035,0.891251
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034624,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034624,0,0,0,0,1.876160,3.377632,1.014213
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034208,0,0,0,0,1.827936,3.565115,1.239929
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034848,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034848,0,0,0,0,1.593792,3.355068,0.912701
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense on gpu-frustum gpu-frustum forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 1.609696 3.087484 0.910969
3 0 dense on gpu-frustum gpu-frustum forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034240 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034240 0 0 0 0 1.829760 3.148349 0.973055
4 0 dense on gpu-frustum gpu-frustum forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034496 0 0 0 0 1.580576 3.019015 0.840916
5 0 dense on gpu-frustum gpu-frustum forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034176 0 0 0 0 1.856256 3.223691 0.910447
6 0 dense on gpu-frustum gpu-frustum forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034368 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034368 0 0 0 0 1.284576 2.838664 0.931597
7 0 dense on gpu-frustum gpu-frustum forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033760 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033760 0 0 0 0 1.296640 2.580998 0.899286
8 0 dense on gpu-frustum gpu-frustum forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033952 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033952 0 0 0 0 1.393952 2.942681 0.866705
9 0 dense on gpu-frustum gpu-frustum forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033856 0 0 0 0 1.276832 2.529361 0.840295
10 0 dense on gpu-frustum gpu-frustum forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034272 0 0 0 0 1.845408 3.390135 1.138207
11 0 dense on gpu-frustum gpu-frustum forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033856 0 0 0 0 1.562880 3.123913 1.117638
12 0 dense on gpu-frustum gpu-frustum forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033696 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033696 0 0 0 0 1.841024 3.299784 0.976783
13 0 dense on gpu-frustum gpu-frustum forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033664 0 0 0 0 1.902112 3.315053 0.939642
14 0 dense on gpu-frustum gpu-frustum forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034400 0 0 0 0 1.284832 2.423812 0.875201
15 0 dense on gpu-frustum gpu-frustum forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034112 0 0 0 0 1.677344 3.101471 0.965040
16 0 dense on gpu-frustum gpu-frustum forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033248 0 0 0 0 1.276384 2.594173 0.933500
17 0 dense on gpu-frustum gpu-frustum forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033600 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033600 0 0 0 0 1.435680 3.722993 0.948690
18 0 dense on gpu-frustum gpu-frustum forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034272 0 0 0 0 1.899552 3.309583 0.893616
19 0 dense on gpu-frustum gpu-frustum forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034496 0 0 0 0 1.393568 3.185879 0.903975
20 0 dense on gpu-frustum gpu-frustum forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034048 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034048 0 0 0 0 1.441696 2.744777 0.855154
21 0 dense on gpu-frustum gpu-frustum forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034112 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034112 0 0 0 0 2.166144 3.415032 0.924975
22 0 dense on gpu-frustum gpu-frustum forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034496 0 0 0 0 1.641248 3.005008 0.899527
23 0 dense on gpu-frustum gpu-frustum forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034592 0 0 0 0 1.287872 2.437207 0.890259
24 0 dense on gpu-frustum gpu-frustum forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033856 0 0 0 0 1.698592 3.030677 0.889228
25 0 dense on gpu-frustum gpu-frustum forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033248 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033248 0 0 0 0 1.276512 2.654367 0.948730
26 0 dense on gpu-frustum gpu-frustum forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034176 0 0 0 0 1.435648 3.311666 0.918382
27 0 dense on gpu-frustum gpu-frustum forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033792 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033792 0 0 0 0 1.805824 3.461279 1.125513
28 0 dense on gpu-frustum gpu-frustum forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034016 0 0 0 0 1.838816 3.215035 0.891251
29 0 dense on gpu-frustum gpu-frustum forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034624 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034624 0 0 0 0 1.876160 3.377632 1.014213
30 0 dense on gpu-frustum gpu-frustum forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034208 0 0 0 0 1.827936 3.565115 1.239929
31 0 dense on gpu-frustum gpu-frustum forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034848 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034848 0 0 0 0 1.593792 3.355068 0.912701
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034784,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034784,0,0,0,0,1.624928,2.878149,0.893586
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034208,0,0,0,0,1.702976,3.120487,0.951996
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034592,0,0,0,0,1.594528,3.012353,0.909095
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034496,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034496,0,0,0,0,1.679360,3.002864,0.824305
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034304,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034304,0,0,0,0,1.299328,2.610654,0.873037
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034784,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034784,0,0,0,0,1.832512,3.227769,0.881974
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034016,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034016,0,0,0,0,1.276992,3.033452,1.125913
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034176,0,0,0,0,2.063616,3.483291,0.865442
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034656,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034656,0,0,0,0,1.277152,2.849235,1.187170
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034592,0,0,0,0,1.614368,2.896854,0.912912
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033312,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033312,0,0,0,0,1.703680,3.184608,0.974187
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034656,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034656,0,0,0,0,1.638368,2.869182,0.903114
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034336,0,0,0,0,1.470272,3.149110,0.954039
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034336,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034336,0,0,0,0,1.286720,2.605946,0.855995
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034400,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034400,0,0,0,0,1.280768,2.510065,0.837670
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033664,0,0,0,0,1.547136,2.643476,0.790511
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034912,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034912,0,0,0,0,1.292960,2.372085,0.805730
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033856,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033856,0,0,0,0,1.830688,3.474293,1.270367
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034976,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034976,0,0,0,0,1.277472,3.313941,1.364745
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033888,0,0,0,0,1.960096,4.038337,1.435307
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034592,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034592,0,0,0,0,1.632032,3.346262,1.172631
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034144,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034144,0,0,0,0,1.471200,3.205887,1.002772
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033664,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033664,0,0,0,0,1.294464,2.785985,1.000357
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034176,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034176,0,0,0,0,1.835456,3.236465,0.953238
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033696,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033696,0,0,0,0,1.276928,2.506157,0.876834
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034208,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034208,0,0,0,0,1.279776,2.755889,1.048007
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033408,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033408,0,0,0,0,1.733088,3.192312,0.940333
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.033888,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.033888,0,0,0,0,1.443520,2.902826,0.949612
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034272,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034272,0,0,0,0,1.438656,3.200337,0.940013
0,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,3,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,0,0,0,0,0,0,0,1,59549680,0.034560,0.000000,0,0,0.000000,0.000000,0.000000,0.000000,0.034560,0,0,0,0,1.292064,2.572161,0.905288
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 0 dense on gpu-frustum gpu-frustum forward forward Release 3 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034784 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034784 0 0 0 0 1.624928 2.878149 0.893586
3 0 dense on gpu-frustum gpu-frustum forward forward Release 3 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034208 0 0 0 0 1.702976 3.120487 0.951996
4 0 dense on gpu-frustum gpu-frustum forward forward Release 3 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034592 0 0 0 0 1.594528 3.012353 0.909095
5 0 dense on gpu-frustum gpu-frustum forward forward Release 3 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034496 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034496 0 0 0 0 1.679360 3.002864 0.824305
6 0 dense on gpu-frustum gpu-frustum forward forward Release 3 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034304 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034304 0 0 0 0 1.299328 2.610654 0.873037
7 0 dense on gpu-frustum gpu-frustum forward forward Release 3 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034784 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034784 0 0 0 0 1.832512 3.227769 0.881974
8 0 dense on gpu-frustum gpu-frustum forward forward Release 3 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034016 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034016 0 0 0 0 1.276992 3.033452 1.125913
9 0 dense on gpu-frustum gpu-frustum forward forward Release 3 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034176 0 0 0 0 2.063616 3.483291 0.865442
10 0 dense on gpu-frustum gpu-frustum forward forward Release 3 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034656 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034656 0 0 0 0 1.277152 2.849235 1.187170
11 0 dense on gpu-frustum gpu-frustum forward forward Release 3 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034592 0 0 0 0 1.614368 2.896854 0.912912
12 0 dense on gpu-frustum gpu-frustum forward forward Release 3 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033312 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033312 0 0 0 0 1.703680 3.184608 0.974187
13 0 dense on gpu-frustum gpu-frustum forward forward Release 3 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034656 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034656 0 0 0 0 1.638368 2.869182 0.903114
14 0 dense on gpu-frustum gpu-frustum forward forward Release 3 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034336 0 0 0 0 1.470272 3.149110 0.954039
15 0 dense on gpu-frustum gpu-frustum forward forward Release 3 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034336 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034336 0 0 0 0 1.286720 2.605946 0.855995
16 0 dense on gpu-frustum gpu-frustum forward forward Release 3 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034400 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034400 0 0 0 0 1.280768 2.510065 0.837670
17 0 dense on gpu-frustum gpu-frustum forward forward Release 3 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033664 0 0 0 0 1.547136 2.643476 0.790511
18 0 dense on gpu-frustum gpu-frustum forward forward Release 3 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034912 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034912 0 0 0 0 1.292960 2.372085 0.805730
19 0 dense on gpu-frustum gpu-frustum forward forward Release 3 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033856 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033856 0 0 0 0 1.830688 3.474293 1.270367
20 0 dense on gpu-frustum gpu-frustum forward forward Release 3 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034976 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034976 0 0 0 0 1.277472 3.313941 1.364745
21 0 dense on gpu-frustum gpu-frustum forward forward Release 3 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033888 0 0 0 0 1.960096 4.038337 1.435307
22 0 dense on gpu-frustum gpu-frustum forward forward Release 3 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034592 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034592 0 0 0 0 1.632032 3.346262 1.172631
23 0 dense on gpu-frustum gpu-frustum forward forward Release 3 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034144 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034144 0 0 0 0 1.471200 3.205887 1.002772
24 0 dense on gpu-frustum gpu-frustum forward forward Release 3 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033664 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033664 0 0 0 0 1.294464 2.785985 1.000357
25 0 dense on gpu-frustum gpu-frustum forward forward Release 3 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034176 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034176 0 0 0 0 1.835456 3.236465 0.953238
26 0 dense on gpu-frustum gpu-frustum forward forward Release 3 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033696 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033696 0 0 0 0 1.276928 2.506157 0.876834
27 0 dense on gpu-frustum gpu-frustum forward forward Release 3 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034208 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034208 0 0 0 0 1.279776 2.755889 1.048007
28 0 dense on gpu-frustum gpu-frustum forward forward Release 3 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033408 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033408 0 0 0 0 1.733088 3.192312 0.940333
29 0 dense on gpu-frustum gpu-frustum forward forward Release 3 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.033888 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.033888 0 0 0 0 1.443520 2.902826 0.949612
30 0 dense on gpu-frustum gpu-frustum forward forward Release 3 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034272 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034272 0 0 0 0 1.438656 3.200337 0.940013
31 0 dense on gpu-frustum gpu-frustum forward forward Release 3 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 0 0 0 0 0 0 0 1 59549680 0.034560 0.000000 0 0 0.000000 0.000000 0.000000 0.000000 0.034560 0 0 0 0 1.292064 2.572161 0.905288
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125696,0.000000,0,0,0.000000,0.016416,0.016416,0.000000,0.125696,0,0,0,0,2.160832,3.423517,0.798887
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.124992,0.000000,0,0,0.000000,0.017696,0.017696,0.000000,0.124992,0,0,0,0,1.383616,2.691818,0.894036
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125056,0.000000,0,0,0.000000,0.017152,0.017152,0.000000,0.125056,0,0,0,0,1.600640,2.917624,0.804858
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125824,0.000000,0,0,0.000000,0.017376,0.017376,0.000000,0.125824,0,0,0,0,1.532128,2.873701,0.890069
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.146464,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.146464,0,0,0,0,1.967744,3.125175,0.792234
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125824,0.000000,0,0,0.000000,0.017728,0.017728,0.000000,0.125824,0,0,0,0,1.509056,3.049723,0.855824
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126240,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.126240,0,0,0,0,1.692288,3.599129,1.124901
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126368,0.000000,0,0,0.000000,0.017664,0.017664,0.000000,0.126368,0,0,0,0,1.953216,3.453855,0.961784
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126624,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.126624,0,0,0,0,1.735520,3.027982,0.804728
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126304,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,0.126304,0,0,0,0,1.942528,3.192302,0.795381
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126080,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,0.126080,0,0,0,0,1.383488,2.551533,0.781684
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125984,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.125984,0,0,0,0,1.386432,2.555390,0.803886
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125888,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.125888,0,0,0,0,1.842560,3.028021,0.737431
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125344,0.000000,0,0,0.000000,0.016608,0.016608,0.000000,0.125344,0,0,0,0,1.653280,2.930307,0.804036
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125952,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,0.125952,0,0,0,0,1.522240,3.228140,0.747049
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126720,0.000000,0,0,0.000000,0.017504,0.017504,0.000000,0.126720,0,0,0,0,1.400320,2.493203,0.750385
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125376,0.000000,0,0,0.000000,0.017440,0.017440,0.000000,0.125376,0,0,0,0,1.937344,3.230634,0.838732
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126880,0.000000,0,0,0.000000,0.016544,0.016544,0.000000,0.126880,0,0,0,0,1.720608,2.938703,0.757128
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126208,0.000000,0,0,0.000000,0.018080,0.018080,0.000000,0.126208,0,0,0,0,1.385856,2.528410,0.779330
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125376,0.000000,0,0,0.000000,0.016800,0.016800,0.000000,0.125376,0,0,0,0,1.512064,2.795092,0.838411
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126784,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,0.126784,0,0,0,0,1.658496,3.010539,0.848721
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126176,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,0.126176,0,0,0,0,1.942016,3.157646,0.860262
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126272,0.000000,0,0,0.000000,0.018048,0.018048,0.000000,0.126272,0,0,0,0,1.757120,3.154951,0.856415
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126176,0.000000,0,0,0.000000,0.017888,0.017888,0.000000,0.126176,0,0,0,0,1.939648,3.361691,0.926638
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126144,0.000000,0,0,0.000000,0.017280,0.017280,0.000000,0.126144,0,0,0,0,1.739264,3.043832,0.788928
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.124896,0.000000,0,0,0.000000,0.017824,0.017824,0.000000,0.124896,0,0,0,0,1.385248,2.805782,1.016287
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125184,0.000000,0,0,0.000000,0.017696,0.017696,0.000000,0.125184,0,0,0,0,1.393536,3.047409,1.140060
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125728,0.000000,0,0,0.000000,0.017024,0.017024,0.000000,0.125728,0,0,0,0,1.651552,3.882513,1.588276
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125728,0.000000,0,0,0.000000,0.017120,0.017120,0.000000,0.125728,0,0,0,0,1.522688,3.284305,1.039351
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,1,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125888,0.000000,0,0,0.000000,0.017056,0.017056,0.000000,0.125888,0,0,0,0,1.384960,2.951417,0.992302
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense on gpu-frustum gpu-frustum forward forward Release 1 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125696 0.000000 0 0 0.000000 0.016416 0.016416 0.000000 0.125696 0 0 0 0 2.160832 3.423517 0.798887
3 4 dense on gpu-frustum gpu-frustum forward forward Release 1 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.124992 0.000000 0 0 0.000000 0.017696 0.017696 0.000000 0.124992 0 0 0 0 1.383616 2.691818 0.894036
4 4 dense on gpu-frustum gpu-frustum forward forward Release 1 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125056 0.000000 0 0 0.000000 0.017152 0.017152 0.000000 0.125056 0 0 0 0 1.600640 2.917624 0.804858
5 4 dense on gpu-frustum gpu-frustum forward forward Release 1 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125824 0.000000 0 0 0.000000 0.017376 0.017376 0.000000 0.125824 0 0 0 0 1.532128 2.873701 0.890069
6 4 dense on gpu-frustum gpu-frustum forward forward Release 1 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.146464 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.146464 0 0 0 0 1.967744 3.125175 0.792234
7 4 dense on gpu-frustum gpu-frustum forward forward Release 1 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125824 0.000000 0 0 0.000000 0.017728 0.017728 0.000000 0.125824 0 0 0 0 1.509056 3.049723 0.855824
8 4 dense on gpu-frustum gpu-frustum forward forward Release 1 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126240 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.126240 0 0 0 0 1.692288 3.599129 1.124901
9 4 dense on gpu-frustum gpu-frustum forward forward Release 1 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126368 0.000000 0 0 0.000000 0.017664 0.017664 0.000000 0.126368 0 0 0 0 1.953216 3.453855 0.961784
10 4 dense on gpu-frustum gpu-frustum forward forward Release 1 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126624 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.126624 0 0 0 0 1.735520 3.027982 0.804728
11 4 dense on gpu-frustum gpu-frustum forward forward Release 1 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126304 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 0.126304 0 0 0 0 1.942528 3.192302 0.795381
12 4 dense on gpu-frustum gpu-frustum forward forward Release 1 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126080 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 0.126080 0 0 0 0 1.383488 2.551533 0.781684
13 4 dense on gpu-frustum gpu-frustum forward forward Release 1 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125984 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.125984 0 0 0 0 1.386432 2.555390 0.803886
14 4 dense on gpu-frustum gpu-frustum forward forward Release 1 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125888 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.125888 0 0 0 0 1.842560 3.028021 0.737431
15 4 dense on gpu-frustum gpu-frustum forward forward Release 1 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125344 0.000000 0 0 0.000000 0.016608 0.016608 0.000000 0.125344 0 0 0 0 1.653280 2.930307 0.804036
16 4 dense on gpu-frustum gpu-frustum forward forward Release 1 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125952 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 0.125952 0 0 0 0 1.522240 3.228140 0.747049
17 4 dense on gpu-frustum gpu-frustum forward forward Release 1 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126720 0.000000 0 0 0.000000 0.017504 0.017504 0.000000 0.126720 0 0 0 0 1.400320 2.493203 0.750385
18 4 dense on gpu-frustum gpu-frustum forward forward Release 1 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125376 0.000000 0 0 0.000000 0.017440 0.017440 0.000000 0.125376 0 0 0 0 1.937344 3.230634 0.838732
19 4 dense on gpu-frustum gpu-frustum forward forward Release 1 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126880 0.000000 0 0 0.000000 0.016544 0.016544 0.000000 0.126880 0 0 0 0 1.720608 2.938703 0.757128
20 4 dense on gpu-frustum gpu-frustum forward forward Release 1 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126208 0.000000 0 0 0.000000 0.018080 0.018080 0.000000 0.126208 0 0 0 0 1.385856 2.528410 0.779330
21 4 dense on gpu-frustum gpu-frustum forward forward Release 1 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125376 0.000000 0 0 0.000000 0.016800 0.016800 0.000000 0.125376 0 0 0 0 1.512064 2.795092 0.838411
22 4 dense on gpu-frustum gpu-frustum forward forward Release 1 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126784 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 0.126784 0 0 0 0 1.658496 3.010539 0.848721
23 4 dense on gpu-frustum gpu-frustum forward forward Release 1 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126176 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 0.126176 0 0 0 0 1.942016 3.157646 0.860262
24 4 dense on gpu-frustum gpu-frustum forward forward Release 1 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126272 0.000000 0 0 0.000000 0.018048 0.018048 0.000000 0.126272 0 0 0 0 1.757120 3.154951 0.856415
25 4 dense on gpu-frustum gpu-frustum forward forward Release 1 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126176 0.000000 0 0 0.000000 0.017888 0.017888 0.000000 0.126176 0 0 0 0 1.939648 3.361691 0.926638
26 4 dense on gpu-frustum gpu-frustum forward forward Release 1 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126144 0.000000 0 0 0.000000 0.017280 0.017280 0.000000 0.126144 0 0 0 0 1.739264 3.043832 0.788928
27 4 dense on gpu-frustum gpu-frustum forward forward Release 1 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.124896 0.000000 0 0 0.000000 0.017824 0.017824 0.000000 0.124896 0 0 0 0 1.385248 2.805782 1.016287
28 4 dense on gpu-frustum gpu-frustum forward forward Release 1 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125184 0.000000 0 0 0.000000 0.017696 0.017696 0.000000 0.125184 0 0 0 0 1.393536 3.047409 1.140060
29 4 dense on gpu-frustum gpu-frustum forward forward Release 1 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125728 0.000000 0 0 0.000000 0.017024 0.017024 0.000000 0.125728 0 0 0 0 1.651552 3.882513 1.588276
30 4 dense on gpu-frustum gpu-frustum forward forward Release 1 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125728 0.000000 0 0 0.000000 0.017120 0.017120 0.000000 0.125728 0 0 0 0 1.522688 3.284305 1.039351
31 4 dense on gpu-frustum gpu-frustum forward forward Release 1 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125888 0.000000 0 0 0.000000 0.017056 0.017056 0.000000 0.125888 0 0 0 0 1.384960 2.951417 0.992302
@@ -0,0 +1,31 @@
light_count,light_layout,shadows,visibility,effective_visibility,lighting_path,requested_lighting,build_configuration,run_index,frame,device,driver,commit,width,height,validation_enabled,validation_errors,submitted_local_lights,omitted_local_lights,requested_local_shadow_faces,rendered_local_shadow_faces,dropped_shadow_faces,shadow_atlas_full_drops,shadow_tiles,draw_calls,gpu_bytes,gpu_main_raster_ms,gpu_post_raster_ms,gpu_post_visible,visibility_counters_valid,gpu_sun_shadow_ms,gpu_local_shadow_ms,gpu_shadow_ms,gpu_light_tiles_ms,gpu_build_plus_raster_ms,light_tile_count,light_tile_counts_valid,light_tile_candidate_count,light_tile_overflow_count,gpu_ms,cpu_ms,readback_cpu_ms
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,0,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125696,0.000000,0,0,0.000000,0.016384,0.016384,0.000000,0.125696,0,0,0,0,1.675904,3.058610,0.857358
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,1,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125504,0.000000,0,0,0.000000,0.017408,0.017408,0.000000,0.125504,0,0,0,0,1.549312,2.918586,0.854962
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,2,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.145824,0.000000,0,0,0.000000,0.017344,0.017344,0.000000,0.145824,0,0,0,0,1.402368,2.639078,0.846827
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,3,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125952,0.000000,0,0,0.000000,0.018400,0.018400,0.000000,0.125952,0,0,0,0,2.175712,3.733543,0.871604
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,4,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125632,0.000000,0,0,0.000000,0.016704,0.016704,0.000000,0.125632,0,0,0,0,1.398432,2.863892,0.871284
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,5,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125792,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.125792,0,0,0,0,2.183392,3.480736,0.865973
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,6,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125728,0.000000,0,0,0.000000,0.017920,0.017920,0.000000,0.125728,0,0,0,0,1.670048,3.086813,0.797745
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,7,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125728,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.125728,0,0,0,0,1.549056,2.774884,0.836658
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,8,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126016,0.000000,0,0,0.000000,0.016928,0.016928,0.000000,0.126016,0,0,0,0,1.519616,2.844625,0.834374
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,9,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.124864,0.000000,0,0,0.000000,0.017696,0.017696,0.000000,0.124864,0,0,0,0,1.534208,2.910860,0.921929
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,10,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125696,0.000000,0,0,0.000000,0.016672,0.016672,0.000000,0.125696,0,0,0,0,1.549568,3.355219,0.918834
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,11,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125888,0.000000,0,0,0.000000,0.017632,0.017632,0.000000,0.125888,0,0,0,0,1.674208,3.288283,1.012880
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,12,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125632,0.000000,0,0,0.000000,0.018016,0.018016,0.000000,0.125632,0,0,0,0,1.933856,3.520791,1.063706
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,13,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125568,0.000000,0,0,0.000000,0.016608,0.016608,0.000000,0.125568,0,0,0,0,1.719584,3.432775,1.015325
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,14,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126048,0.000000,0,0,0.000000,0.022528,0.022528,0.000000,0.126048,0,0,0,0,1.952704,3.488440,1.087802
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,15,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125408,0.000000,0,0,0.000000,0.016544,0.016544,0.000000,0.125408,0,0,0,0,1.620000,3.716601,1.330239
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,16,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125312,0.000000,0,0,0.000000,0.016960,0.016960,0.000000,0.125312,0,0,0,0,1.944512,3.541190,1.010255
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,17,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.149856,0.000000,0,0,0.000000,0.016576,0.016576,0.000000,0.149856,0,0,0,0,1.694528,3.234310,0.962726
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,18,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126336,0.000000,0,0,0.000000,0.017664,0.017664,0.000000,0.126336,0,0,0,0,1.499712,3.266141,0.930195
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,19,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126112,0.000000,0,0,0.000000,0.018304,0.018304,0.000000,0.126112,0,0,0,0,1.394624,2.695484,0.899517
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,20,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125792,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.125792,0,0,0,0,1.944192,3.263166,0.960001
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,21,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126272,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.126272,0,0,0,0,2.034176,3.424229,0.914876
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,22,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126432,0.000000,0,0,0.000000,0.017824,0.017824,0.000000,0.126432,0,0,0,0,1.950624,3.296498,0.965331
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,23,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126304,0.000000,0,0,0.000000,0.017824,0.017824,0.000000,0.126304,0,0,0,0,2.033376,3.412537,0.896070
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,24,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.127072,0.000000,0,0,0.000000,0.017856,0.017856,0.000000,0.127072,0,0,0,0,1.955712,3.247716,0.952056
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,25,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126048,0.000000,0,0,0.000000,0.017600,0.017600,0.000000,0.126048,0,0,0,0,2.015104,3.408439,0.868028
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,26,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126144,0.000000,0,0,0.000000,0.018272,0.018272,0.000000,0.126144,0,0,0,0,1.973632,3.297801,0.955632
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,27,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125696,0.000000,0,0,0.000000,0.016992,0.016992,0.000000,0.125696,0,0,0,0,2.000128,3.452392,0.938260
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,28,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.126272,0.000000,0,0,0.000000,0.017088,0.017088,0.000000,0.126272,0,0,0,0,1.385312,2.639419,0.930716
4,dense,on,gpu-frustum,gpu-frustum,forward,forward,Release,2,29,"NVIDIA GeForce RTX 2080 Ti","NVIDIA GeForce RTX 2080 Ti 595.84","4a3453e2b1868555d833f578d43f48b8bc47d41a",1920,1080,0,0,4,0,24,12,12,12,12,33,59584176,0.125632,0.000000,0,0,0.000000,0.016608,0.016608,0.000000,0.125632,0,0,0,0,1.382560,2.766859,0.934042
1 light_count light_layout shadows visibility effective_visibility lighting_path requested_lighting build_configuration run_index frame device driver commit width height validation_enabled validation_errors submitted_local_lights omitted_local_lights requested_local_shadow_faces rendered_local_shadow_faces dropped_shadow_faces shadow_atlas_full_drops shadow_tiles draw_calls gpu_bytes gpu_main_raster_ms gpu_post_raster_ms gpu_post_visible visibility_counters_valid gpu_sun_shadow_ms gpu_local_shadow_ms gpu_shadow_ms gpu_light_tiles_ms gpu_build_plus_raster_ms light_tile_count light_tile_counts_valid light_tile_candidate_count light_tile_overflow_count gpu_ms cpu_ms readback_cpu_ms
2 4 dense on gpu-frustum gpu-frustum forward forward Release 2 0 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125696 0.000000 0 0 0.000000 0.016384 0.016384 0.000000 0.125696 0 0 0 0 1.675904 3.058610 0.857358
3 4 dense on gpu-frustum gpu-frustum forward forward Release 2 1 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125504 0.000000 0 0 0.000000 0.017408 0.017408 0.000000 0.125504 0 0 0 0 1.549312 2.918586 0.854962
4 4 dense on gpu-frustum gpu-frustum forward forward Release 2 2 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.145824 0.000000 0 0 0.000000 0.017344 0.017344 0.000000 0.145824 0 0 0 0 1.402368 2.639078 0.846827
5 4 dense on gpu-frustum gpu-frustum forward forward Release 2 3 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125952 0.000000 0 0 0.000000 0.018400 0.018400 0.000000 0.125952 0 0 0 0 2.175712 3.733543 0.871604
6 4 dense on gpu-frustum gpu-frustum forward forward Release 2 4 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125632 0.000000 0 0 0.000000 0.016704 0.016704 0.000000 0.125632 0 0 0 0 1.398432 2.863892 0.871284
7 4 dense on gpu-frustum gpu-frustum forward forward Release 2 5 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125792 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.125792 0 0 0 0 2.183392 3.480736 0.865973
8 4 dense on gpu-frustum gpu-frustum forward forward Release 2 6 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125728 0.000000 0 0 0.000000 0.017920 0.017920 0.000000 0.125728 0 0 0 0 1.670048 3.086813 0.797745
9 4 dense on gpu-frustum gpu-frustum forward forward Release 2 7 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125728 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.125728 0 0 0 0 1.549056 2.774884 0.836658
10 4 dense on gpu-frustum gpu-frustum forward forward Release 2 8 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126016 0.000000 0 0 0.000000 0.016928 0.016928 0.000000 0.126016 0 0 0 0 1.519616 2.844625 0.834374
11 4 dense on gpu-frustum gpu-frustum forward forward Release 2 9 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.124864 0.000000 0 0 0.000000 0.017696 0.017696 0.000000 0.124864 0 0 0 0 1.534208 2.910860 0.921929
12 4 dense on gpu-frustum gpu-frustum forward forward Release 2 10 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125696 0.000000 0 0 0.000000 0.016672 0.016672 0.000000 0.125696 0 0 0 0 1.549568 3.355219 0.918834
13 4 dense on gpu-frustum gpu-frustum forward forward Release 2 11 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125888 0.000000 0 0 0.000000 0.017632 0.017632 0.000000 0.125888 0 0 0 0 1.674208 3.288283 1.012880
14 4 dense on gpu-frustum gpu-frustum forward forward Release 2 12 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125632 0.000000 0 0 0.000000 0.018016 0.018016 0.000000 0.125632 0 0 0 0 1.933856 3.520791 1.063706
15 4 dense on gpu-frustum gpu-frustum forward forward Release 2 13 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125568 0.000000 0 0 0.000000 0.016608 0.016608 0.000000 0.125568 0 0 0 0 1.719584 3.432775 1.015325
16 4 dense on gpu-frustum gpu-frustum forward forward Release 2 14 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126048 0.000000 0 0 0.000000 0.022528 0.022528 0.000000 0.126048 0 0 0 0 1.952704 3.488440 1.087802
17 4 dense on gpu-frustum gpu-frustum forward forward Release 2 15 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125408 0.000000 0 0 0.000000 0.016544 0.016544 0.000000 0.125408 0 0 0 0 1.620000 3.716601 1.330239
18 4 dense on gpu-frustum gpu-frustum forward forward Release 2 16 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125312 0.000000 0 0 0.000000 0.016960 0.016960 0.000000 0.125312 0 0 0 0 1.944512 3.541190 1.010255
19 4 dense on gpu-frustum gpu-frustum forward forward Release 2 17 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.149856 0.000000 0 0 0.000000 0.016576 0.016576 0.000000 0.149856 0 0 0 0 1.694528 3.234310 0.962726
20 4 dense on gpu-frustum gpu-frustum forward forward Release 2 18 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126336 0.000000 0 0 0.000000 0.017664 0.017664 0.000000 0.126336 0 0 0 0 1.499712 3.266141 0.930195
21 4 dense on gpu-frustum gpu-frustum forward forward Release 2 19 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126112 0.000000 0 0 0.000000 0.018304 0.018304 0.000000 0.126112 0 0 0 0 1.394624 2.695484 0.899517
22 4 dense on gpu-frustum gpu-frustum forward forward Release 2 20 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125792 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.125792 0 0 0 0 1.944192 3.263166 0.960001
23 4 dense on gpu-frustum gpu-frustum forward forward Release 2 21 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126272 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.126272 0 0 0 0 2.034176 3.424229 0.914876
24 4 dense on gpu-frustum gpu-frustum forward forward Release 2 22 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126432 0.000000 0 0 0.000000 0.017824 0.017824 0.000000 0.126432 0 0 0 0 1.950624 3.296498 0.965331
25 4 dense on gpu-frustum gpu-frustum forward forward Release 2 23 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126304 0.000000 0 0 0.000000 0.017824 0.017824 0.000000 0.126304 0 0 0 0 2.033376 3.412537 0.896070
26 4 dense on gpu-frustum gpu-frustum forward forward Release 2 24 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.127072 0.000000 0 0 0.000000 0.017856 0.017856 0.000000 0.127072 0 0 0 0 1.955712 3.247716 0.952056
27 4 dense on gpu-frustum gpu-frustum forward forward Release 2 25 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126048 0.000000 0 0 0.000000 0.017600 0.017600 0.000000 0.126048 0 0 0 0 2.015104 3.408439 0.868028
28 4 dense on gpu-frustum gpu-frustum forward forward Release 2 26 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126144 0.000000 0 0 0.000000 0.018272 0.018272 0.000000 0.126144 0 0 0 0 1.973632 3.297801 0.955632
29 4 dense on gpu-frustum gpu-frustum forward forward Release 2 27 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125696 0.000000 0 0 0.000000 0.016992 0.016992 0.000000 0.125696 0 0 0 0 2.000128 3.452392 0.938260
30 4 dense on gpu-frustum gpu-frustum forward forward Release 2 28 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.126272 0.000000 0 0 0.000000 0.017088 0.017088 0.000000 0.126272 0 0 0 0 1.385312 2.639419 0.930716
31 4 dense on gpu-frustum gpu-frustum forward forward Release 2 29 NVIDIA GeForce RTX 2080 Ti NVIDIA GeForce RTX 2080 Ti 595.84 4a3453e2b1868555d833f578d43f48b8bc47d41a 1920 1080 0 0 4 0 24 12 12 12 12 33 59584176 0.125632 0.000000 0 0 0.000000 0.016608 0.016608 0.000000 0.125632 0 0 0 0 1.382560 2.766859 0.934042

Some files were not shown because too many files have changed in this diff Show More