Home
last modified time | relevance | path

Searched refs:PolyFlags (Results 1 – 25 of 134) sorted by relevance

123456

/dports/editors/libreoffice/libreoffice-7.2.6.2/tools/qa/cppunit/
H A Dtest_poly.cxx32 const PolyFlags flags[] in testTdf137068()
33 = { PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, PolyFlags::Normal }; in testTdf137068()
/dports/editors/libreoffice/libreoffice-7.2.6.2/tools/source/generic/
H A Dpoly.cxx506 mxFlagAry.reset(new PolyFlags[nInitSize]); in ImplInitSize()
548 std::unique_ptr<PolyFlags[]> xNewFlagAry; in ImplSetSize()
617 std::unique_ptr<PolyFlags[]> xNewFlagAry(new PolyFlags[nNewSize]); in ImplSplit()
640 mxFlagAry.reset(new PolyFlags[mnPoints]); in ImplCreateFlagArray()
930 const PolyFlags* Polygon::GetConstFlagAry() const in GetConstFlagAry()
950 if ( eFlags != PolyFlags::Normal ) in SetFlags()
971 : PolyFlags::Normal; in GetFlags()
1196 … if( ( PolyFlags::Normal == P1 || PolyFlags::Smooth == P1 || PolyFlags::Symmetric == P1 ) && in AdaptiveSubdivide()
1199 … ( PolyFlags::Normal == P4 || PolyFlags::Smooth == P4 || PolyFlags::Symmetric == P4 ) ) in AdaptiveSubdivide()
1701 if(nIndex >= nPointCount || (PolyFlags::Smooth != nCFlag && PolyFlags::Symmetric != nCFlag)) in impCorrectContinuity()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/tools/source/generic/
H A Dpoly.cxx503 mxFlagAry.reset(new PolyFlags[nInitSize]); in ImplInitSize()
545 std::unique_ptr<PolyFlags[]> xNewFlagAry; in ImplSetSize()
614 std::unique_ptr<PolyFlags[]> xNewFlagAry(new PolyFlags[nNewSize]); in ImplSplit()
637 mxFlagAry.reset(new PolyFlags[mnPoints]); in ImplCreateFlagArray()
919 const PolyFlags* Polygon::GetConstFlagAry() const in GetConstFlagAry()
939 if ( eFlags != PolyFlags::Normal ) in SetFlags()
960 : PolyFlags::Normal; in GetFlags()
1185 … if( ( PolyFlags::Normal == P1 || PolyFlags::Smooth == P1 || PolyFlags::Symmetric == P1 ) && in AdaptiveSubdivide()
1188 … ( PolyFlags::Normal == P4 || PolyFlags::Smooth == P4 || PolyFlags::Symmetric == P4 ) ) in AdaptiveSubdivide()
1706 if(nIndex < nPointCount && (PolyFlags::Smooth == nCFlag || PolyFlags::Symmetric == nCFlag)) in impCorrectContinuity()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/unx/generic/glyphs/
H A Dfreetype_glyphcache.cxx730 std::unique_ptr<PolyFlags[]>
751 mpFlagAry.reset( new PolyFlags [ mnMaxPoints ] ); in PolyArgs()
765 bHasOffline |= (aFlag != PolyFlags::Normal); in AddPoint()
824 rA.AddPoint( p0->x, p0->y, PolyFlags::Normal ); in FT_move_to()
831 rA.AddPoint( p1->x, p1->y, PolyFlags::Normal ); in FT_line_to()
842 rA.AddPoint( nX1, nY1, PolyFlags::Control ); in FT_conic_to()
846 rA.AddPoint( nX2, nY2, PolyFlags::Control ); in FT_conic_to()
848 rA.AddPoint( p2->x, p2->y, PolyFlags::Normal ); in FT_conic_to()
855 rA.AddPoint( p1->x, p1->y, PolyFlags::Control ); in FT_cubic_to()
856 rA.AddPoint( p2->x, p2->y, PolyFlags::Control ); in FT_cubic_to()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/unx/generic/glyphs/
H A Dfreetype_glyphcache.cxx744 std::unique_ptr<PolyFlags[]>
767 mpFlagAry.reset( new PolyFlags [ mnMaxPoints ] ); in PolyArgs()
781 bHasOffline |= (aFlag != PolyFlags::Normal); in AddPoint()
840 rA.AddPoint( p0->x, p0->y, PolyFlags::Normal ); in FT_move_to()
847 rA.AddPoint( p1->x, p1->y, PolyFlags::Normal ); in FT_line_to()
858 rA.AddPoint( nX1, nY1, PolyFlags::Control ); in FT_conic_to()
862 rA.AddPoint( nX2, nY2, PolyFlags::Control ); in FT_conic_to()
864 rA.AddPoint( p2->x, p2->y, PolyFlags::Normal ); in FT_conic_to()
871 rA.AddPoint( p1->x, p1->y, PolyFlags::Control ); in FT_cubic_to()
872 rA.AddPoint( p2->x, p2->y, PolyFlags::Control ); in FT_cubic_to()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/outdev/
H A Dfont.cxx303 static const PolyFlags aAccentPolyFlags[24] = in ImplGetEmphasisMark()
305 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
306 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
307 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
308 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
309 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
310 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
311 PolyFlags::Normal, PolyFlags::Normal, PolyFlags::Control, in ImplGetEmphasisMark()
312 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control in ImplGetEmphasisMark()
H A Dpolygon.cxx240 const PolyFlags* pFlgAry = aPoly.GetConstFlagAry(); in DrawPolygon()
360 PolyFlags* aStackAry3[OUTDEV_POLYPOLY_STACKBUF]; in ImplDrawPolyPolygon()
363 const PolyFlags** pFlagAryAry; in ImplDrawPolyPolygon()
372 pFlagAryAry = new const PolyFlags*[nPoly]; in ImplDrawPolyPolygon()
378 pFlagAryAry = const_cast<const PolyFlags**>(aStackAry3); in ImplDrawPolyPolygon()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/outdev/
H A Dfont.cxx270 static const PolyFlags aAccentPolyFlags[24] = in ImplGetEmphasisMark()
272 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
273 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
274 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
275 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
276 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
277 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control, in ImplGetEmphasisMark()
278 PolyFlags::Normal, PolyFlags::Normal, PolyFlags::Control, in ImplGetEmphasisMark()
279 PolyFlags::Normal, PolyFlags::Control, PolyFlags::Control in ImplGetEmphasisMark()
H A Dpolygon.cxx240 const PolyFlags* pFlgAry = aPoly.GetConstFlagAry(); in DrawPolygon()
363 PolyFlags* aStackAry3[OUTDEV_POLYPOLY_STACKBUF]; in ImplDrawPolyPolygon()
366 const PolyFlags** pFlagAryAry; in ImplDrawPolyPolygon()
375 pFlagAryAry = new const PolyFlags*[nPoly]; in ImplDrawPolyPolygon()
381 pFlagAryAry = const_cast<const PolyFlags**>(aStackAry3); in ImplDrawPolyPolygon()
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/xoutdev/
H A D_xpoly.cxx94 PolyFlags* pOldFlagAry = pFlagAry.release(); in Resize()
112 pFlagAry.reset( new PolyFlags[ nSize ] ); in Resize()
315 pImpXPolygon->pFlagAry[0 ] = PolyFlags::Smooth; in XPolygon()
452 PolyFlags XPolygon::GetFlags( sal_uInt16 nPos ) const in GetFlags()
474 PolyFlags eFlag = pImpXPolygon->pFlagAry[nPos]; in IsSmooth()
475 return ( eFlag == PolyFlags::Smooth || eFlag == PolyFlags::Symmetric ); in IsSmooth()
583 SetFlags(nFirst+1, PolyFlags::Control); in GenBezArc()
584 SetFlags(nFirst+2, PolyFlags::Control); in GenBezArc()
663 if ( GetFlags(nCenter) == PolyFlags::Symmetric ) in CalcTangent()
737 SetFlags(nFirst+1, PolyFlags::Control); in PointsToBezier()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/xoutdev/
H A D_xpoly.cxx99 PolyFlags* pOldFlagAry = pFlagAry.release(); in Resize()
117 pFlagAry.reset( new PolyFlags[ nSize ] ); in Resize()
320 pImpXPolygon->pFlagAry[0 ] = PolyFlags::Smooth; in XPolygon()
457 PolyFlags XPolygon::GetFlags( sal_uInt16 nPos ) const in GetFlags()
479 PolyFlags eFlag = pImpXPolygon->pFlagAry[nPos]; in IsSmooth()
480 return ( eFlag == PolyFlags::Smooth || eFlag == PolyFlags::Symmetric ); in IsSmooth()
588 SetFlags(nFirst+1, PolyFlags::Control); in GenBezArc()
589 SetFlags(nFirst+2, PolyFlags::Control); in GenBezArc()
668 if ( GetFlags(nCenter) == PolyFlags::Symmetric ) in CalcTangent()
742 SetFlags(nFirst+1, PolyFlags::Control); in PointsToBezier()
[all …]
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/hardware/r_d3d/
H A DR_d3d.cpp837 switch(PolyFlags & PF_Blending) { in HWRAPI()
867 if( PolyFlags & PF_AlphaTest) in HWRAPI()
875 if( PolyFlags & PF_Decal ) in HWRAPI()
882 if( PolyFlags & PF_NoDepthTest ) in HWRAPI()
889 if( PolyFlags & PF_Modulated ) in HWRAPI()
900 if (PolyFlags&PF_Occlude) in HWRAPI()
910 if (PolyFlags&PF_Invisible) in HWRAPI()
915 if (PolyFlags&PF_Masked) in HWRAPI()
919 if( PolyFlags & PF_NoTexture ) in HWRAPI()
924 CurrentPolyFlags = PolyFlags; in HWRAPI()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sd/source/ui/func/
H A Dfucon3d.cxx134 aXPoly.Insert(0, Point (2400*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
135 aXPoly.Insert(0, Point (2000*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
136 aXPoly.Insert(0, Point (1500*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
137 aXPoly.Insert(0, Point (1000*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
138 aXPoly.Insert(0, Point (500*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
139 aXPoly.Insert(0, Point (250*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
140 aXPoly.Insert(0, Point (50*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
141 aXPoly.Insert(0, Point (0, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sd/source/ui/func/
H A Dfucon3d.cxx133 aXPoly.Insert(0, Point (2400*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
134 aXPoly.Insert(0, Point (2000*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
135 aXPoly.Insert(0, Point (1500*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
136 aXPoly.Insert(0, Point (1000*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
137 aXPoly.Insert(0, Point (500*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
138 aXPoly.Insert(0, Point (250*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
139 aXPoly.Insert(0, Point (50*5, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
140 aXPoly.Insert(0, Point (0, 1250*5), PolyFlags::Normal); in ImpCreateBasic3DShape()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/tools/
H A Dpoly.hxx50 enum class PolyFlags : sal_uInt8 enum
86 const PolyFlags* pFlagAry = nullptr );
107 void SetFlags( sal_uInt16 nPos, PolyFlags eFlags );
108 PolyFlags GetFlags( sal_uInt16 nPos ) const;
174 const PolyFlags* GetConstFlagAry() const;
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/unx/generic/print/
H A Dcommon_gfx.cxx474 PrinterGfx::DrawPolyLineBezier (sal_uInt32 nPoints, const Point* pPath, const PolyFlags* pFlgAry) in DrawPolyLineBezier()
494 …if (pFlgAry[i] != PolyFlags::Control) //If the next point is a PolyFlags::Normal, we're drawing a … in DrawPolyLineBezier()
503 if ((pFlgAry[i] == PolyFlags::Control) && (pFlgAry[i+1] == PolyFlags::Control) && in DrawPolyLineBezier()
504 (pFlgAry[i+2] != PolyFlags::Control)) in DrawPolyLineBezier()
525 PrinterGfx::DrawPolygonBezier (sal_uInt32 nPoints, const Point* pPath, const PolyFlags* pFlgAry) in DrawPolygonBezier()
537 if (pFlgAry[i] != PolyFlags::Control) in DrawPolygonBezier()
548 if ((pFlgAry[i] == PolyFlags::Control) && (pFlgAry[i+1] == PolyFlags::Control) && in DrawPolygonBezier()
549 (pFlgAry[i+2] != PolyFlags::Control)) in DrawPolygonBezier()
582 …32 nPoly, const sal_uInt32 * pPoints, const Point* const * pPtAry, const PolyFlags* const* pFlgAry) in DrawPolyPolygonBezier()
603 if ( ! pFlgAry[i] || pFlgAry[i][j] != PolyFlags::Control) in DrawPolyPolygonBezier()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/unx/generic/print/
H A Dcommon_gfx.cxx474 PrinterGfx::DrawPolyLineBezier (sal_uInt32 nPoints, const Point* pPath, const PolyFlags* pFlgAry) in DrawPolyLineBezier()
493 …if (pFlgAry[i] != PolyFlags::Control) //If the next point is a PolyFlags::Normal, we're drawing a … in DrawPolyLineBezier()
502 if ((pFlgAry[i] == PolyFlags::Control) && (pFlgAry[i+1] == PolyFlags::Control) && in DrawPolyLineBezier()
503 (pFlgAry[i+2] != PolyFlags::Control)) in DrawPolyLineBezier()
525 PrinterGfx::DrawPolygonBezier (sal_uInt32 nPoints, const Point* pPath, const PolyFlags* pFlgAry) in DrawPolygonBezier()
537 if (pFlgAry[i] != PolyFlags::Control) in DrawPolygonBezier()
547 if ((pFlgAry[i] == PolyFlags::Control) && (pFlgAry[i+1] == PolyFlags::Control) && in DrawPolygonBezier()
548 (pFlgAry[i+2] != PolyFlags::Control)) in DrawPolygonBezier()
581 …32 nPoly, const sal_uInt32 * pPoints, const Point* const * pPtAry, const PolyFlags* const* pFlgAry) in DrawPolyPolygonBezier()
601 if ( ! pFlgAry[i] || pFlgAry[i][j] != PolyFlags::Control) in DrawPolyPolygonBezier()
[all …]
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/hardware/r_glide/
H A Dr_glide.c835 EXPORT void HWRAPI( SetBlend ) ( FBITFIELD PolyFlags ) in HWRAPI()
845 Xor = CurrentPolyFlags^PolyFlags; in HWRAPI()
851 switch(PolyFlags & PF_Blending) { in HWRAPI()
880 if( PolyFlags & PF_NoAlphaTest) in HWRAPI()
890 if( PolyFlags & PF_Decal ) in HWRAPI()
897 switch (PolyFlags & (PF_Modulated | PF_NoTexture)) { in HWRAPI()
948 if( PolyFlags & PF_NoDepthTest ) in HWRAPI()
956 grDepthMask( (PolyFlags&PF_Occlude)!=0 ); in HWRAPI()
960 grColorMask( (PolyFlags&PF_Invisible)==0 , FXFALSE ); in HWRAPI()
963 CurrentPolyFlags = PolyFlags; in HWRAPI()
[all …]
/dports/games/avp/avp-20170505/src/avp/win95/
H A Dkzsort.c876 if (polyheader->PolyFlags & iflag_sortnearz) currentItemPtr->SortKey = minZ;
887 mypolyheader->PolyFlags = *shapeitemptr++;
927 if((pheaderPtr->PolyFlags & iflag_viewdotpos) == 0)
947 if((pheaderPtr->PolyFlags & iflag_tx2dor3d)
951 if((pheaderPtr->PolyFlags & iflag_tx2dor3d)
958 if((pheaderPtr->PolyFlags & iflag_tx2dor3d)
962 if((pheaderPtr->PolyFlags & iflag_tx2dor3d)
1018 if (4==num_verts && !(((POLYHEADER *)shapeitemptr)->PolyFlags & iflag_txanim))
1077 ((POLYHEADER *)item_array_buf)->PolyFlags &= ~iflag_tx2dor3d;
1118 ((POLYHEADER *)item_array_buf)->PolyFlags &= ~iflag_tx2dor3d;
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/tools/
H A Dpoly.hxx51 enum class PolyFlags : sal_uInt8 enum
87 const PolyFlags* pFlagAry = nullptr );
107 void SetFlags( sal_uInt16 nPos, PolyFlags eFlags );
108 PolyFlags GetFlags( sal_uInt16 nPos ) const;
174 const PolyFlags* GetConstFlagAry() const;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/inc/
H A Dsalgdiimpl.hxx118 const PolyFlags* pFlgAry ) = 0;
123 const PolyFlags* pFlgAry ) = 0;
129 const PolyFlags* const* pFlgAry ) = 0;
H A Dsalgdi.hxx259 const PolyFlags* pFlgAry,
265 const PolyFlags* pFlgAry,
272 const PolyFlags* const* pFlgAry,
475 const PolyFlags* pFlgAry ) = 0;
480 const PolyFlags* pFlgAry ) = 0;
486 const PolyFlags* const* pFlgAry ) = 0;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/svx/
H A Dxpoly.hxx72 void Insert( sal_uInt16 nPos, const Point& rPt, PolyFlags eFlags );
84 PolyFlags GetFlags( sal_uInt16 nPos ) const;
85 void SetFlags( sal_uInt16 nPos, PolyFlags eFlags );
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/svx/
H A Dxpoly.hxx73 void Insert( sal_uInt16 nPos, const Point& rPt, PolyFlags eFlags );
85 PolyFlags GetFlags( sal_uInt16 nPos ) const;
86 void SetFlags( sal_uInt16 nPos, PolyFlags eFlags );
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/inc/unx/
H A Dprintergfx.hxx33 enum class PolyFlags : sal_uInt8;
297 const PolyFlags* pFlgAry );
300 const PolyFlags* pFlgAry);
304 const PolyFlags* const* pFlgAry);

123456