GTex CPU backend for DetourLite
===============================

Layout after unzip (next to DetourLite.exe):
  DetourLite.exe
  run-gtexcpu.bat
  plugins/GtexCPUPlugin/GtexCPUPlugin.dll
  plugins/GtexCPUPlugin/regcore_gtex_cpu.dll

How it is selected
------------------
RegCore discovers backend classes from loaded assemblies and picks the first entry in
DETOUR_REGCORE that loads successfully:

    set DETOUR_REGCORE=gtex_cpu,cuda,sycl

run-gtexcpu.bat sets that for you. If gtex_cpu fails to load, RegCore logs the failure
and falls through to cuda / sycl, so a broken plug-in degrades instead of dead-ending.

Why the CPU backend
-------------------
No CUDA and no Intel SYCL runtime needed - plain C++17 with optional AVX2. Slower than
the GPU backends, but it runs on any x64 box, which makes it the right choice for
bring-up, CI, and machines without a usable GPU.

Needs the .NET 8 Desktop Runtime (not the plain runtime) if you also want the classic
WinForms window from DetourWinUI.dll.
