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
d08280cd
Kaydet (Commit)
d08280cd
authored
May 04, 2013
tarafından
Thorsten Behrens
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Debug rendering for PostScript printer backend.
Change-Id: I4581026627fe509895d471f5c28089aaaee85f58
üst
a89aa684
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
print2.cxx
vcl/source/gdi/print2.cxx
+14
-1
No files found.
vcl/source/gdi/print2.cxx
Dosyayı görüntüle @
d08280cd
...
...
@@ -641,7 +641,6 @@ static bool ImplIsActionHandlingTransparency( const MetaAction& rAct )
}
}
// remove comment to enable highlighting of generated output
bool
OutputDevice
::
RemoveTransparenciesFromMetaFile
(
const
GDIMetaFile
&
rInMtf
,
GDIMetaFile
&
rOutMtf
,
long
nMaxBmpDPIX
,
long
nMaxBmpDPIY
,
bool
bReduceTransparency
,
bool
bTransparencyAutoMode
,
...
...
@@ -1341,6 +1340,20 @@ bool OutputDevice::RemoveTransparenciesFromMetaFile( const GDIMetaFile& rInMtf,
rOutMtf
.
SetPrefMapMode
(
rInMtf
.
GetPrefMapMode
()
);
rOutMtf
.
SetPrefSize
(
rInMtf
.
GetPrefSize
()
);
#if OSL_DEBUG_LEVEL > 1
// iterate over all aCCList members and generate rectangles for the bounding boxes
rOutMtf
.
AddAction
(
new
MetaFillColorAction
(
COL_WHITE
,
false
)
);
for
(
aCurr
=
aCCList
.
begin
();
aCurr
!=
aLast
;
++
aCurr
)
{
if
(
aCurr
->
bIsSpecial
)
rOutMtf
.
AddAction
(
new
MetaLineColorAction
(
COL_RED
,
true
)
);
else
rOutMtf
.
AddAction
(
new
MetaLineColorAction
(
COL_BLUE
,
true
)
);
rOutMtf
.
AddAction
(
new
MetaRectAction
(
aMapModeVDev
.
PixelToLogic
(
aCurr
->
aBounds
)
)
);
}
#endif
}
return
bTransparent
;
}
...
...
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