summaryrefslogtreecommitdiffstats
path: root/docs/user-guide
diff options
context:
space:
mode:
Diffstat (limited to 'docs/user-guide')
-rw-r--r--docs/user-guide/10-link-time-specialization.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/user-guide/10-link-time-specialization.md b/docs/user-guide/10-link-time-specialization.md
index b08ef1f0d..516fd19b5 100644
--- a/docs/user-guide/10-link-time-specialization.md
+++ b/docs/user-guide/10-link-time-specialization.md
@@ -149,7 +149,6 @@ RWStructuredBuffer<float> output;
void main(uint tid : SV_DispatchThreadID)
{
Sampler sampler;
- [ForceUnroll]
for (int i = 0; i < sampler.getSampleCount(); i++)
output[tid] += sampler.sample(i);
}