We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3180ec4 commit 2913201Copy full SHA for 2913201
1 file changed
src/ImageSharp/Processing/Processors/Convolution/BokehBlurProcessor.cs
@@ -136,7 +136,7 @@ public void Invoke(int y)
136
137
// The target buffer is zeroed initially and then it accumulates the results
138
// of each partial convolution, so we don't have to clear it here as well
139
- ref Vector4 targetBase = ref this.targetValues.GetElementUnsafe(0, y);
+ ref Vector4 targetBase = ref this.targetValues.GetElementUnsafe(boundsX, y);
140
ref Complex64 kernelBase = ref this.kernel[0];
141
142
for (int kY = 0; kY < kernelSize; kY++)
0 commit comments