summaryrefslogtreecommitdiff
path: root/tests/compute
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compute')
-rw-r--r--tests/compute/assoctype-lookup.slang6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/compute/assoctype-lookup.slang b/tests/compute/assoctype-lookup.slang
index 348391e21..8a032528b 100644
--- a/tests/compute/assoctype-lookup.slang
+++ b/tests/compute/assoctype-lookup.slang
@@ -16,8 +16,8 @@ struct StandardBoneWeightSet : IBoneWeightSet
{
struct PackedType
{
- uint boneIds : BONEIDS;
- uint boneWeights : BONEWEIGHTS;
+ uint boneIds;
+ uint boneWeights;
};
PackedType field;
};
@@ -55,4 +55,4 @@ void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
int inputVal = int(tid);
int outputVal = test(inputVal);
gOutputBuffer[tid] = outputVal;
-} \ No newline at end of file
+}