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
f5b3ea83
Kaydet (Commit)
f5b3ea83
authored
Kas 14, 2014
tarafından
Michael Meeks
Kaydeden (comit)
Markus Mohrhard
Kas 15, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl: Fix palette modification during BitmapWriteAccess lifetime.
Change-Id: I8bdedd63895ff0b3245d996cf35ac92d9ab0ff9d
üst
c7d87b72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
salbmp.cxx
vcl/opengl/salbmp.cxx
+11
-1
No files found.
vcl/opengl/salbmp.cxx
Dosyayı görüntüle @
f5b3ea83
...
@@ -239,9 +239,12 @@ public:
...
@@ -239,9 +239,12 @@ public:
ImplPixelFormat8
(
const
BitmapPalette
&
rPalette
)
ImplPixelFormat8
(
const
BitmapPalette
&
rPalette
)
:
mrPalette
(
rPalette
)
:
mrPalette
(
rPalette
)
{
{
if
(
mrPalette
.
GetEntryCount
()
<
256
)
SAL_WARN
(
"vcl.opengl"
,
"Bad sign, if we get an OOB pixel we die"
);
}
}
virtual
const
BitmapColor
&
ReadPixel
()
SAL_OVERRIDE
virtual
const
BitmapColor
&
ReadPixel
()
SAL_OVERRIDE
{
{
assert
(
mrPalette
.
GetEntryCount
()
>
*
mpData
);
return
mrPalette
[
*
mpData
++
];
return
mrPalette
[
*
mpData
++
];
}
}
};
};
...
@@ -259,6 +262,8 @@ public:
...
@@ -259,6 +262,8 @@ public:
,
mnX
(
0
)
,
mnX
(
0
)
,
mnShift
(
4
)
,
mnShift
(
4
)
{
{
if
(
mrPalette
.
GetEntryCount
()
<
16
)
SAL_WARN
(
"vcl.opengl"
,
"Bad sign, if we get an OOB pixel we die"
);
}
}
virtual
void
StartLine
(
sal_uInt8
*
pLine
)
SAL_OVERRIDE
virtual
void
StartLine
(
sal_uInt8
*
pLine
)
SAL_OVERRIDE
{
{
...
@@ -268,7 +273,9 @@ public:
...
@@ -268,7 +273,9 @@ public:
}
}
virtual
const
BitmapColor
&
ReadPixel
()
SAL_OVERRIDE
virtual
const
BitmapColor
&
ReadPixel
()
SAL_OVERRIDE
{
{
const
BitmapColor
&
rColor
=
mrPalette
[(
mpData
[
mnX
>>
1
]
>>
mnShift
)
&
0x0f
];
sal_uInt32
nIdx
=
(
mpData
[
mnX
>>
1
]
>>
mnShift
)
&
0x0f
;
assert
(
mrPalette
.
GetEntryCount
()
>
nIdx
);
const
BitmapColor
&
rColor
=
mrPalette
[
nIdx
];
mnX
++
;
mnX
++
;
mnShift
^=
4
;
mnShift
^=
4
;
return
rColor
;
return
rColor
;
...
@@ -517,6 +524,9 @@ void OpenGLSalBitmap::ReleaseBuffer( BitmapBuffer* pBuffer, bool bReadOnly )
...
@@ -517,6 +524,9 @@ void OpenGLSalBitmap::ReleaseBuffer( BitmapBuffer* pBuffer, bool bReadOnly )
maTexture
=
OpenGLTexture
();
maTexture
=
OpenGLTexture
();
mbDirtyTexture
=
true
;
mbDirtyTexture
=
true
;
}
}
// The palette is modified on read during the BitmapWriteAccess,
// but of course, often it is not modified; interesting.
maPalette
=
pBuffer
->
maPalette
;
delete
pBuffer
;
delete
pBuffer
;
}
}
...
...
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