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
828b8cf4
Kaydet (Commit)
828b8cf4
authored
Tem 06, 2016
tarafından
Akash Jain
Kaydeden (comit)
Khaled Hosny
Eki 18, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
GSoC: Integrate new CommonSalLayout in unx/ code
Change-Id: I991cb5cbd2adad4f4c9f62f807990b9fde2a5133
üst
07492d48
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
README.vars
vcl/README.vars
+1
-0
cairotextrender.cxx
vcl/unx/generic/gdi/cairotextrender.cxx
+5
-1
No files found.
vcl/README.vars
Dosyayı görüntüle @
828b8cf4
...
...
@@ -6,6 +6,7 @@ SAL_USE_VCLPLUGIN - use a VCL plugin
SAL_NO_NWF - disable native widgets
SAL_FORCEDPI - force a specific DPI (gtk & gtk3 plugins only)
SAL_FORCE_HC - force high-contrast mode
SAL_USE_COMMON_LAYOUT - use CommonSalLayout layout engine for text layout
VCL_DOUBLEBUFFERING_AVOID_PAINT - don't paint the buffer, useful to see where we do direct painting
VCL_DOUBLEBUFFERING_FORCE_ENABLE - enable double buffered painting
...
...
vcl/unx/generic/gdi/cairotextrender.cxx
Dosyayı görüntüle @
828b8cf4
...
...
@@ -42,6 +42,7 @@
#include <cairo.h>
#include <cairo-ft.h>
#include "CommonSalLayout.hxx"
namespace
{
...
...
@@ -540,7 +541,10 @@ SalLayout* CairoTextRender::GetTextLayout( ImplLayoutArgs& rArgs, int nFallbackL
}
else
#endif
pLayout
=
new
ServerFontLayout
(
*
mpServerFont
[
nFallbackLevel
]
);
if
(
getenv
(
"SAL_USE_COMMON_LAYOUT"
))
pLayout
=
new
CommonSalLayout
(
*
mpServerFont
[
nFallbackLevel
]);
else
pLayout
=
new
ServerFontLayout
(
*
mpServerFont
[
nFallbackLevel
]);
}
return
pLayout
;
...
...
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