adding D3D11 unit tests, removing raw HLSL support

This commit is contained in:
2025-09-12 00:54:15 +02:00
parent 6dd129cf35
commit 62beb8d316
27 changed files with 381 additions and 106 deletions

7
Tests/Shaders/D3D11/ReadOnlyBindings.hlsl git.filemode.normal_file
View File

@@ -0,0 +1,7 @@
StructuredBuffer<uint> read_ssbo : register(t0);
Texture2D<float4> read_texture : register(t1);
[numthreads(16, 16, 1)]
void main(uint3 grid : SV_DispatchThreadID)
{
}