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
ebd68448
Kaydet (Commit)
ebd68448
authored
Şub 05, 2016
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ok non-zeroed empty extents is legitimate after all
Change-Id: Ida1e27322bad5d2d36ae4217bb84187a022ebadf
üst
be2bf035
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
14 deletions
+8
-14
svpgdi.cxx
vcl/headless/svpgdi.cxx
+8
-14
No files found.
vcl/headless/svpgdi.cxx
Dosyayı görüntüle @
ebd68448
...
@@ -1271,21 +1271,15 @@ cairo_user_data_key_t* SvpSalGraphics::getDamageKey()
...
@@ -1271,21 +1271,15 @@ cairo_user_data_key_t* SvpSalGraphics::getDamageKey()
void
SvpSalGraphics
::
releaseCairoContext
(
cairo_t
*
cr
,
bool
bXorModeAllowed
,
const
basegfx
::
B2DRange
&
rExtents
)
const
void
SvpSalGraphics
::
releaseCairoContext
(
cairo_t
*
cr
,
bool
bXorModeAllowed
,
const
basegfx
::
B2DRange
&
rExtents
)
const
{
{
sal_Int32
nExtentsLeft
;
if
(
rExtents
.
isEmpty
())
sal_Int32
nExtentsTop
;
{
sal_Int32
nExtentsRight
;
//nothing changed, return early
sal_Int32
nExtentsBottom
;
cairo_destroy
(
cr
);
if
(
rExtents
.
isEmpty
())
{
return
;
nExtentsLeft
=
0
;
nExtentsTop
=
0
;
nExtentsRight
=
0
;
nExtentsBottom
=
0
;
}
else
{
nExtentsLeft
=
rExtents
.
getMinX
();
nExtentsTop
=
rExtents
.
getMinY
();
nExtentsRight
=
rExtents
.
getMaxX
();
nExtentsBottom
=
rExtents
.
getMaxY
();
}
}
sal_Int32
nExtentsLeft
(
rExtents
.
getMinX
()),
nExtentsTop
(
rExtents
.
getMinY
());
sal_Int32
nExtentsRight
(
rExtents
.
getMaxX
()),
nExtentsBottom
(
rExtents
.
getMaxY
());
sal_Int32
nWidth
=
cairo_image_surface_get_width
(
m_pSurface
);
sal_Int32
nWidth
=
cairo_image_surface_get_width
(
m_pSurface
);
sal_Int32
nHeight
=
cairo_image_surface_get_height
(
m_pSurface
);
sal_Int32
nHeight
=
cairo_image_surface_get_height
(
m_pSurface
);
nExtentsLeft
=
std
::
max
<
sal_Int32
>
(
nExtentsLeft
,
0
);
nExtentsLeft
=
std
::
max
<
sal_Int32
>
(
nExtentsLeft
,
0
);
...
...
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