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
83cd0040
Kaydet (Commit)
83cd0040
authored
Ara 11, 2014
tarafından
Tomaž Vajngerl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
android: remove unneeded logging and comment tile rendering timing
Change-Id: Ia44efb54cbb0a91ea61cef9e7f250b5105c7ff51
üst
6721736e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
5 deletions
+2
-5
DirectBufferAllocator.java
...tstrap/src/org/libreoffice/kit/DirectBufferAllocator.java
+0
-1
LOKitThread.java
...ntal/LOAndroid3/src/java/org/libreoffice/LOKitThread.java
+0
-2
LOKitTileProvider.java
...OAndroid3/src/java/org/libreoffice/LOKitTileProvider.java
+2
-2
No files found.
android/Bootstrap/src/org/libreoffice/kit/DirectBufferAllocator.java
Dosyayı görüntüle @
83cd0040
...
...
@@ -27,7 +27,6 @@ public final class DirectBufferAllocator {
private
static
native
void
freeDirectBufferNative
(
ByteBuffer
aBuffer
);
public
static
ByteBuffer
allocate
(
int
size
)
{
Log
.
i
(
LOGTAG
,
"Allocating size: "
+
size
);
return
allocateVM
(
size
);
}
...
...
android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java
Dosyayı görüntüle @
83cd0040
...
...
@@ -103,7 +103,6 @@ public class LOKitThread extends Thread {
}
private
void
processEvent
(
LOEvent
event
)
{
Log
.
i
(
LOGTAG
,
"processEvent: "
+
event
.
getTypeString
());
switch
(
event
.
mType
)
{
case
LOEvent
.
LOAD
:
loadDocument
(
event
.
mFilename
);
...
...
@@ -124,7 +123,6 @@ public class LOKitThread extends Thread {
}
public
void
queueEvent
(
LOEvent
event
)
{
Log
.
i
(
LOGTAG
,
"Event: "
+
event
.
getTypeString
());
mEventQueue
.
add
(
event
);
}
...
...
android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java
Dosyayı görüntüle @
83cd0040
...
...
@@ -190,11 +190,11 @@ public class LOKitTileProvider implements TileProvider {
float
twipHeight
=
mTileHeight
/
zoom
;
long
start
=
System
.
currentTimeMillis
()
-
objectCreationTime
;
Log
.
i
(
LOGTAG
,
"paintTile >> @"
+
start
+
" ("
+
tileSize
.
width
+
" "
+
tileSize
.
height
+
" "
+
(
int
)
twipX
+
" "
+
(
int
)
twipY
+
" "
+
(
int
)
twipWidth
+
" "
+
(
int
)
twipHeight
+
")"
);
//
Log.i(LOGTAG, "paintTile >> @" + start + " (" + tileSize.width + " " + tileSize.height + " " + (int) twipX + " " + (int) twipY + " " + (int) twipWidth + " " + (int) twipHeight + ")");
mDocument
.
paintTile
(
buffer
,
tileSize
.
width
,
tileSize
.
height
,
(
int
)
twipX
,
(
int
)
twipY
,
(
int
)
twipWidth
,
(
int
)
twipHeight
);
long
stop
=
System
.
currentTimeMillis
()
-
objectCreationTime
;
Log
.
i
(
LOGTAG
,
"paintTile << @"
+
stop
+
" elapsed: "
+
(
stop
-
start
));
//
Log.i(LOGTAG, "paintTile << @" + stop + " elapsed: " + (stop - start));
}
else
{
Log
.
e
(
LOGTAG
,
"Document is null!!"
);
}
...
...
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