1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
|
/**
** Copyright 2007, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
#include "jni.h"
#include <nativehelper/JNIHelp.h>
#include "GraphicsJNI.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <dlfcn.h>
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <GLES3/gl3.h>
#include <ETC1/etc1.h>
#include <SkBitmap.h>
#include "core_jni_helpers.h"
#undef LOG_TAG
#define LOG_TAG "OpenGLUtil"
#include <utils/Log.h>
#include "utils/misc.h"
#include "poly.h"
namespace android {
static inline
void mx4transform(float x, float y, float z, float w, const float* pM, float* pDest) {
pDest[0] = pM[0 + 4 * 0] * x + pM[0 + 4 * 1] * y + pM[0 + 4 * 2] * z + pM[0 + 4 * 3] * w;
pDest[1] = pM[1 + 4 * 0] * x + pM[1 + 4 * 1] * y + pM[1 + 4 * 2] * z + pM[1 + 4 * 3] * w;
pDest[2] = pM[2 + 4 * 0] * x + pM[2 + 4 * 1] * y + pM[2 + 4 * 2] * z + pM[2 + 4 * 3] * w;
pDest[3] = pM[3 + 4 * 0] * x + pM[3 + 4 * 1] * y + pM[3 + 4 * 2] * z + pM[3 + 4 * 3] * w;
}
#if 0
static
void
print_poly(const char* label, Poly* pPoly) {
ALOGI("%s: %d verts", label, pPoly->n);
for(int i = 0; i < pPoly->n; i++) {
Poly_vert* pV = & pPoly->vert[i];
ALOGI("[%d] %g, %g, %g %g", i, pV->sx, pV->sy, pV->sz, pV->sw);
}
}
#endif
static
int visibilityTest(float* pWS, float* pPositions, int positionsLength,
unsigned short* pIndices, int indexCount) {
int result = POLY_CLIP_OUT;
if ( indexCount < 3 ) {
return POLY_CLIP_OUT;
}
// Find out how many vertices we need to transform
// We transform every vertex between the min and max indices, inclusive.
// This is OK for the data sets we expect to use with this function, but
// for other loads it might be better to use a more sophisticated vertex
// cache of some sort.
int minIndex = 65536;
int maxIndex = -1;
for(int i = 0; i < indexCount; i++) {
int index = pIndices[i];
if ( index < minIndex ) {
minIndex = index;
}
if ( index > maxIndex ) {
maxIndex = index;
}
}
if ( maxIndex * 3 > positionsLength) {
return -1;
}
int transformedIndexCount = maxIndex - minIndex + 1;
std::unique_ptr<float[]> holder{new float[transformedIndexCount * 4]};
float* pTransformed = holder.get();
if (pTransformed == 0 ) {
return -2;
}
// Transform the vertices
{
const float* pSrc = pPositions + 3 * minIndex;
float* pDst = pTransformed;
for (int i = 0; i < transformedIndexCount; i++, pSrc += 3, pDst += 4) {
mx4transform(pSrc[0], pSrc[1], pSrc[2], 1.0f, pWS, pDst);
}
}
// Clip the triangles
Poly poly;
float* pDest = & poly.vert[0].sx;
for (int i = 0; i < indexCount; i += 3) {
poly.n = 3;
memcpy(pDest , pTransformed + 4 * (pIndices[i ] - minIndex), 4 * sizeof(float));
memcpy(pDest + 4, pTransformed + 4 * (pIndices[i + 1] - minIndex), 4 * sizeof(float));
memcpy(pDest + 8, pTransformed + 4 * (pIndices[i + 2] - minIndex), 4 * sizeof(float));
result = poly_clip_to_frustum(&poly);
if ( result != POLY_CLIP_OUT) {
return result;
}
}
return result;
}
class ByteArrayGetter {
public:
static void* Get(JNIEnv* _env, jbyteArray array, jboolean* is_copy) {
return _env->GetByteArrayElements(array, is_copy);
}
};
class BooleanArrayGetter {
public:
static void* Get(JNIEnv* _env, jbooleanArray array, jboolean* is_copy) {
return _env->GetBooleanArrayElements(array, is_copy);
}
};
class CharArrayGetter {
public:
static void* Get(JNIEnv* _env, jcharArray array, jboolean* is_copy) {
return _env->GetCharArrayElements(array, is_copy);
}
};
class ShortArrayGetter {
public:
static void* Get(JNIEnv* _env, jshortArray array, jboolean* is_copy) {
return _env->GetShortArrayElements(array, is_copy);
}
};
class IntArrayGetter {
public:
static void* Get(JNIEnv* _env, jintArray array, jboolean* is_copy) {
return _env->GetIntArrayElements(array, is_copy);
}
};
class LongArrayGetter {
public:
static void* Get(JNIEnv* _env, jlongArray array, jboolean* is_copy) {
return _env->GetLongArrayElements(array, is_copy);
}
};
class FloatArrayGetter {
public:
static void* Get(JNIEnv* _env, jfloatArray array, jboolean* is_copy) {
return _env->GetFloatArrayElements(array, is_copy);
}
};
class DoubleArrayGetter {
public:
static void* Get(JNIEnv* _env, jdoubleArray array, jboolean* is_copy) {
return _env->GetDoubleArrayElements(array, is_copy);
}
};
class ByteArrayReleaser {
public:
static void Release(JNIEnv* _env, jbyteArray array, jbyte* data, jint mode) {
_env->ReleaseByteArrayElements(array, data, mode);
}
};
class BooleanArrayReleaser {
public:
static void Release(JNIEnv* _env, jbooleanArray array, jboolean* data, jint mode) {
_env->ReleaseBooleanArrayElements(array, data, mode);
}
};
class CharArrayReleaser {
public:
static void Release(JNIEnv* _env, jcharArray array, jchar* data, jint mode) {
_env->ReleaseCharArrayElements(array, data, mode);
}
};
class ShortArrayReleaser {
public:
static void Release(JNIEnv* _env, jshortArray array, jshort* data, jint mode) {
_env->ReleaseShortArrayElements(array, data, mode);
}
};
class IntArrayReleaser {
public:
static void Release(JNIEnv* _env, jintArray array, jint* data, jint mode) {
_env->ReleaseIntArrayElements(array, data, mode);
}
};
class LongArrayReleaser {
public:
static void Release(JNIEnv* _env, jlongArray array, jlong* data, jint mode) {
_env->ReleaseLongArrayElements(array, data, mode);
}
};
class FloatArrayReleaser {
public:
static void Release(JNIEnv* _env, jfloatArray array, jfloat* data, jint mode) {
_env->ReleaseFloatArrayElements(array, data, mode);
}
};
class DoubleArrayReleaser {
public:
static void Release(JNIEnv* _env, jdoubleArray array, jdouble* data, jint mode) {
_env->ReleaseDoubleArrayElements(array, data, mode);
}
};
template<class JArray, class T, class ArrayGetter, class ArrayReleaser>
class ArrayHelper {
public:
ArrayHelper(JNIEnv* env, JArray ref, jint offset, jint minSize) {
mEnv = env;
mRef = ref;
mOffset = offset;
mMinSize = minSize;
mBase = 0;
mReleaseParam = JNI_ABORT;
}
~ArrayHelper() {
if (mBase) {
ArrayReleaser::Release(mEnv, mRef, mBase, mReleaseParam);
}
}
// We seperate the bounds check from the initialization because we want to
// be able to bounds-check multiple arrays, and we can't throw an exception
// after we've called GetPrimitiveArrayCritical.
// Return true if the bounds check succeeded
// Else instruct the runtime to throw an exception
bool check() {
if ( ! mRef) {
doThrowIAE(mEnv, "array == null");
return false;
}
if ( mOffset < 0) {
doThrowIAE(mEnv, "offset < 0");
return false;
}
mLength = mEnv->GetArrayLength(mRef) - mOffset;
if (mLength < mMinSize ) {
doThrowIAE(mEnv, "length - offset < n");
return false;
}
return true;
}
// Bind the array.
void bind() {
mBase = (T*) ArrayGetter::Get(mEnv, mRef, (jboolean *) 0);
mData = mBase + mOffset;
}
void commitChanges() {
mReleaseParam = 0;
}
T* mData;
int mLength;
private:
T* mBase;
JNIEnv* mEnv;
JArray mRef;
jint mOffset;
jint mMinSize;
int mReleaseParam;
};
typedef ArrayHelper<jfloatArray, float, FloatArrayGetter, FloatArrayReleaser> FloatArrayHelper;
typedef ArrayHelper<jcharArray, unsigned short, CharArrayGetter, CharArrayReleaser> UnsignedShortArrayHelper;
typedef ArrayHelper<jintArray, int, IntArrayGetter, IntArrayReleaser> IntArrayHelper;
typedef ArrayHelper<jbyteArray, unsigned char, ByteArrayGetter, ByteArrayReleaser> ByteArrayHelper;
inline float distance2(float x, float y, float z) {
return x * x + y * y + z * z;
}
inline float distance(float x, float y, float z) {
return sqrtf(distance2(x, y, z));
}
static
void util_computeBoundingSphere(JNIEnv *env, jclass clazz,
jfloatArray positions_ref, jint positionsOffset, jint positionsCount,
jfloatArray sphere_ref, jint sphereOffset) {
FloatArrayHelper positions(env, positions_ref, positionsOffset, 0);
FloatArrayHelper sphere(env, sphere_ref, sphereOffset, 4);
bool checkOK = positions.check() && sphere.check();
if (! checkOK) {
return;
}
positions.bind();
sphere.bind();
if ( positionsCount < 1 ) {
doThrowIAE(env, "positionsCount < 1");
return;
}
const float* pSrc = positions.mData;
// find bounding box
float x0 = *pSrc++;
float x1 = x0;
float y0 = *pSrc++;
float y1 = y0;
float z0 = *pSrc++;
float z1 = z0;
for(int i = 1; i < positionsCount; i++) {
{
float x = *pSrc++;
if (x < x0) {
x0 = x;
}
else if (x > x1) {
x1 = x;
}
}
{
float y = *pSrc++;
if (y < y0) {
y0 = y;
}
else if (y > y1) {
y1 = y;
}
}
{
float z = *pSrc++;
if (z < z0) {
z0 = z;
}
else if (z > z1) {
z1 = z;
}
}
}
// Because we know our input meshes fit pretty well into bounding boxes,
// just take the diagonal of the box as defining our sphere.
float* pSphere = sphere.mData;
float dx = x1 - x0;
float dy = y1 - y0;
float dz = z1 - z0;
*pSphere++ = x0 + dx * 0.5f;
*pSphere++ = y0 + dy * 0.5f;
*pSphere++ = z0 + dz * 0.5f;
*pSphere++ = distance(dx, dy, dz) * 0.5f;
sphere.commitChanges();
}
static void normalizePlane(float* p) {
float rdist = 1.0f / distance(p[0], p[1], p[2]);
for(int i = 0; i < 4; i++) {
p[i] *= rdist;
}
}
static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) {
return x0 * x1 + y0 * y1 + z0 * z1;
}
static inline float signedDistance(const float* pPlane, float x, float y, float z) {
return dot3(pPlane[0], pPlane[1], pPlane[2], x, y, z) + pPlane[3];
}
// Return true if the sphere intersects or is inside the frustum
static bool sphereHitsFrustum(const float* pFrustum, const float* pSphere) {
float x = pSphere[0];
float y = pSphere[1];
float z = pSphere[2];
float negRadius = -pSphere[3];
for (int i = 0; i < 6; i++, pFrustum += 4) {
if (signedDistance(pFrustum, x, y, z) <= negRadius) {
return false;
}
}
return true;
}
static void computeFrustum(const float* m, float* f) {
float m3 = m[3];
float m7 = m[7];
float m11 = m[11];
float m15 = m[15];
// right
f[0] = m3 - m[0];
f[1] = m7 - m[4];
f[2] = m11 - m[8];
f[3] = m15 - m[12];
normalizePlane(f);
f+= 4;
// left
f[0] = m3 + m[0];
f[1] = m7 + m[4];
f[2] = m11 + m[8];
f[3] = m15 + m[12];
normalizePlane(f);
f+= 4;
// top
f[0] = m3 - m[1];
f[1] = m7 - m[5];
f[2] = m11 - m[9];
f[3] = m15 - m[13];
normalizePlane(f);
f+= 4;
// bottom
f[0] = m3 + m[1];
f[1] = m7 + m[5];
f[2] = m11 + m[9];
f[3] = m15 + m[13];
normalizePlane(f);
f+= 4;
// far
f[0] = m3 - m[2];
f[1] = m7 - m[6];
f[2] = m11 - m[10];
f[3] = m15 - m[14];
normalizePlane(f);
f+= 4;
// near
f[0] = m3 + m[2];
f[1] = m7 + m[6];
f[2] = m11 + m[10];
f[3] = m15 + m[14];
normalizePlane(f);
}
static
jint util_frustumCullSpheres(JNIEnv *env, jclass clazz,
jfloatArray mvp_ref, jint mvpOffset,
jfloatArray spheres_ref, jint spheresOffset, jint spheresCount,
jintArray results_ref, jint resultsOffset, jint resultsCapacity) {
float frustum[6*4];
int outputCount;
int* pResults;
float* pSphere;
FloatArrayHelper mvp(env, mvp_ref, mvpOffset, 16);
FloatArrayHelper spheres(env, spheres_ref, spheresOffset, spheresCount * 4);
IntArrayHelper results(env, results_ref, resultsOffset, resultsCapacity);
bool initializedOK = mvp.check() && spheres.check() && results.check();
if (! initializedOK) {
return -1;
}
mvp.bind();
spheres.bind();
results.bind();
computeFrustum(mvp.mData, frustum);
// Cull the spheres
pSphere = spheres.mData;
pResults = results.mData;
outputCount = 0;
for(int i = 0; i < spheresCount; i++, pSphere += 4) {
if (sphereHitsFrustum(frustum, pSphere)) {
if (outputCount < resultsCapacity) {
*pResults++ = i;
}
outputCount++;
}
}
results.commitChanges();
return outputCount;
}
/*
public native int visibilityTest(float[] ws, int wsOffset,
float[] positions, int positionsOffset,
char[] indices, int indicesOffset, int indexCount);
*/
static
jint util_visibilityTest(JNIEnv *env, jclass clazz,
jfloatArray ws_ref, jint wsOffset,
jfloatArray positions_ref, jint positionsOffset,
jcharArray indices_ref, jint indicesOffset, jint indexCount) {
FloatArrayHelper ws(env, ws_ref, wsOffset, 16);
FloatArrayHelper positions(env, positions_ref, positionsOffset, 0);
UnsignedShortArrayHelper indices(env, indices_ref, indicesOffset, 0);
bool checkOK = ws.check() && positions.check() && indices.check();
if (! checkOK) {
// Return value will be ignored, because an exception has been thrown.
return -1;
}
if (indices.mLength < indexCount) {
doThrowIAE(env, "length < offset + indexCount");
return -1;
}
ws.bind();
positions.bind();
indices.bind();
return visibilityTest(ws.mData,
positions.mData, positions.mLength,
indices.mData, indexCount);
}
#define I(_i, _j) ((_j)+ 4*(_i))
static
void multiplyMM(float* r, const float* lhs, const float* rhs)
{
for (int i=0 ; i<4 ; i++) {
const float rhs_i0 = rhs[ I(i,0) ];
float ri0 = lhs[ I(0,0) ] * rhs_i0;
float ri1 = lhs[ I(0,1) ] * rhs_i0;
float ri2 = lhs[ I(0,2) ] * rhs_i0;
float ri3 = lhs[ I(0,3) ] * rhs_i0;
for (int j=1 ; j<4 ; j++) {
const float rhs_ij = rhs[ I(i,j) ];
ri0 += lhs[ I(j,0) ] * rhs_ij;
ri1 += lhs[ I(j,1) ] * rhs_ij;
ri2 += lhs[ I(j,2) ] * rhs_ij;
ri3 += lhs[ I(j,3) ] * rhs_ij;
}
r[ I(i,0) ] = ri0;
r[ I(i,1) ] = ri1;
r[ I(i,2) ] = ri2;
r[ I(i,3) ] = ri3;
}
}
static
void util_multiplyMM(JNIEnv *env, jclass clazz,
jfloatArray result_ref, jint resultOffset,
jfloatArray lhs_ref, jint lhsOffset,
jfloatArray rhs_ref, jint rhsOffset) {
FloatArrayHelper resultMat(env, result_ref, resultOffset, 16);
FloatArrayHelper lhs(env, lhs_ref, lhsOffset, 16);
FloatArrayHelper rhs(env, rhs_ref, rhsOffset, 16);
bool checkOK = resultMat.check() && lhs.check() && rhs.check();
if ( !checkOK ) {
return;
}
resultMat.bind();
lhs.bind();
rhs.bind();
multiplyMM(resultMat.mData, lhs.mData, rhs.mData);
resultMat.commitChanges();
}
static
void multiplyMV(float* r, const float* lhs, const float* rhs)
{
mx4transform(rhs[0], rhs[1], rhs[2], rhs[3], lhs, r);
}
static
void util_multiplyMV(JNIEnv *env, jclass clazz,
jfloatArray result_ref, jint resultOffset,
jfloatArray lhs_ref, jint lhsOffset,
jfloatArray rhs_ref, jint rhsOffset) {
FloatArrayHelper resultV(env, result_ref, resultOffset, 4);
FloatArrayHelper lhs(env, lhs_ref, lhsOffset, 16);
FloatArrayHelper rhs(env, rhs_ref, rhsOffset, 4);
bool checkOK = resultV.check() && lhs.check() && rhs.check();
if ( !checkOK ) {
return;
}
resultV.bind();
lhs.bind();
rhs.bind();
multiplyMV(resultV.mData, lhs.mData, rhs.mData);
resultV.commitChanges();
}
// ---------------------------------------------------------------------------
// The internal format is no longer the same as pixel format, per Table 2 in
// https://www.khronos.org/registry/OpenGL-Refpages/es3.1/html/glTexImage2D.xhtml
static int checkInternalFormat(SkColorType colorType, int internalformat,
int type)
{
switch(colorType) {
case kN32_SkColorType:
return (type == GL_UNSIGNED_BYTE &&
internalformat == GL_RGBA) ||
(type == GL_UNSIGNED_BYTE &&
internalformat == GL_SRGB8_ALPHA8) ? 0 : -1;
case kAlpha_8_SkColorType:
return (type == GL_UNSIGNED_BYTE &&
internalformat == GL_ALPHA) ? 0 : -1;
case kARGB_4444_SkColorType:
return (type == GL_UNSIGNED_SHORT_4_4_4_4 &&
internalformat == GL_RGBA) ? 0 : -1;
case kRGB_565_SkColorType:
return (type == GL_UNSIGNED_SHORT_5_6_5 &&
internalformat == GL_RGB) ? 0 : -1;
case kRGBA_F16_SkColorType:
return (type == GL_HALF_FLOAT &&
internalformat == GL_RGBA16F) ? 0 : -1;
default:
break;
}
return -1;
}
// The internal format is no longer the same as pixel format, per Table 2 in
// https://www.khronos.org/registry/OpenGL-Refpages/es3.1/html/glTexImage2D.xhtml
static int getPixelFormatFromInternalFormat(uint32_t internalFormat) {
switch (internalFormat) {
// For sized internal format.
case GL_RGBA16F:
case GL_SRGB8_ALPHA8:
return GL_RGBA;
// Base internal formats and pixel formats are still the same, see Table 1 in
// https://www.khronos.org/registry/OpenGL-Refpages/es3.1/html/glTexImage2D.xhtml
default:
return internalFormat;
}
}
static int getInternalFormat(SkColorType colorType)
{
switch(colorType) {
case kAlpha_8_SkColorType:
return GL_ALPHA;
case kARGB_4444_SkColorType:
return GL_RGBA;
case kN32_SkColorType:
return GL_RGBA;
case kRGB_565_SkColorType:
return GL_RGB;
case kRGBA_F16_SkColorType:
return GL_RGBA16F;
default:
return -1;
}
}
static int getType(SkColorType colorType)
{
switch(colorType) {
case kAlpha_8_SkColorType:
return GL_UNSIGNED_BYTE;
case kARGB_4444_SkColorType:
return GL_UNSIGNED_SHORT_4_4_4_4;
case kN32_SkColorType:
return GL_UNSIGNED_BYTE;
case kRGB_565_SkColorType:
return GL_UNSIGNED_SHORT_5_6_5;
case kRGBA_F16_SkColorType:
return GL_HALF_FLOAT;
default:
return -1;
}
}
static jint util_getInternalFormat(JNIEnv *env, jclass clazz,
jlong bitmapPtr)
{
SkBitmap nativeBitmap;
bitmap::toBitmap(bitmapPtr).getSkBitmap(&nativeBitmap);
return getInternalFormat(nativeBitmap.colorType());
}
static jint util_getType(JNIEnv *env, jclass clazz,
jlong bitmapPtr)
{
SkBitmap nativeBitmap;
bitmap::toBitmap(bitmapPtr).getSkBitmap(&nativeBitmap);
return getType(nativeBitmap.colorType());
}
static jint util_texImage2D(JNIEnv *env, jclass clazz,
jint target, jint level, jint internalformat,
jlong bitmapPtr, jint type, jint border)
{
SkBitmap bitmap;
bitmap::toBitmap(bitmapPtr).getSkBitmap(&bitmap);
SkColorType colorType = bitmap.colorType();
if (internalformat < 0) {
internalformat = getInternalFormat(colorType);
}
if (type < 0) {
type = getType(colorType);
}
int err = checkInternalFormat(colorType, internalformat, type);
if (err)
return err;
const int w = bitmap.width();
const int h = bitmap.height();
const void* p = bitmap.getPixels();
if (internalformat == GL_PALETTE8_RGBA8_OES) {
err = -1;
} else {
glTexImage2D(target, level, internalformat, w, h, border,
getPixelFormatFromInternalFormat(internalformat), type, p);
}
return err;
}
static jint util_texSubImage2D(JNIEnv *env, jclass clazz,
jint target, jint level, jint xoffset, jint yoffset,
jlong bitmapPtr, jint format, jint type)
{
SkBitmap bitmap;
bitmap::toBitmap(bitmapPtr).getSkBitmap(&bitmap);
SkColorType colorType = bitmap.colorType();
int internalFormat = getInternalFormat(colorType);
if (format < 0) {
format = getPixelFormatFromInternalFormat(internalFormat);
if (format == GL_PALETTE8_RGBA8_OES)
return -1; // glCompressedTexSubImage2D() not supported
}
int err = checkInternalFormat(colorType, internalFormat, type);
if (err)
return err;
const int w = bitmap.width();
const int h = bitmap.height();
const void* p = bitmap.getPixels();
glTexSubImage2D(target, level, xoffset, yoffset, w, h, format, type, p);
return 0;
}
/*
* ETC1 methods.
*/
static void *
getPointer(JNIEnv *_env, jobject buffer, jint *remaining)
{
jint position;
jint limit;
jint elementSizeShift;
jlong pointer = jniGetNioBufferFields(_env, buffer, &position, &limit, &elementSizeShift);
if (pointer != 0L) {
pointer += position << elementSizeShift;
}
*remaining = (limit - position) << elementSizeShift;
return reinterpret_cast<void*>(pointer);
}
class BufferHelper {
public:
BufferHelper(JNIEnv *env, jobject buffer) {
mEnv = env;
mBuffer = buffer;
mData = NULL;
mRemaining = 0;
}
bool checkPointer(const char* errorMessage) {
if (mBuffer) {
mData = getPointer(mEnv, mBuffer, &mRemaining);
if (mData == NULL) {
doThrowIAE(mEnv, errorMessage);
}
return mData != NULL;
} else {
doThrowIAE(mEnv, errorMessage);
return false;
}
}
inline void* getData() {
return mData;
}
inline jint remaining() {
return mRemaining;
}
private:
JNIEnv* mEnv;
jobject mBuffer;
void* mData;
jint mRemaining;
};
/**
* Encode a block of pixels.
*
* @param in a pointer to a ETC1_DECODED_BLOCK_SIZE array of bytes that represent a
* 4 x 4 square of 3-byte pixels in form R, G, B. Byte (3 * (x + 4 * y) is the R
* value of pixel (x, y).
*
* @param validPixelMask is a 16-bit mask where bit (1 << (x + y * 4)) indicates whether
* the corresponding (x,y) pixel is valid. Invalid pixel color values are ignored when compressing.
*
* @param out an ETC1 compressed version of the data.
*
*/
static void etc1_encodeBlock(JNIEnv *env, jclass clazz,
jobject in, jint validPixelMask, jobject out) {
if (validPixelMask < 0 || validPixelMask > 15) {
doThrowIAE(env, "validPixelMask");
return;
}
BufferHelper inB(env, in);
BufferHelper outB(env, out);
if (inB.checkPointer("in") && outB.checkPointer("out")) {
if (inB.remaining() < ETC1_DECODED_BLOCK_SIZE) {
doThrowIAE(env, "in's remaining data < DECODED_BLOCK_SIZE");
} else if (outB.remaining() < ETC1_ENCODED_BLOCK_SIZE) {
doThrowIAE(env, "out's remaining data < ENCODED_BLOCK_SIZE");
} else {
etc1_encode_block((etc1_byte*) inB.getData(), validPixelMask,
(etc1_byte*) outB.getData());
}
}
}
/**
* Decode a block of pixels.
*
* @param in an ETC1 compressed version of the data.
*
* @param out a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a
* 4 x 4 square of 3-byte pixels in form R, G, B. Byte (3 * (x + 4 * y) is the R
* value of pixel (x, y).
*/
static void etc1_decodeBlock(JNIEnv *env, jclass clazz,
jobject in, jobject out){
BufferHelper inB(env, in);
BufferHelper outB(env, out);
if (inB.checkPointer("in") && outB.checkPointer("out")) {
if (inB.remaining() < ETC1_ENCODED_BLOCK_SIZE) {
doThrowIAE(env, "in's remaining data < ENCODED_BLOCK_SIZE");
} else if (outB.remaining() < ETC1_DECODED_BLOCK_SIZE) {
doThrowIAE(env, "out's remaining data < DECODED_BLOCK_SIZE");
} else {
etc1_decode_block((etc1_byte*) inB.getData(),
(etc1_byte*) outB.getData());
}
}
}
/**
* Return the size of the encoded image data (does not include size of PKM header).
*/
static jint etc1_getEncodedDataSize(JNIEnv *env, jclass clazz,
jint width, jint height) {
return etc1_get_encoded_data_size(width, height);
}
/**
* Encode an entire image.
* @param in pointer to the image data. Formatted such that
* pixel (x,y) is at pIn + pixelSize * x + stride * y + redOffset;
* @param out pointer to encoded data. Must be large enough to store entire encoded image.
*/
static void etc1_encodeImage(JNIEnv *env, jclass clazz,
jobject in, jint width, jint height,
jint pixelSize, jint stride, jobject out) {
if (pixelSize < 2 || pixelSize > 3) {
doThrowIAE(env, "pixelSize must be 2 or 3");
return;
}
BufferHelper inB(env, in);
BufferHelper outB(env, out);
if (inB.checkPointer("in") && outB.checkPointer("out")) {
jint imageSize = stride * height;
jint encodedImageSize = etc1_get_encoded_data_size(width, height);
if (inB.remaining() < imageSize) {
doThrowIAE(env, "in's remaining data < image size");
} else if (outB.remaining() < encodedImageSize) {
doThrowIAE(env, "out's remaining data < encoded image size");
} else {
etc1_encode_image((etc1_byte*) inB.getData(), width, height, pixelSize, stride,
(etc1_byte*) outB.getData());
}
}
}
/**
* Decode an entire image.
* @param in the encoded data.
* @param out pointer to the image data. Will be written such that
* pixel (x,y) is at pIn + pixelSize * x + stride * y. Must be
* large enough to store entire image.
*/
static void etc1_decodeImage(JNIEnv *env, jclass clazz,
jobject in, jobject out,
jint width, jint height,
jint pixelSize, jint stride) {
if (pixelSize < 2 || pixelSize > 3) {
doThrowIAE(env, "pixelSize must be 2 or 3");
return;
}
BufferHelper inB(env, in);
BufferHelper outB(env, out);
if (inB.checkPointer("in") && outB.checkPointer("out")) {
jint imageSize = stride * height;
jint encodedImageSize = etc1_get_encoded_data_size(width, height);
if (inB.remaining() < encodedImageSize) {
doThrowIAE(env, "in's remaining data < encoded image size");
} else if (outB.remaining() < imageSize) {
doThrowIAE(env, "out's remaining data < image size");
} else {
etc1_decode_image((etc1_byte*) inB.getData(), (etc1_byte*) outB.getData(),
width, height, pixelSize, stride);
}
}
}
/**
* Format a PKM header
*/
static void etc1_formatHeader(JNIEnv *env, jclass clazz,
jobject header, jint width, jint height) {
BufferHelper headerB(env, header);
if (headerB.checkPointer("header") ){
if (headerB.remaining() < ETC_PKM_HEADER_SIZE) {
doThrowIAE(env, "header's remaining data < ETC_PKM_HEADER_SIZE");
} else {
etc1_pkm_format_header((etc1_byte*) headerB.getData(), width, height);
}
}
}
/**
* Check if a PKM header is correctly formatted.
*/
static jboolean etc1_isValid(JNIEnv *env, jclass clazz,
jobject header) {
jboolean result = false;
BufferHelper headerB(env, header);
if (headerB.checkPointer("header") ){
if (headerB.remaining() < ETC_PKM_HEADER_SIZE) {
doThrowIAE(env, "header's remaining data < ETC_PKM_HEADER_SIZE");
} else {
result = etc1_pkm_is_valid((etc1_byte*) headerB.getData());
}
}
return result ? JNI_TRUE : JNI_FALSE;
}
/**
* Read the image width from a PKM header
*/
static jint etc1_getWidth(JNIEnv *env, jclass clazz,
jobject header) {
jint result = 0;
BufferHelper headerB(env, header);
if (headerB.checkPointer("header") ){
if (headerB.remaining() < ETC_PKM_HEADER_SIZE) {
doThrowIAE(env, "header's remaining data < ETC_PKM_HEADER_SIZE");
} else {
result = etc1_pkm_get_width((etc1_byte*) headerB.getData());
}
}
return result;
}
/**
* Read the image height from a PKM header
*/
static jint etc1_getHeight(JNIEnv *env, jclass clazz,
jobject header) {
jint result = 0;
BufferHelper headerB(env, header);
if (headerB.checkPointer("header") ){
if (headerB.remaining() < ETC_PKM_HEADER_SIZE) {
doThrowIAE(env, "header's remaining data < ETC_PKM_HEADER_SIZE");
} else {
result = etc1_pkm_get_height((etc1_byte*) headerB.getData());
}
}
return result;
}
/*
* JNI registration
*/
static const JNINativeMethod gMatrixMethods[] = {
{ "multiplyMM", "([FI[FI[FI)V", (void*)util_multiplyMM },
{ "multiplyMV", "([FI[FI[FI)V", (void*)util_multiplyMV },
};
static const JNINativeMethod gVisibilityMethods[] = {
{ "computeBoundingSphere", "([FII[FI)V", (void*)util_computeBoundingSphere },
{ "frustumCullSpheres", "([FI[FII[III)I", (void*)util_frustumCullSpheres },
{ "visibilityTest", "([FI[FI[CII)I", (void*)util_visibilityTest },
};
static const JNINativeMethod gUtilsMethods[] = {
{ "native_getInternalFormat", "(J)I", (void*) util_getInternalFormat },
{ "native_getType", "(J)I", (void*) util_getType },
{ "native_texImage2D", "(IIIJII)I", (void*)util_texImage2D },
{ "native_texSubImage2D", "(IIIIJII)I", (void*)util_texSubImage2D },
};
static const JNINativeMethod gEtc1Methods[] = {
{ "encodeBlock", "(Ljava/nio/Buffer;ILjava/nio/Buffer;)V", (void*) etc1_encodeBlock },
{ "decodeBlock", "(Ljava/nio/Buffer;Ljava/nio/Buffer;)V", (void*) etc1_decodeBlock },
{ "getEncodedDataSize", "(II)I", (void*) etc1_getEncodedDataSize },
{ "encodeImage", "(Ljava/nio/Buffer;IIIILjava/nio/Buffer;)V", (void*) etc1_encodeImage },
{ "decodeImage", "(Ljava/nio/Buffer;Ljava/nio/Buffer;IIII)V", (void*) etc1_decodeImage },
{ "formatHeader", "(Ljava/nio/Buffer;II)V", (void*) etc1_formatHeader },
{ "isValid", "(Ljava/nio/Buffer;)Z", (void*) etc1_isValid },
{ "getWidth", "(Ljava/nio/Buffer;)I", (void*) etc1_getWidth },
{ "getHeight", "(Ljava/nio/Buffer;)I", (void*) etc1_getHeight },
};
typedef struct _ClassRegistrationInfo {
const char* classPath;
const JNINativeMethod* methods;
size_t methodCount;
} ClassRegistrationInfo;
static const ClassRegistrationInfo gClasses[] = {
{"android/opengl/Matrix", gMatrixMethods, NELEM(gMatrixMethods)},
{"android/opengl/Visibility", gVisibilityMethods, NELEM(gVisibilityMethods)},
{"android/opengl/GLUtils", gUtilsMethods, NELEM(gUtilsMethods)},
{"android/opengl/ETC1", gEtc1Methods, NELEM(gEtc1Methods)},
};
int register_android_opengl_classes(JNIEnv* env)
{
int result = 0;
for (int i = 0; i < NELEM(gClasses); i++) {
const ClassRegistrationInfo* cri = &gClasses[i];
result = RegisterMethodsOrDie(env, cri->classPath, cri->methods, cri->methodCount);
}
return result;
}
} // namespace android
|