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
52a52a21
Kaydet (Commit)
52a52a21
authored
Agu 27, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1320472 Uninitialized scalar field
Change-Id: I50e07779a541bbea6b285a855fb54d419d4aed13
üst
0d80e7d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
texture.cxx
vcl/opengl/texture.cxx
+9
-6
No files found.
vcl/opengl/texture.cxx
Dosyayı görüntüle @
52a52a21
...
...
@@ -169,20 +169,23 @@ OpenGLTexture::OpenGLTexture(ImplOpenGLTexture* pImpl, Rectangle aRectangle, int
mpImpl
->
IncreaseRefCount
(
nSlotNumber
);
}
OpenGLTexture
::
OpenGLTexture
(
int
nWidth
,
int
nHeight
,
bool
bAllocate
)
:
maRect
(
Point
(
0
,
0
),
Size
(
nWidth
,
nHeight
)
)
OpenGLTexture
::
OpenGLTexture
(
int
nWidth
,
int
nHeight
,
bool
bAllocate
)
:
maRect
(
Point
(
0
,
0
),
Size
(
nWidth
,
nHeight
)
)
,
mnSlotNumber
(
-
1
)
{
mpImpl
=
new
ImplOpenGLTexture
(
nWidth
,
nHeight
,
bAllocate
);
}
OpenGLTexture
::
OpenGLTexture
(
int
nX
,
int
nY
,
int
nWidth
,
int
nHeight
)
:
maRect
(
Point
(
0
,
0
),
Size
(
nWidth
,
nHeight
)
)
OpenGLTexture
::
OpenGLTexture
(
int
nX
,
int
nY
,
int
nWidth
,
int
nHeight
)
:
maRect
(
Point
(
0
,
0
),
Size
(
nWidth
,
nHeight
)
)
,
mnSlotNumber
(
-
1
)
{
mpImpl
=
new
ImplOpenGLTexture
(
nX
,
nY
,
nWidth
,
nHeight
);
}
OpenGLTexture
::
OpenGLTexture
(
int
nWidth
,
int
nHeight
,
int
nFormat
,
int
nType
,
sal_uInt8
*
pData
)
:
maRect
(
Point
(
0
,
0
),
Size
(
nWidth
,
nHeight
)
)
OpenGLTexture
::
OpenGLTexture
(
int
nWidth
,
int
nHeight
,
int
nFormat
,
int
nType
,
sal_uInt8
*
pData
)
:
maRect
(
Point
(
0
,
0
),
Size
(
nWidth
,
nHeight
)
)
,
mnSlotNumber
(
-
1
)
{
mpImpl
=
new
ImplOpenGLTexture
(
nWidth
,
nHeight
,
nFormat
,
nType
,
pData
);
}
...
...
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