diff --git a/src/ImageProcessorCore/PixelAccessor.cs b/src/ImageProcessorCore/PixelAccessor.cs index 47a1797310..3f40f4b3c4 100644 --- a/src/ImageProcessorCore/PixelAccessor.cs +++ b/src/ImageProcessorCore/PixelAccessor.cs @@ -63,6 +63,9 @@ namespace ImageProcessorCore { fixed (float* pbuffer = image.Pixels) { + // TODO: This isn't actually copying. + // We need to allocate and copy the pixels into unmanaged memory. + // Will need to research how to do this. this.pixelsBase = pbuffer; } }