summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
Diffstat (limited to 'sal')
-rw-r--r--sal/android/lo-bootstrap.c87
1 files changed, 0 insertions, 87 deletions
diff --git a/sal/android/lo-bootstrap.c b/sal/android/lo-bootstrap.c
index f7a381ec3801..2d2f01af488c 100644
--- a/sal/android/lo-bootstrap.c
+++ b/sal/android/lo-bootstrap.c
@@ -1082,93 +1082,6 @@ Java_org_libreoffice_android_Bootstrap_redirect_1stdio(JNIEnv* env,
}
__attribute__ ((visibility("default")))
-void
-Java_org_libreoffice_android_Bootstrap_twiddle_1BGR_1to_1RGBA(JNIEnv* env,
- jobject clazz,
- jbyteArray source,
- jint offset,
- jint width,
- jint height,
- jobject destination)
-{
- jbyte *dst = (jbyte*) (*env)->GetDirectBufferAddress(env, destination);
- void *a = (*env)->GetPrimitiveArrayCritical(env, source, NULL);
- jbyte *src = ((jbyte *) a) + offset;
-
- jbyte *srcp;
- jbyte *dstp = dst;
- int step = ((((width * 3) - 1) / 4) + 1) * 4;
-
- int i, j;
-
- (void) clazz;
-
- if (height > 0) {
- srcp = src + step * (height - 1);
- step = -step;
- } else {
- srcp = src;
- }
-
- LOGI("twiddle: src=%p, srcp=%p, dstp=%p, step=%d", src, srcp, dstp, step);
-
- for (i = 0; i < height; i++) {
- for (j = 0; j < width; j++) {
- *dstp++ = srcp[j*3+2];
- *dstp++ = srcp[j*3+1];
- *dstp++ = srcp[j*3+0];
- *dstp++ = 0xFF;
- }
- srcp += step;
- }
-
- (*env)->ReleasePrimitiveArrayCritical(env, source, a, 0);
-}
-
-__attribute__ ((visibility("default")))
-void
-Java_org_libreoffice_android_Bootstrap_force_1full_1alpha_1array(JNIEnv* env,
- jobject clazz,
- jbyteArray array,
- jint offset,
- jint length)
-{
- void *a = (*env)->GetPrimitiveArrayCritical(env, array, NULL);
- jbyte *p = ((jbyte *) a) + offset;
-
- int i;
-
- (void) clazz;
-
- for (i = 0; i < length; i += 4) {
- p[3] = 0xFF;
- p += 4;
- }
-
- (*env)->ReleasePrimitiveArrayCritical(env, array, a, 0);
-}
-
-__attribute__ ((visibility("default")))
-void
-Java_org_libreoffice_android_Bootstrap_force_1full_1alpha_1bb(JNIEnv* env,
- jobject clazz,
- jobject buffer,
- jint offset,
- jint length)
-{
- jbyte *p = (*env)->GetDirectBufferAddress(env, buffer) + offset;
-
- int i;
-
- (void) clazz;
-
- for (i = 0; i < length; i += 4) {
- p[3] = 0xFF;
- p += 4;
- }
-}
-
-__attribute__ ((visibility("default")))
jlong
Java_org_libreoffice_android_Bootstrap_address_1of_1direct_1byte_1buffer(JNIEnv *env,
jobject bbuffer)