Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
94f7321e
Kaydet (Commit)
94f7321e
authored
Ock 19, 2016
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Win9x has been dead and forgotten for a long time
Change-Id: I75c58e81c27edd65239c6e033170a432735a81e4
üst
a06eefde
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
gdiimpl.cxx
vcl/win/gdi/gdiimpl.cxx
+0
-16
No files found.
vcl/win/gdi/gdiimpl.cxx
Dosyayı görüntüle @
94f7321e
...
...
@@ -73,7 +73,6 @@
#define DMAP( _def_nVal, _def_nThres ) ((pDitherDiff[_def_nVal]>(_def_nThres))?pDitherHigh[_def_nVal]:pDitherLow[_def_nVal])
#define SAL_POLY_STACKBUF 32
#define USE_GDI_BEZIERS
namespace
{
...
...
@@ -1775,22 +1774,15 @@ void WinSalGraphicsImpl::drawPolyPolygon( sal_uInt32 nPoly, const sal_uInt32* pP
bool
WinSalGraphicsImpl
::
drawPolyLineBezier
(
sal_uInt32
nPoints
,
const
SalPoint
*
pPtAry
,
const
BYTE
*
pFlgAry
)
{
#ifdef USE_GDI_BEZIERS
// for NT, we can handover the array directly
static_assert
(
sizeof
(
POINT
)
==
sizeof
(
SalPoint
),
"must be the same size"
);
ImplRenderPath
(
mrParent
.
getHDC
(),
nPoints
,
pPtAry
,
pFlgAry
);
return
true
;
#else
return
false
;
#endif
}
bool
WinSalGraphicsImpl
::
drawPolygonBezier
(
sal_uInt32
nPoints
,
const
SalPoint
*
pPtAry
,
const
BYTE
*
pFlgAry
)
{
#ifdef USE_GDI_BEZIERS
// for NT, we can handover the array directly
static_assert
(
sizeof
(
POINT
)
==
sizeof
(
SalPoint
),
"must be the same size"
);
POINT
aStackAry1
[
SAL_POLY_STACKBUF
];
...
...
@@ -1831,16 +1823,11 @@ bool WinSalGraphicsImpl::drawPolygonBezier( sal_uInt32 nPoints, const SalPoint*
}
return
bRet
;
#else
return
false
;
#endif
}
bool
WinSalGraphicsImpl
::
drawPolyPolygonBezier
(
sal_uInt32
nPoly
,
const
sal_uInt32
*
pPoints
,
const
SalPoint
*
const
*
pPtAry
,
const
BYTE
*
const
*
pFlgAry
)
{
#ifdef USE_GDI_BEZIERS
// for NT, we can handover the array directly
static_assert
(
sizeof
(
POINT
)
==
sizeof
(
SalPoint
),
"must be the same size"
);
sal_uLong
nCurrPoly
,
nTotalPoints
;
...
...
@@ -1885,9 +1872,6 @@ bool WinSalGraphicsImpl::drawPolyPolygonBezier( sal_uInt32 nPoly, const sal_uInt
}
return
bRet
;
#else
return
false
;
#endif
}
void
impAddB2DPolygonToGDIPlusGraphicsPathReal
(
Gdiplus
::
GpPath
*
pPath
,
const
basegfx
::
B2DPolygon
&
rPolygon
,
bool
bNoLineJoin
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment