Because I have type like this:
Code:
type Arr =
// Array[1..9] represents the sampled pixels around and including current position
Array[1..256] of Array[1..256] of Array[1..9] of TRGBColor;
type PArray = ^Arr;
...
new(pArr);
pArr is container of sampled pixels. By sampled I mean, that I have picked up colors from image and store them there.