summaryrefslogtreecommitdiffstats
path: root/ComputeShaders
diff options
context:
space:
mode:
Diffstat (limited to 'ComputeShaders')
-rw-r--r--ComputeShaders/mulMatByRowTiled.hlsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ComputeShaders/mulMatByRowTiled.hlsl b/ComputeShaders/mulMatByRowTiled.hlsl
index 98ba59a..8bf62d7 100644
--- a/ComputeShaders/mulMatByRowTiled.hlsl
+++ b/ComputeShaders/mulMatByRowTiled.hlsl
@@ -40,7 +40,7 @@ static const uint heightVectors = ( heightScalars + 3 ) / 4;
groupshared float4 reductionBuffer[ heightVectors ][ THREADS_Y ][ THREADS_X ];
[numthreads( THREADS_X, THREADS_Y, 1 )]
-void main( uint3 group: SV_GroupID, uint3 thread : SV_GroupThreadID, uint threadFlattenned : SV_GroupIndex )
+void main( uint3 group: SV_GroupID, uint3 thread : SV_GroupThreadID )
{
uint i;
// Despite inside GPU cores, the shared memory is still much slower than registers