Searched refs:ptList (Results 1 - 16 of 16) sorted by relevance

/haiku/headers/private/interface/
H A DShapePrivate.h33 BPoint* ptList; member in class:shape_data
51 delete[] ptList;
58 ptList = new(std::nothrow) BPoint[other.ptCount];
65 memcpy((void*)ptList, other.ptList, ptSize);
76 bounds.left = ptList[0].x;
77 bounds.top = ptList[0].y;
78 bounds.right = ptList[0].x;
79 bounds.bottom = ptList[0].y;
82 if (bounds.left > ptList[
[all...]
H A DPictureDataWriter.h95 const void* ptList, const bool& fill);
113 const void* ptList, const BGradient& gradient, const bool& fill);
130 const void* ptList, bool inverse);
H A DPicturePlayer.h95 int32 ptCount, const BPoint ptList[], bool inverse);
/haiku/src/kits/interface/
H A DShape.cpp43 BPoint* points = data->ptList;
178 data->ptList[data->ptCount++] = *ptPtr;
188 free(data->ptList);
210 result = archive->AddData("pts", B_POINT_TYPE, data->ptList,
216 result = archive->AddPoint("pts", data->ptList[i]);
270 && memcmp(data->ptList, otherData->ptList,
296 if (data->ptList) {
297 free(data->ptList);
298 data->ptList
540 GetData(int32* opCount, int32* ptCount, uint32** opList, BPoint** ptList) argument
553 SetData(int32 opCount, int32 ptCount, const uint32* opList, const BPoint* ptList) argument
[all...]
H A DPictureDataWriter.cpp521 const int32& ptCount, const void* ptList, const bool& fill)
528 WriteData(ptList, ptCount * sizeof(BPoint));
651 const int32& ptCount, const void* ptList, const BGradient& gradient, const bool& fill)
658 WriteData(ptList, ptCount * sizeof(BPoint));
914 int32 ptCount, const void* ptList, bool inverse)
922 WriteData(ptList, ptCount * sizeof(BPoint));
520 WriteDrawShape(const int32& opCount, const void* opList, const int32& ptCount, const void* ptList, const bool& fill) argument
650 WriteDrawShapeGradient(const int32& opCount, const void* opList, const int32& ptCount, const void* ptList, const BGradient& gradient, const bool& fill) argument
913 WriteClipToShape(int32 opCount, const void* opList, int32 ptCount, const void* ptList, bool inverse) argument
H A DPicturePlayer.cpp502 int32 ptCount, const BPoint ptList[], bool inverse)
507 ptCount, ptList, inverse);
501 clip_to_shape(void* _context, int32 opCount, const uint32 opList[], int32 ptCount, const BPoint ptList[], bool inverse) argument
H A DView.cpp4082 fOwner->fLink->Attach(sd->ptList, sd->ptCount * sizeof(BPoint));
4106 fOwner->fLink->Attach(sd->ptList, sd->ptCount * sizeof(BPoint));
4129 fOwner->fLink->Attach(sd->ptList, sd->ptCount * sizeof(BPoint));
5999 fOwner->fLink->Attach(sd->ptList, sd->ptCount * sizeof(BPoint));
/haiku/src/servers/app/drawing/
H A DAlphaMaskCache.h68 int diff = memcmp(fShape->ptList, other.fShape->ptList,
H A DDrawingEngine.cpp1180 const uint32* opList, int32 ptCount, const BPoint* ptList, bool filled,
1201 transaction.SetDirty(fPainter->DrawShape(opCount, opList, ptCount, ptList,
1208 const uint32* opList, int32 ptCount, const BPoint* ptList,
1227 transaction.SetDirty(fPainter->FillShape(opCount, opList, ptCount, ptList,
1179 DrawShape(const BRect& bounds, int32 opCount, const uint32* opList, int32 ptCount, const BPoint* ptList, bool filled, const BPoint& viewToScreenOffset, float viewScale) argument
1207 FillShape(const BRect& bounds, int32 opCount, const uint32* opList, int32 ptCount, const BPoint* ptList, const BGradient& gradient, const BPoint& viewToScreenOffset, float viewScale) argument
H A DAlphaMask.cpp567 fShape->ptCount, fShape->ptList,
/haiku/src/kits/app/
H A DServerLink.cpp104 BStackOrHeapArray<BPoint, 64> ptList(ptCount);
106 fReceiver->Read(ptList, ptCount * sizeof(BPoint));
108 shape->SetData(opCount, ptCount, opList, ptList);
118 BPoint* ptList; local
120 shape.GetData(&opCount, &ptCount, &opList, &ptList);
127 fSender->Attach(ptList, ptCount * sizeof(BPoint));
/haiku/headers/os/interface/
H A DShape.h100 uint32** opList, BPoint** ptList);
103 const BPoint* ptList);
/haiku/src/servers/app/
H A DServerPicture.cpp197 BPoint* ptList = new(std::nothrow) BPoint[ptCount];
198 if (ptList == NULL) {
209 ptList[i] = fPtStack.top();
225 ptCount, ptList, *fGradient, screenOffset, fCanvas->Scale());
228 ptCount, ptList, filled, screenOffset, fCanvas->Scale());
232 delete[] ptList;
989 int32 ptCount, const BPoint ptList[], bool inverse)
997 shapeData.ptList = (BPoint*)malloc(ptCount * sizeof(BPoint));
998 memcpy((void*)shapeData.ptList, ptList, ptCoun
988 clip_to_shape(void* _canvas, int32 opCount, const uint32 opList[], int32 ptCount, const BPoint ptList[], bool inverse) argument
[all...]
H A DServerWindow.cpp2218 shape.ptList = new(nothrow) BPoint[shape.ptCount];
2220 && link.Read(shape.ptList, shape.ptSize) >= B_OK) {
2226 delete[] shape.ptList;
2933 BPoint* ptList = new(nothrow) BPoint[ptCount]; local
2935 link.Read(ptList, ptCount * sizeof(BPoint)) >= B_OK) {
2949 ptList, code == AS_FILL_SHAPE, screenOffset,
2954 delete[] ptList;
2971 BPoint* ptList = new(nothrow) BPoint[ptCount]; local
2974 && link.Read(ptList, ptCount * sizeof(BPoint)) == B_OK
2989 ptCount, ptList, *gradien
[all...]
H A DDrawState.cpp507 rectShape.ptList = &points[0];
544 fCombinedTransform.Apply(shape->ptList, shape->ptCount);
/haiku/src/servers/app/drawing/Painter/
H A DPainter.h142 const BPoint* ptList, bool filled,
147 const BPoint* ptList,

Completed in 254 milliseconds