Merge commit '206dcdedf195fb320913584180edb12c7731e396' as 'external/SDL'

This commit is contained in:
2026-04-02 14:13:02 +02:00
2200 changed files with 961856 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "overlay.hlsli"
Texture2D<float4> t0 : register(t0, space2);
SamplerState s0 : register(s0, space2);
float4 main(VSOutput input) : SV_Target0
{
return t0.Sample(s0, input.uv);
}