✦ SPIELWELTENMoto Racer - Rampage ↗

Control snapshot and D3D12 GPU-based validation

Read-only snapshot at 2026-09-16 18:51:22–30 Vienna. PID 46776 was the existing standalone D3D11Control.exe, started by the parent task at 18:49:51. No test was started or stopped by this inspection.

Microsoft's GBV overview says the validation can detect uninitialized/incompatible descriptors and samplers, descriptors referencing deleted resources, descriptor-heap indexing beyond bounds, incompatible resource states, and resource-state promotion/decay problems. It instruments shaders and adds GPU commands/dispatches. COPY command lists are emulated using COMPUTE command lists, which changes the hardware work path. This can substantially slow execution; Microsoft suggests smaller workloads for practical debugging. Messages arrive after GPU execution completes and can be asynchronous with CPU validation. Results may identify shader locations, draws, queues, command lists and PSOs.

Enablement API: enable before device creation. Changing enablement on an existing device itself causes device removal; it is not a runtime toggle for an active player.

Shader patch modes: default unguarded validation still executes erroneous shader instructions. Guarded validation skips them and can avoid some crashes. No-patching/state-tracking-only modes reduce coverage; no-patching can also produce misleading state reports. These are API controls, not assumptions about Unity's exact selected mode.

Message settings expose a maximum stored message count. Validation flags can disable state tracking at reduced cost, while retaining descriptor checks; such reduced coverage must not be treated as full validation.

Interpretation for the proposed bounded run: GBV is a diagnostic instrumentation run, not a representative performance/stability acceptance run. A crash/reset without a GBV message does not exonerate application/engine resource usage: execution may not reach the error-report completion point, and validation has finite scope. A slowdown or fixture loading timeout may be caused by instrumentation. Preserve actual activation/log evidence and distinguish an emitted validation finding from a plain device reset. These last implications are inferences from the documented execution and reporting behavior, not a diagnosis of the present failure.