update SDL3 from 3.2.20 to 3.4.2

This commit is contained in:
Sven Balzer
2026-04-01 18:25:03 +02:00
parent 1daf4d79f1
commit 05b19704f8
1626 changed files with 124218 additions and 191491 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);
}