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
09f4a21d
Kaydet (Commit)
09f4a21d
authored
Mar 05, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
this drawAlphaBitmap variant is unused
Change-Id: Id2f9073969babe7ad5984f87949ed870f9d5a8f7
üst
10a5e136
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
41 deletions
+0
-41
openglgdiimpl.hxx
vcl/inc/openglgdiimpl.hxx
+0
-5
salgdiimpl.hxx
vcl/inc/salgdiimpl.hxx
+0
-5
gdiimpl.cxx
vcl/opengl/gdiimpl.cxx
+0
-16
gdiimpl.cxx
vcl/unx/generic/gdi/gdiimpl.cxx
+0
-6
gdiimpl.hxx
vcl/unx/generic/gdi/gdiimpl.hxx
+0
-4
gdiimpl.hxx
vcl/win/source/gdi/gdiimpl.hxx
+0
-5
No files found.
vcl/inc/openglgdiimpl.hxx
Dosyayı görüntüle @
09f4a21d
...
...
@@ -293,11 +293,6 @@ public:
const
SalBitmap
&
rSourceBitmap
,
const
SalBitmap
&
rAlphaBitmap
)
SAL_OVERRIDE
;
/** Render 32-bits bitmap with alpha channel */
virtual
bool
drawAlphaBitmap
(
const
SalTwoRect
&
,
const
SalBitmap
&
rBitmap
)
SAL_OVERRIDE
;
/** draw transformed bitmap (maybe with alpha) where Null, X, Y define the coordinate system */
virtual
bool
drawTransformedBitmap
(
const
basegfx
::
B2DPoint
&
rNull
,
...
...
vcl/inc/salgdiimpl.hxx
Dosyayı görüntüle @
09f4a21d
...
...
@@ -193,11 +193,6 @@ public:
const
SalBitmap
&
rSourceBitmap
,
const
SalBitmap
&
rAlphaBitmap
)
=
0
;
/** Render 32-bits bitmap with alpha channel */
virtual
bool
drawAlphaBitmap
(
const
SalTwoRect
&
,
const
SalBitmap
&
rBitmap
)
=
0
;
/** draw transformed bitmap (maybe with alpha) where Null, X, Y define the coordinate system */
virtual
bool
drawTransformedBitmap
(
const
basegfx
::
B2DPoint
&
rNull
,
...
...
vcl/opengl/gdiimpl.cxx
Dosyayı görüntüle @
09f4a21d
...
...
@@ -1662,22 +1662,6 @@ bool OpenGLSalGraphicsImpl::drawAlphaBitmap(
return
true
;
}
bool
OpenGLSalGraphicsImpl
::
drawAlphaBitmap
(
const
SalTwoRect
&
rPosAry
,
const
SalBitmap
&
rSalBitmap
)
{
const
OpenGLSalBitmap
&
rBitmap
=
static_cast
<
const
OpenGLSalBitmap
&>
(
rSalBitmap
);
OpenGLTexture
&
rTexture
(
rBitmap
.
GetTexture
()
);
SAL_INFO
(
"vcl.opengl"
,
"::drawAlphaBitmap"
);
PreDraw
();
DrawAlphaTexture
(
rTexture
,
rPosAry
);
PostDraw
();
CHECK_GL_ERROR
();
return
true
;
}
/** draw transformed bitmap (maybe with alpha) where Null, X, Y define the coordinate system */
bool
OpenGLSalGraphicsImpl
::
drawTransformedBitmap
(
const
basegfx
::
B2DPoint
&
rNull
,
...
...
vcl/unx/generic/gdi/gdiimpl.cxx
Dosyayı görüntüle @
09f4a21d
...
...
@@ -950,12 +950,6 @@ bool X11SalGraphicsImpl::drawAlphaBitmap( const SalTwoRect& rTR,
return
true
;
}
bool
X11SalGraphicsImpl
::
drawAlphaBitmap
(
const
SalTwoRect
&
/*rTR*/
,
const
SalBitmap
&
/*rBitmap*/
)
{
return
false
;
}
bool
X11SalGraphicsImpl
::
drawTransformedBitmap
(
const
basegfx
::
B2DPoint
&
rNull
,
const
basegfx
::
B2DPoint
&
rX
,
...
...
vcl/unx/generic/gdi/gdiimpl.hxx
Dosyayı görüntüle @
09f4a21d
...
...
@@ -254,10 +254,6 @@ public:
const
SalBitmap
&
rSourceBitmap
,
const
SalBitmap
&
rAlphaBitmap
)
SAL_OVERRIDE
;
virtual
bool
drawAlphaBitmap
(
const
SalTwoRect
&
,
const
SalBitmap
&
rBitmap
)
SAL_OVERRIDE
;
/** draw transformed bitmap (maybe with alpha) where Null, X, Y define the coordinate system */
virtual
bool
drawTransformedBitmap
(
const
basegfx
::
B2DPoint
&
rNull
,
...
...
vcl/win/source/gdi/gdiimpl.hxx
Dosyayı görüntüle @
09f4a21d
...
...
@@ -201,11 +201,6 @@ public:
const
SalBitmap
&
rSourceBitmap
,
const
SalBitmap
&
rAlphaBitmap
)
SAL_OVERRIDE
;
/** Render 32-bits bitmap with alpha channel */
virtual
bool
drawAlphaBitmap
(
const
SalTwoRect
&
,
const
SalBitmap
&
)
SAL_OVERRIDE
{
return
false
;}
/** draw transformed bitmap (maybe with alpha) where Null, X, Y define the coordinate system */
virtual
bool
drawTransformedBitmap
(
const
basegfx
::
B2DPoint
&
rNull
,
...
...
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