Searched refs:yOffset (Results 1 - 25 of 45) sorted by relevance

12

/haiku/src/add-ons/accelerants/ati/
H A Dmach64_cursor.cpp31 // xOffset & yOffset are used for displaying partial cursors on screen edges.
34 uint8 yOffset = 0; local
42 yOffset = -y;
46 OUTREG(CUR_OFFSET, (si.cursorOffset >> 3) + (yOffset << 1));
47 OUTREG(CUR_HORZ_VERT_OFF, (yOffset << 16) | xOffset);
H A Drage128_cursor.cpp35 // xOffset & yOffset are used for displaying partial cursors on screen edges.
38 uint8 yOffset = 0; local
46 yOffset = (( -y) & 0xFE);
50 OUTREG(R128_CUR_HORZ_VERT_OFF, R128_CUR_LOCK | (xOffset << 16) | yOffset);
52 OUTREG(R128_CUR_OFFSET, si.cursorOffset + yOffset * 16);
/haiku/src/add-ons/accelerants/s3/
H A Dtrio64_cursor.cpp31 uint8 yOffset = 0; local
33 // xOffset & yOffset are used for displaying partial cursors on screen edges.
41 yOffset = (( -y) & 0xfe);
49 WriteCrtcReg( 0x4f, yOffset );
H A Dvirge_cursor.cpp31 uint8 yOffset = 0; local
33 // xOffset & yOffset are used for displaying partial cursors on screen edges.
41 yOffset = (( -y) & 0xfe);
49 WriteCrtcReg( 0x4f, yOffset );
H A Dsavage_cursor.cpp52 // xOffset & yOffset are used for displaying partial cursors on screen edges.
55 uint8 yOffset = 0; local
63 yOffset = (( -y) & 0xFE);
72 WriteCrtcReg( 0x4f, yOffset );
/haiku/src/servers/app/drawing/interface/virtual/
H A DDWindowBuffer.cpp77 int32 yOffset = info->window_bounds.top; local
82 fWindowClipping.OffsetBy(xOffset, yOffset);
90 fBits += xOffset * 4 + yOffset * fBytesPerRow;
/haiku/src/apps/icon-o-matic/transformable/
H A DChannelTransform.cpp140 double yOffset = fTranslation.y - origin.y; local
143 m.transform(&xOffset, &yOffset);
146 fTranslation.y = origin.y + yOffset;
181 double yOffset = fTranslation.y - origin.y; local
184 fTranslation.y = origin.y + (yOffset * yScale);
H A DPerspectiveBox.cpp421 double yOffset = -y; local
425 r.transform(&xOffset, &yOffset);
427 yOffset = y + yOffset;
430 m.multiply(agg::trans_affine_translation(xOffset, yOffset));
H A DTransformBox.cpp666 double yOffset = -y; local
670 r.transform(&xOffset, &yOffset);
672 yOffset = y + yOffset;
675 m.multiply(agg::trans_affine_translation(xOffset, yOffset));
/haiku/src/tests/servers/app/newClipping/
H A DMyView.h19 void CopyRegion(BRegion *region, int32 xOffset, int32 yOffset);
H A DMyView.cpp201 void MyView::CopyRegion(BRegion *region, int32 xOffset, int32 yOffset) argument
233 if (yOffset > 0) {
239 } else if (yOffset < 0) {
273 CopyBits(n->rect, BRect(n->rect).OffsetByCopy(xOffset, yOffset));
/haiku/src/tests/servers/app/newerClipping/drawing/
H A DDrawingEngine.h31 void CopyRegion(BRegion *region, int32 xOffset, int32 yOffset);
H A DAccelerantHWInterface.h59 int32 xOffset, int32 yOffset);
H A DDirectWindowBuffer.cpp74 int32 yOffset = info->window_bounds.top; local
H A DDrawingEngine.cpp212 DrawingEngine::CopyRegion(BRegion* region, int32 xOffset, int32 yOffset) argument
245 if (yOffset > 0) {
251 } else if (yOffset < 0) {
302 fHWInterface->CopyRegion(sortedRectList, count, xOffset, yOffset);
/haiku/src/apps/haiku3d/
H A DRenderView.cpp152 float yOffset = -1.0f; local
157 Vector3(-3.6 * spacing, yOffset, zOffset),
164 Vector3(-1.6 * spacing, yOffset, zOffset),
171 Vector3(0 * spacing, yOffset, zOffset),
178 Vector3(1.5 * spacing, yOffset, zOffset),
185 Vector3(3.4 * spacing, yOffset, zOffset),
/haiku/src/servers/app/drawing/
H A DDrawingEngine.h74 int32 xOffset = 0, int32 yOffset = 0);
91 int32 xOffset, int32 yOffset);
98 int32 xOffset, int32 yOffset);
199 int32 yOffset) const;
208 int32 xOffset, int32 yOffset) const;
H A DDrawingEngine.cpp314 int32 yOffset)
316 fPainter->SetDrawState(state, xOffset, yOffset);
401 int32 yOffset)
403 fPainter->SetTransform(transform, xOffset, yOffset);
552 int32 yOffset)
558 frame = frame | frame.OffsetByCopy(xOffset, yOffset);
593 if (yOffset > 0) {
599 } else if (yOffset < 0) {
652 BRect touched = CopyRect(n->rect, xOffset, yOffset);
665 fGraphicsCard->CopyRegion(sortedRectList, count, xOffset, yOffset);
313 SetDrawState(const DrawState* state, int32 xOffset, int32 yOffset) argument
400 SetTransform(const BAffineTransform& transform, int32 xOffset, int32 yOffset) argument
551 CopyRegion( BRegion* region, int32 xOffset, int32 yOffset) argument
[all...]
/haiku/src/tests/servers/app/newerClipping/
H A DWindowLayer.h101 int32 xOffset, int32 yOffset);
105 int32 xOffset, int32 yOffset);
H A DWindowLayer.cpp471 WindowLayer::CopyContents(BRegion* region, int32 xOffset, int32 yOffset) argument
485 region->OffsetBy(xOffset, yOffset);
490 region->OffsetBy(-xOffset, -yOffset);
495 fDrawingEngine->CopyRegion(region, xOffset, yOffset);
501 _ShiftPartOfRegion(&fDirtyRegion, region, xOffset, yOffset);
503 _ShiftPartOfRegion(&fCurrentUpdateSession.DirtyRegion(), region, xOffset, yOffset);
505 _ShiftPartOfRegion(&fPendingUpdateSession.DirtyRegion(), region, xOffset, yOffset);
516 newDirty.OffsetBy(xOffset, yOffset);
530 int32 xOffset, int32 yOffset)
539 common.OffsetBy(xOffset, yOffset);
529 _ShiftPartOfRegion(BRegion* region, BRegion* regionToShift, int32 xOffset, int32 yOffset) argument
[all...]
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteDrawingEngine.h45 int32 xOffset = 0, int32 yOffset = 0);
61 int32 xOffset, int32 yOffset);
152 int32 yOffset) const;
/haiku/src/tests/apps/miniterminal/
H A DViewBuffer.cpp261 int32 yOffset = desty - srcy; local
277 if (yOffset > 0) {
286 uint16* dst = src + yOffset * fColumns + xOffset;
/haiku/src/kits/tracker/
H A DPose.cpp832 int32 yOffset; local
836 yOffset = 0;
838 yOffset = 2;
839 int32 barHeight = size - 4 - 2 * yOffset;
843 view->MovePenTo(BPoint(where.x + size, where.y + 1 + yOffset));
844 view->StrokeLine(BPoint(where.x + size, where.y + size - yOffset));
846 where.y + size - yOffset));
852 BRect rect(where.x + size - barWidth,where.y + yOffset,
853 where.x + size - 1,where.y + size - 1 - yOffset);
/haiku/src/servers/app/drawing/interface/local/
H A DAccelerantHWInterface.h71 uint32 count, int32 xOffset, int32 yOffset);
120 uint32 count, int32 xOffset, int32 yOffset,
/haiku/src/servers/app/
H A DView.cpp850 int32 yOffset = dst.top - src.top; local
857 visibleSrcAtDest.OffsetBy(xOffset, yOffset);
861 visibleSrcAtDest.OffsetBy(-xOffset, -yOffset);
872 visibleSrc.OffsetBy(xOffset, yOffset);
884 copyRegion->OffsetBy(-xOffset, -yOffset);
888 fWindow->CopyContents(copyRegion, xOffset, yOffset);
901 copyRegion->OffsetBy(xOffset, yOffset);

Completed in 232 milliseconds

12