Lines Matching refs:colorSpace

79 	\param colorSpace The color space.
85 get_raw_bytes_per_row(color_space colorSpace, int32 width)
88 switch (colorSpace) {
149 \param colorSpace The color space.
155 get_bytes_per_row(color_space colorSpace, int32 width)
157 int32 bpr = get_raw_bytes_per_row(colorSpace, width);
172 \param colorSpace The bitmap's color space.
178 BBitmap::BBitmap(BRect bounds, uint32 flags, color_space colorSpace,
194 _InitObject(bounds, colorSpace, flags, bytesPerRow, screenID);
200 \param colorSpace The bitmap's color space.
207 BBitmap::BBitmap(BRect bounds, color_space colorSpace, bool acceptsViews,
225 _InitObject(bounds, colorSpace, flags, B_ANY_BYTES_PER_ROW,
312 uint32 flags, color_space colorSpace, int32 bytesPerRow,
328 _InitObject(bounds, colorSpace, flags,
652 \param colorSpace Color space of the source data.
656 color_space colorSpace)
668 if (colorSpace == B_CMAP8 && fColorSpace != B_CMAP8) {
675 error = ImportBits(data, length, inBPR, offset, colorSpace);
684 \a colorSpace is exactly the expected one here, i.e. the source buffer
698 \param colorSpace Color space of the source data.
702 unsupported \a colorSpace.
706 color_space colorSpace)
719 bpr = get_bytes_per_row(colorSpace, width);
725 fSize - offset, bpr, fBytesPerRow, colorSpace, fColorSpace, width,
742 \param colorSpace Color space of the source data.
749 \a colorSpace or invalid width/height.
753 color_space colorSpace, BPoint from, BPoint to, BSize size)
765 bpr = get_bytes_per_row(colorSpace, fBounds.IntegerWidth() + 1);
771 fBytesPerRow, colorSpace, fColorSpace, from, to,
778 color_space colorSpace, BPoint from, BPoint to, int32 width, int32 height)
780 return ImportBits(data, length, bpr, colorSpace, from, to, BSize(width - 1, height - 1));
1033 \param colorSpace The bitmap's color space.
1041 BBitmap::_InitObject(BRect bounds, color_space colorSpace, uint32 flags,
1045 // bounds.left, bounds.top, bounds.right, bounds.bottom, colorSpace, flags, bytesPerRow);
1058 if (!bounds.IsValid() || !bitmaps_support_space(colorSpace, NULL)) {
1072 int32 bpr = get_bytes_per_row(colorSpace, bounds.IntegerWidth() + 1);
1088 fColorSpace = colorSpace;
1109 link.Attach<color_space>(colorSpace);
1122 fColorSpace = colorSpace;
1145 link.Attach<color_space>(colorSpace);
1183 fColorSpace = colorSpace;