Add HLSL memory barrier intrinsics, fix dst, add lit & EvaluateAttributeSnapped
This commit is contained in:
parent
19b92fff7e
commit
6e72fddaa2
18 changed files with 1170 additions and 466 deletions
13
Test/hlsl.intrinsics.barriers.comp
Normal file
13
Test/hlsl.intrinsics.barriers.comp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
float ComputeShaderFunction()
|
||||
{
|
||||
AllMemoryBarrier();
|
||||
AllMemoryBarrierWithGroupSync();
|
||||
DeviceMemoryBarrier();
|
||||
DeviceMemoryBarrierWithGroupSync();
|
||||
GroupMemoryBarrier();
|
||||
GroupMemoryBarrierWithGroupSync();
|
||||
|
||||
return 0.0;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue