Home | History | Annotate | Download | only in IlmImf

Lines Matching refs:other

15 // in the documentation and/or other materials provided with the
71 PreviewImage::PreviewImage (const PreviewImage &other):
72 _width (other._width),
73 _height (other._height),
74 _pixels (new PreviewRgba [other._width * other._height])
77 _pixels[i] = other._pixels[i];
88 PreviewImage::operator = (const PreviewImage &other)
92 _width = other._width;
93 _height = other._height;
94 _pixels = new PreviewRgba [other._width * other._height];
97 _pixels[i] = other._pixels[i];