2009-05-22 14:03:28 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006 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.
|
|
|
|
*/
|
|
|
|
|
2009-06-23 12:22:47 -07:00
|
|
|
#define LOG_TAG "libRS_jni"
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <utils/misc.h>
|
|
|
|
|
2010-02-09 17:46:37 -08:00
|
|
|
#include <surfaceflinger/Surface.h>
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-06-01 17:45:53 -07:00
|
|
|
#include <core/SkBitmap.h>
|
2009-08-31 14:06:43 -07:00
|
|
|
#include <core/SkPixelRef.h>
|
|
|
|
#include <core/SkStream.h>
|
|
|
|
#include <core/SkTemplates.h>
|
|
|
|
#include <images/SkImageDecoder.h>
|
2009-06-01 17:45:53 -07:00
|
|
|
|
2009-08-31 14:06:43 -07:00
|
|
|
#include <utils/Asset.h>
|
|
|
|
#include <utils/ResourceTypes.h>
|
2009-06-23 12:22:47 -07:00
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
#include "jni.h"
|
|
|
|
#include "JNIHelp.h"
|
|
|
|
#include "android_runtime/AndroidRuntime.h"
|
2010-08-19 18:56:00 -07:00
|
|
|
#include "android_runtime/android_view_Surface.h"
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-07-23 15:19:03 -07:00
|
|
|
#include <RenderScript.h>
|
|
|
|
#include <RenderScriptEnv.h>
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
//#define LOG_API LOGE
|
|
|
|
#define LOG_API(...)
|
|
|
|
|
|
|
|
using namespace android;
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void doThrow(JNIEnv* env, const char* exc, const char* msg = NULL)
|
|
|
|
{
|
|
|
|
jclass npeClazz = env->FindClass(exc);
|
|
|
|
env->ThrowNew(npeClazz, msg);
|
|
|
|
}
|
|
|
|
|
2009-06-01 17:45:53 -07:00
|
|
|
static jfieldID gContextId = 0;
|
|
|
|
static jfieldID gNativeBitmapID = 0;
|
2009-08-12 17:54:11 -07:00
|
|
|
static jfieldID gTypeNativeCache = 0;
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-09-04 14:42:41 -07:00
|
|
|
static RsElement g_A_8 = NULL;
|
|
|
|
static RsElement g_RGBA_4444 = NULL;
|
|
|
|
static RsElement g_RGBA_8888 = NULL;
|
|
|
|
static RsElement g_RGB_565 = NULL;
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void _nInit(JNIEnv *_env, jclass _this)
|
|
|
|
{
|
|
|
|
gContextId = _env->GetFieldID(_this, "mContext", "I");
|
2009-06-01 17:45:53 -07:00
|
|
|
|
|
|
|
jclass bitmapClass = _env->FindClass("android/graphics/Bitmap");
|
|
|
|
gNativeBitmapID = _env->GetFieldID(bitmapClass, "mNativeBitmap", "I");
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-09-04 14:42:41 -07:00
|
|
|
static void nInitElements(JNIEnv *_env, jobject _this, jint a8, jint rgba4444, jint rgba8888, jint rgb565)
|
|
|
|
{
|
|
|
|
g_A_8 = reinterpret_cast<RsElement>(a8);
|
|
|
|
g_RGBA_4444 = reinterpret_cast<RsElement>(rgba4444);
|
|
|
|
g_RGBA_8888 = reinterpret_cast<RsElement>(rgba8888);
|
|
|
|
g_RGB_565 = reinterpret_cast<RsElement>(rgb565);
|
|
|
|
}
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-06-10 15:04:38 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2010-06-15 12:15:57 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextFinish(JNIEnv *_env, jobject _this, RsContext con)
|
2010-06-15 12:15:57 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextFinish, con(%p)", con);
|
|
|
|
rsContextFinish(con);
|
|
|
|
}
|
|
|
|
|
2009-06-10 15:04:38 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAssignName(JNIEnv *_env, jobject _this, RsContext con, jint obj, jbyteArray str)
|
2009-06-10 15:04:38 -07:00
|
|
|
{
|
2009-08-27 20:23:34 -07:00
|
|
|
LOG_API("nAssignName, con(%p), obj(%p)", con, (void *)obj);
|
2009-06-10 15:04:38 -07:00
|
|
|
jint len = _env->GetArrayLength(str);
|
|
|
|
jbyte * cptr = (jbyte *) _env->GetPrimitiveArrayCritical(str, 0);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAssignName(con, (void *)obj, (const char *)cptr, len);
|
2009-06-10 15:04:38 -07:00
|
|
|
_env->ReleasePrimitiveArrayCritical(str, cptr, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
2010-08-04 14:45:48 -07:00
|
|
|
static jstring
|
2010-08-17 16:25:41 -07:00
|
|
|
nGetName(JNIEnv *_env, jobject _this, RsContext con, jint obj)
|
2010-08-04 14:45:48 -07:00
|
|
|
{
|
|
|
|
LOG_API("nGetName, con(%p), obj(%p)", con, (void *)obj);
|
|
|
|
const char *name = NULL;
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaGetName(con, (void *)obj, &name);
|
|
|
|
if(name == NULL || strlen(name) == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-08-04 14:45:48 -07:00
|
|
|
return _env->NewStringUTF(name);
|
|
|
|
}
|
|
|
|
|
2009-08-18 14:14:24 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nObjDestroy(JNIEnv *_env, jobject _this, RsContext con, jint obj)
|
2009-08-18 14:14:24 -07:00
|
|
|
{
|
|
|
|
LOG_API("nObjDestroy, con(%p) obj(%p)", con, (void *)obj);
|
2010-10-14 17:57:30 -07:00
|
|
|
rsObjDestroy(con, (void *)obj);
|
2009-08-18 14:14:24 -07:00
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nDeviceCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
LOG_API("nDeviceCreate");
|
|
|
|
return (jint)rsDeviceCreate();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nDeviceDestroy(JNIEnv *_env, jobject _this, jint dev)
|
|
|
|
{
|
|
|
|
LOG_API("nDeviceDestroy");
|
|
|
|
return rsDeviceDestroy((RsDevice)dev);
|
|
|
|
}
|
|
|
|
|
2009-09-23 13:57:02 -07:00
|
|
|
static void
|
|
|
|
nDeviceSetConfig(JNIEnv *_env, jobject _this, jint dev, jint p, jint value)
|
|
|
|
{
|
|
|
|
LOG_API("nDeviceSetConfig dev(%p), param(%i), value(%i)", (void *)dev, p, value);
|
|
|
|
return rsDeviceSetConfig((RsDevice)dev, (RsDeviceParam)p, value);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static jint
|
2010-02-09 16:05:07 -08:00
|
|
|
nContextCreate(JNIEnv *_env, jobject _this, jint dev, jint ver)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextCreate");
|
2010-02-09 16:05:07 -08:00
|
|
|
return (jint)rsContextCreate((RsDevice)dev, ver);
|
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
2010-10-13 15:31:10 -07:00
|
|
|
nContextCreateGL(JNIEnv *_env, jobject _this, jint dev, jint ver,
|
|
|
|
int colorMin, int colorPref,
|
|
|
|
int alphaMin, int alphaPref,
|
|
|
|
int depthMin, int depthPref,
|
|
|
|
int stencilMin, int stencilPref,
|
|
|
|
int samplesMin, int samplesPref, float samplesQ)
|
|
|
|
{
|
|
|
|
RsSurfaceConfig sc;
|
|
|
|
sc.alphaMin = alphaMin;
|
|
|
|
sc.alphaPref = alphaPref;
|
|
|
|
sc.colorMin = colorMin;
|
|
|
|
sc.colorPref = colorPref;
|
|
|
|
sc.depthMin = depthMin;
|
|
|
|
sc.depthPref = depthPref;
|
|
|
|
sc.samplesMin = samplesMin;
|
|
|
|
sc.samplesPref = samplesPref;
|
|
|
|
sc.samplesQ = samplesQ;
|
|
|
|
|
2010-02-09 16:05:07 -08:00
|
|
|
LOG_API("nContextCreateGL");
|
2010-10-13 15:31:10 -07:00
|
|
|
return (jint)rsContextCreateGL((RsDevice)dev, ver, sc);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-11-15 12:14:26 -08:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextSetPriority(JNIEnv *_env, jobject _this, RsContext con, jint p)
|
2009-11-15 12:14:26 -08:00
|
|
|
{
|
|
|
|
LOG_API("ContextSetPriority, con(%p), priority(%i)", con, p);
|
|
|
|
rsContextSetPriority(con, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-11-03 13:58:36 -08:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextSetSurface(JNIEnv *_env, jobject _this, RsContext con, jint width, jint height, jobject wnd)
|
2009-11-03 13:58:36 -08:00
|
|
|
{
|
2009-11-12 15:10:25 -08:00
|
|
|
LOG_API("nContextSetSurface, con(%p), width(%i), height(%i), surface(%p)", con, width, height, (Surface *)wnd);
|
2009-11-03 13:58:36 -08:00
|
|
|
|
|
|
|
Surface * window = NULL;
|
|
|
|
if (wnd == NULL) {
|
|
|
|
|
|
|
|
} else {
|
2010-08-19 18:56:00 -07:00
|
|
|
window = (Surface*) android_Surface_getNativeWindow(_env, wnd).get();
|
2009-11-03 13:58:36 -08:00
|
|
|
}
|
|
|
|
|
2009-11-12 15:10:25 -08:00
|
|
|
rsContextSetSurface(con, width, height, window);
|
2009-11-03 13:58:36 -08:00
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextDestroy(JNIEnv *_env, jobject _this, RsContext con)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-08-17 16:25:41 -07:00
|
|
|
LOG_API("nContextDestroy, con(%p)", con);
|
|
|
|
rsContextDestroy(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-11-17 17:26:46 -08:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextDump(JNIEnv *_env, jobject _this, RsContext con, jint bits)
|
2009-11-17 17:26:46 -08:00
|
|
|
{
|
|
|
|
LOG_API("nContextDump, con(%p) bits(%i)", (RsContext)con, bits);
|
|
|
|
rsContextDump((RsContext)con, bits);
|
|
|
|
}
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-09-24 17:38:20 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextPause(JNIEnv *_env, jobject _this, RsContext con)
|
2009-09-24 17:38:20 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextPause, con(%p)", con);
|
|
|
|
rsContextPause(con);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextResume(JNIEnv *_env, jobject _this, RsContext con)
|
2009-09-24 17:38:20 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextResume, con(%p)", con);
|
|
|
|
rsContextResume(con);
|
|
|
|
}
|
|
|
|
|
2010-11-08 17:06:46 -08:00
|
|
|
|
|
|
|
static jstring
|
|
|
|
nContextGetErrorMessage(JNIEnv *_env, jobject _this, RsContext con)
|
|
|
|
{
|
|
|
|
LOG_API("nContextGetErrorMessage, con(%p)", con);
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
size_t receiveLen;
|
|
|
|
uint32_t subID;
|
|
|
|
int id = rsContextGetMessage(con, buf, &receiveLen, &subID, sizeof(buf), true);
|
|
|
|
if (!id && receiveLen) {
|
|
|
|
LOGV("message receive buffer too small. %i", receiveLen);
|
|
|
|
}
|
|
|
|
return _env->NewStringUTF(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nContextGetUserMessage(JNIEnv *_env, jobject _this, RsContext con, jintArray data)
|
2009-10-06 13:58:47 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nContextGetMessage, con(%p), len(%i)", con, len);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
|
|
|
size_t receiveLen;
|
2010-11-08 17:06:46 -08:00
|
|
|
uint32_t subID;
|
|
|
|
int id = rsContextGetMessage(con, ptr, &receiveLen, &subID, len * 4, true);
|
2009-10-06 13:58:47 -07:00
|
|
|
if (!id && receiveLen) {
|
2010-08-25 14:31:48 -07:00
|
|
|
LOGV("message receive buffer too small. %i", receiveLen);
|
2009-10-06 13:58:47 -07:00
|
|
|
}
|
|
|
|
_env->ReleaseIntArrayElements(data, ptr, 0);
|
2010-11-08 17:06:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nContextPeekMessage(JNIEnv *_env, jobject _this, RsContext con, jintArray auxData, jboolean wait)
|
|
|
|
{
|
|
|
|
LOG_API("nContextPeekMessage, con(%p)", con);
|
|
|
|
jint *auxDataPtr = _env->GetIntArrayElements(auxData, NULL);
|
|
|
|
size_t receiveLen;
|
|
|
|
uint32_t subID;
|
|
|
|
int id = rsContextPeekMessage(con, &receiveLen, &subID, wait);
|
|
|
|
auxDataPtr[0] = (jint)subID;
|
|
|
|
auxDataPtr[1] = (jint)receiveLen;
|
|
|
|
_env->ReleaseIntArrayElements(auxData, auxDataPtr, 0);
|
2009-10-06 13:58:47 -07:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2010-08-17 16:25:41 -07:00
|
|
|
static void nContextInitToClient(JNIEnv *_env, jobject _this, RsContext con)
|
2009-10-06 13:58:47 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextInitToClient, con(%p)", con);
|
|
|
|
rsContextInitToClient(con);
|
|
|
|
}
|
|
|
|
|
2010-08-17 16:25:41 -07:00
|
|
|
static void nContextDeinitToClient(JNIEnv *_env, jobject _this, RsContext con)
|
2009-10-06 13:58:47 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextDeinitToClient, con(%p)", con);
|
|
|
|
rsContextDeinitToClient(con);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-23 14:35:29 -08:00
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nElementCreate(JNIEnv *_env, jobject _this, RsContext con, jint type, jint kind, jboolean norm, jint size)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2009-12-23 14:35:29 -08:00
|
|
|
LOG_API("nElementCreate, con(%p), type(%i), kind(%i), norm(%i), size(%i)", con, type, kind, norm, size);
|
|
|
|
return (jint)rsElementCreate(con, (RsDataType)type, (RsDataKind)kind, norm, size);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-12-23 14:35:29 -08:00
|
|
|
static jint
|
2010-09-02 17:35:23 -07:00
|
|
|
nElementCreate2(JNIEnv *_env, jobject _this, RsContext con, jintArray _ids, jobjectArray _names, jintArray _arraySizes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2009-12-23 14:35:29 -08:00
|
|
|
int fieldCount = _env->GetArrayLength(_ids);
|
2010-02-09 16:05:07 -08:00
|
|
|
LOG_API("nElementCreate2, con(%p)", con);
|
2009-12-23 14:35:29 -08:00
|
|
|
|
|
|
|
jint *ids = _env->GetIntArrayElements(_ids, NULL);
|
2010-09-02 17:35:23 -07:00
|
|
|
jint *arraySizes = _env->GetIntArrayElements(_arraySizes, NULL);
|
2009-12-23 14:35:29 -08:00
|
|
|
const char ** nameArray = (const char **)calloc(fieldCount, sizeof(char *));
|
|
|
|
size_t* sizeArray = (size_t*)calloc(fieldCount, sizeof(size_t));
|
|
|
|
|
|
|
|
for (int ct=0; ct < fieldCount; ct++) {
|
|
|
|
jstring s = (jstring)_env->GetObjectArrayElement(_names, ct);
|
|
|
|
nameArray[ct] = _env->GetStringUTFChars(s, NULL);
|
|
|
|
sizeArray[ct] = _env->GetStringUTFLength(s);
|
2009-08-12 17:54:11 -07:00
|
|
|
}
|
2010-09-02 17:35:23 -07:00
|
|
|
jint id = (jint)rsElementCreate2(con, fieldCount, (RsElement *)ids, nameArray, sizeArray, (const uint32_t *)arraySizes);
|
2009-12-23 14:35:29 -08:00
|
|
|
for (int ct=0; ct < fieldCount; ct++) {
|
|
|
|
jstring s = (jstring)_env->GetObjectArrayElement(_names, ct);
|
|
|
|
_env->ReleaseStringUTFChars(s, nameArray[ct]);
|
2009-08-12 17:54:11 -07:00
|
|
|
}
|
2009-12-23 14:35:29 -08:00
|
|
|
_env->ReleaseIntArrayElements(_ids, ids, JNI_ABORT);
|
2010-09-02 17:35:23 -07:00
|
|
|
_env->ReleaseIntArrayElements(_arraySizes, arraySizes, JNI_ABORT);
|
2009-12-23 14:35:29 -08:00
|
|
|
free(nameArray);
|
|
|
|
free(sizeArray);
|
|
|
|
return (jint)id;
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2010-07-15 11:33:03 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nElementGetNativeData(JNIEnv *_env, jobject _this, RsContext con, jint id, jintArray _elementData)
|
2010-07-15 11:33:03 -07:00
|
|
|
{
|
|
|
|
int dataSize = _env->GetArrayLength(_elementData);
|
|
|
|
LOG_API("nElementGetNativeData, con(%p)", con);
|
|
|
|
|
|
|
|
// we will pack mType; mKind; mNormalized; mVectorSize; NumSubElements
|
|
|
|
assert(dataSize == 5);
|
|
|
|
|
|
|
|
uint32_t elementData[5];
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaElementGetNativeData(con, (RsElement)id, elementData, dataSize);
|
2010-07-15 11:33:03 -07:00
|
|
|
|
|
|
|
for(jint i = 0; i < dataSize; i ++) {
|
|
|
|
_env->SetIntArrayRegion(_elementData, i, 1, (const jint*)&elementData[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nElementGetSubElements(JNIEnv *_env, jobject _this, RsContext con, jint id, jintArray _IDs, jobjectArray _names)
|
2010-07-15 11:33:03 -07:00
|
|
|
{
|
|
|
|
int dataSize = _env->GetArrayLength(_IDs);
|
|
|
|
LOG_API("nElementGetSubElements, con(%p)", con);
|
|
|
|
|
|
|
|
uint32_t *ids = (uint32_t *)malloc((uint32_t)dataSize * sizeof(uint32_t));
|
|
|
|
const char **names = (const char **)malloc((uint32_t)dataSize * sizeof(const char *));
|
|
|
|
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaElementGetSubElements(con, (RsElement)id, ids, names, (uint32_t)dataSize);
|
2010-07-15 11:33:03 -07:00
|
|
|
|
2010-10-13 15:31:10 -07:00
|
|
|
for(jint i = 0; i < dataSize; i++) {
|
2010-07-15 11:33:03 -07:00
|
|
|
_env->SetObjectArrayElement(_names, i, _env->NewStringUTF(names[i]));
|
|
|
|
_env->SetIntArrayRegion(_IDs, i, 1, (const jint*)&ids[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(ids);
|
|
|
|
free(names);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
// -----------------------------------
|
|
|
|
|
2010-10-14 17:48:46 -07:00
|
|
|
static int
|
|
|
|
nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, jintArray _dims, jintArray _dimValues)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-10-14 17:48:46 -07:00
|
|
|
int count = _env->GetArrayLength(_dims);
|
|
|
|
LOG_API("nTypeCreate, con(%p)", con);
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2010-10-14 17:48:46 -07:00
|
|
|
jint *dimPtr = _env->GetIntArrayElements(_dims, NULL);
|
|
|
|
jint *dimValPtr = _env->GetIntArrayElements(_dimValues, NULL);
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2010-10-14 17:48:46 -07:00
|
|
|
jint id = (jint)rsaTypeCreate(con, (RsElement)eid, count,
|
|
|
|
(RsDimension *)dimPtr, (uint32_t *)dimValPtr);
|
|
|
|
|
|
|
|
_env->ReleaseIntArrayElements(_dims, dimPtr, JNI_ABORT);
|
|
|
|
_env->ReleaseIntArrayElements(_dimValues, dimValPtr, JNI_ABORT);
|
|
|
|
return (jint)id;
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2010-07-15 11:33:03 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nTypeGetNativeData(JNIEnv *_env, jobject _this, RsContext con, jint id, jintArray _typeData)
|
2010-07-15 11:33:03 -07:00
|
|
|
{
|
|
|
|
// We are packing 6 items: mDimX; mDimY; mDimZ;
|
|
|
|
// mDimLOD; mDimFaces; mElement; into typeData
|
|
|
|
int elementCount = _env->GetArrayLength(_typeData);
|
|
|
|
|
|
|
|
assert(elementCount == 6);
|
|
|
|
LOG_API("nTypeCreate, con(%p)", con);
|
|
|
|
|
|
|
|
uint32_t typeData[6];
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaTypeGetNativeData(con, (RsType)id, typeData, 6);
|
2010-07-15 11:33:03 -07:00
|
|
|
|
|
|
|
for(jint i = 0; i < elementCount; i ++) {
|
|
|
|
_env->SetIntArrayRegion(_typeData, i, 1, (const jint*)&typeData[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationCreateTyped(JNIEnv *_env, jobject _this, RsContext con, jint e)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAllocationCreateTyped, con(%p), e(%p)", con, (RsElement)e);
|
2010-10-26 13:09:17 -07:00
|
|
|
return (jint) rsaAllocationCreateTyped(con, (RsElement)e);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationUploadToTexture(JNIEnv *_env, jobject _this, RsContext con, jint a, jboolean genMip, jint mip)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-02-23 17:44:28 -08:00
|
|
|
LOG_API("nAllocationUploadToTexture, con(%p), a(%p), genMip(%i), mip(%i)", con, (RsAllocation)a, genMip, mip);
|
|
|
|
rsAllocationUploadToTexture(con, (RsAllocation)a, genMip, mip);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-08-27 20:23:34 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationUploadToBufferObject(JNIEnv *_env, jobject _this, RsContext con, jint a)
|
2009-08-27 20:23:34 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAllocationUploadToBufferObject, con(%p), a(%p)", con, (RsAllocation)a);
|
|
|
|
rsAllocationUploadToBufferObject(con, (RsAllocation)a);
|
|
|
|
}
|
|
|
|
|
2009-09-04 14:42:41 -07:00
|
|
|
static RsElement SkBitmapToPredefined(SkBitmap::Config cfg)
|
2009-06-01 17:45:53 -07:00
|
|
|
{
|
|
|
|
switch (cfg) {
|
|
|
|
case SkBitmap::kA8_Config:
|
2009-09-04 14:42:41 -07:00
|
|
|
return g_A_8;
|
2009-06-01 17:45:53 -07:00
|
|
|
case SkBitmap::kARGB_4444_Config:
|
2009-09-04 14:42:41 -07:00
|
|
|
return g_RGBA_4444;
|
2009-06-01 17:45:53 -07:00
|
|
|
case SkBitmap::kARGB_8888_Config:
|
2009-09-04 14:42:41 -07:00
|
|
|
return g_RGBA_8888;
|
2009-06-01 17:45:53 -07:00
|
|
|
case SkBitmap::kRGB_565_Config:
|
2009-09-04 14:42:41 -07:00
|
|
|
return g_RGB_565;
|
2009-06-01 17:45:53 -07:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// If we don't have a conversion mark it as a user type.
|
|
|
|
LOGE("Unsupported bitmap type");
|
2009-09-04 14:42:41 -07:00
|
|
|
return NULL;
|
2009-06-01 17:45:53 -07:00
|
|
|
}
|
|
|
|
|
2009-05-27 14:45:32 -07:00
|
|
|
static int
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint dstFmt, jboolean genMips, jobject jbitmap)
|
2009-05-27 14:45:32 -07:00
|
|
|
{
|
2009-06-01 17:45:53 -07:00
|
|
|
SkBitmap const * nativeBitmap =
|
|
|
|
(SkBitmap const *)_env->GetIntField(jbitmap, gNativeBitmapID);
|
|
|
|
const SkBitmap& bitmap(*nativeBitmap);
|
|
|
|
SkBitmap::Config config = bitmap.getConfig();
|
2009-05-27 14:45:32 -07:00
|
|
|
|
2009-09-04 14:42:41 -07:00
|
|
|
RsElement e = SkBitmapToPredefined(config);
|
|
|
|
if (e) {
|
2009-06-01 17:45:53 -07:00
|
|
|
bitmap.lockPixels();
|
|
|
|
const int w = bitmap.width();
|
|
|
|
const int h = bitmap.height();
|
|
|
|
const void* ptr = bitmap.getPixels();
|
2010-10-26 13:09:17 -07:00
|
|
|
jint id = (jint)rsaAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
|
2009-06-01 17:45:53 -07:00
|
|
|
bitmap.unlockPixels();
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2009-05-27 14:45:32 -07:00
|
|
|
|
2010-10-11 12:35:15 -07:00
|
|
|
static void
|
|
|
|
nAllocationUpdateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jobject jbitmap)
|
|
|
|
{
|
|
|
|
SkBitmap const * nativeBitmap =
|
|
|
|
(SkBitmap const *)_env->GetIntField(jbitmap, gNativeBitmapID);
|
|
|
|
const SkBitmap& bitmap(*nativeBitmap);
|
|
|
|
SkBitmap::Config config = bitmap.getConfig();
|
|
|
|
|
|
|
|
RsElement e = SkBitmapToPredefined(config);
|
|
|
|
if (e) {
|
|
|
|
bitmap.lockPixels();
|
|
|
|
const void* ptr = bitmap.getPixels();
|
|
|
|
rsAllocationUpdateFromBitmap(con, (RsAllocation)alloc, e, ptr);
|
|
|
|
bitmap.unlockPixels();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-01 15:31:04 -08:00
|
|
|
static void ReleaseBitmapCallback(void *bmp)
|
|
|
|
{
|
|
|
|
SkBitmap const * nativeBitmap = (SkBitmap const *)bmp;
|
|
|
|
nativeBitmap->unlockPixels();
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationCreateBitmapRef(JNIEnv *_env, jobject _this, RsContext con, jint type, jobject jbitmap)
|
2010-03-01 15:31:04 -08:00
|
|
|
{
|
|
|
|
SkBitmap * nativeBitmap =
|
|
|
|
(SkBitmap *)_env->GetIntField(jbitmap, gNativeBitmapID);
|
|
|
|
|
|
|
|
|
|
|
|
nativeBitmap->lockPixels();
|
|
|
|
void* ptr = nativeBitmap->getPixels();
|
|
|
|
jint id = (jint)rsAllocationCreateBitmapRef(con, (RsType)type, ptr, nativeBitmap, ReleaseBitmapCallback);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2009-08-31 14:06:43 -07:00
|
|
|
static int
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationCreateFromAssetStream(JNIEnv *_env, jobject _this, RsContext con, jint dstFmt, jboolean genMips, jint native_asset)
|
2009-08-31 14:06:43 -07:00
|
|
|
{
|
|
|
|
Asset* asset = reinterpret_cast<Asset*>(native_asset);
|
|
|
|
SkBitmap bitmap;
|
|
|
|
SkImageDecoder::DecodeMemory(asset->getBuffer(false), asset->getLength(),
|
|
|
|
&bitmap, SkBitmap::kNo_Config, SkImageDecoder::kDecodePixels_Mode);
|
|
|
|
|
|
|
|
SkBitmap::Config config = bitmap.getConfig();
|
|
|
|
|
2009-09-04 14:42:41 -07:00
|
|
|
RsElement e = SkBitmapToPredefined(config);
|
2009-08-31 14:06:43 -07:00
|
|
|
|
2009-09-04 14:42:41 -07:00
|
|
|
if (e) {
|
2009-08-31 14:06:43 -07:00
|
|
|
bitmap.lockPixels();
|
|
|
|
const int w = bitmap.width();
|
|
|
|
const int h = bitmap.height();
|
|
|
|
const void* ptr = bitmap.getPixels();
|
2010-10-26 13:09:17 -07:00
|
|
|
jint id = (jint)rsaAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
|
2009-08-31 14:06:43 -07:00
|
|
|
bitmap.unlockPixels();
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationSubData1D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint count, jintArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
2009-09-21 19:41:04 -07:00
|
|
|
LOG_API("nAllocation1DSubData_i, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes);
|
2009-05-22 14:03:28 -07:00
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
2009-09-21 19:41:04 -07:00
|
|
|
rsAllocation1DSubData(con, (RsAllocation)alloc, offset, count, ptr, sizeBytes);
|
2009-05-22 14:03:28 -07:00
|
|
|
_env->ReleaseIntArrayElements(data, ptr, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationSubData1D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint count, jshortArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
2009-09-21 19:41:04 -07:00
|
|
|
LOG_API("nAllocation1DSubData_s, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes);
|
|
|
|
jshort *ptr = _env->GetShortArrayElements(data, NULL);
|
|
|
|
rsAllocation1DSubData(con, (RsAllocation)alloc, offset, count, ptr, sizeBytes);
|
|
|
|
_env->ReleaseShortArrayElements(data, ptr, JNI_ABORT);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationSubData1D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint count, jbyteArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
2009-09-21 19:41:04 -07:00
|
|
|
LOG_API("nAllocation1DSubData_b, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes);
|
|
|
|
jbyte *ptr = _env->GetByteArrayElements(data, NULL);
|
2009-08-27 20:23:34 -07:00
|
|
|
rsAllocation1DSubData(con, (RsAllocation)alloc, offset, count, ptr, sizeBytes);
|
2009-09-21 19:41:04 -07:00
|
|
|
_env->ReleaseByteArrayElements(data, ptr, JNI_ABORT);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationSubData1D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint count, jfloatArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
2009-09-21 19:41:04 -07:00
|
|
|
LOG_API("nAllocation1DSubData_f, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes);
|
2009-05-22 14:03:28 -07:00
|
|
|
jfloat *ptr = _env->GetFloatArrayElements(data, NULL);
|
2009-08-27 20:23:34 -07:00
|
|
|
rsAllocation1DSubData(con, (RsAllocation)alloc, offset, count, ptr, sizeBytes);
|
2009-05-22 14:03:28 -07:00
|
|
|
_env->ReleaseFloatArrayElements(data, ptr, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
2010-08-31 13:50:42 -07:00
|
|
|
static void
|
|
|
|
// native void rsnAllocationSubElementData1D(int con, int id, int xoff, int compIdx, byte[] d, int sizeBytes);
|
|
|
|
nAllocationSubElementData1D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint compIdx, jbyteArray data, int sizeBytes)
|
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAllocationSubElementData1D, con(%p), alloc(%p), offset(%i), comp(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, compIdx, len, sizeBytes);
|
|
|
|
jbyte *ptr = _env->GetByteArrayElements(data, NULL);
|
|
|
|
rsAllocation1DSubElementData(con, (RsAllocation)alloc, offset, ptr, compIdx, sizeBytes);
|
|
|
|
_env->ReleaseByteArrayElements(data, ptr, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationSubData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint w, jint h, jintArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAllocation2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
2009-08-27 20:23:34 -07:00
|
|
|
rsAllocation2DSubData(con, (RsAllocation)alloc, xoff, yoff, w, h, ptr, sizeBytes);
|
2009-05-22 14:03:28 -07:00
|
|
|
_env->ReleaseIntArrayElements(data, ptr, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationSubData2D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint w, jint h, jfloatArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAllocation2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
|
|
|
|
jfloat *ptr = _env->GetFloatArrayElements(data, NULL);
|
2009-08-27 20:23:34 -07:00
|
|
|
rsAllocation2DSubData(con, (RsAllocation)alloc, xoff, yoff, w, h, ptr, sizeBytes);
|
2009-05-22 14:03:28 -07:00
|
|
|
_env->ReleaseFloatArrayElements(data, ptr, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
2009-08-10 14:55:26 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationRead_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jintArray data)
|
2009-08-10 14:55:26 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAllocationRead_i, con(%p), alloc(%p), len(%i)", con, (RsAllocation)alloc, len);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAllocationRead(con, (RsAllocation)alloc, ptr);
|
2009-08-31 17:23:53 -07:00
|
|
|
_env->ReleaseIntArrayElements(data, ptr, 0);
|
2009-08-10 14:55:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationRead_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jfloatArray data)
|
2009-08-10 14:55:26 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
2009-08-12 11:47:23 -07:00
|
|
|
LOG_API("nAllocationRead_f, con(%p), alloc(%p), len(%i)", con, (RsAllocation)alloc, len);
|
2009-08-10 14:55:26 -07:00
|
|
|
jfloat *ptr = _env->GetFloatArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAllocationRead(con, (RsAllocation)alloc, ptr);
|
2009-08-31 17:23:53 -07:00
|
|
|
_env->ReleaseFloatArrayElements(data, ptr, 0);
|
2009-08-10 14:55:26 -07:00
|
|
|
}
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2010-07-15 11:33:03 -07:00
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nAllocationGetType(JNIEnv *_env, jobject _this, RsContext con, jint a)
|
2010-07-15 11:33:03 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAllocationGetType, con(%p), a(%p)", con, (RsAllocation)a);
|
2010-10-27 14:10:07 -07:00
|
|
|
return (jint) rsaAllocationGetType(con, (RsAllocation)a);
|
2010-07-15 11:33:03 -07:00
|
|
|
}
|
|
|
|
|
2010-10-05 13:32:49 -07:00
|
|
|
static void
|
|
|
|
nAllocationResize1D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint dimX)
|
|
|
|
{
|
|
|
|
LOG_API("nAllocationResize1D, con(%p), alloc(%p), sizeX(%i)", con, (RsAllocation)alloc, dimX);
|
|
|
|
rsAllocationResize1D(con, (RsAllocation)alloc, dimX);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nAllocationResize2D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint dimX, jint dimY)
|
|
|
|
{
|
|
|
|
LOG_API("nAllocationResize1D, con(%p), alloc(%p), sizeX(%i), sizeY(%i)", con, (RsAllocation)alloc, dimX, dimY);
|
|
|
|
rsAllocationResize2D(con, (RsAllocation)alloc, dimX, dimY);
|
|
|
|
}
|
|
|
|
|
2010-06-04 10:06:50 -07:00
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
static int
|
2010-08-17 16:25:41 -07:00
|
|
|
nFileA3DCreateFromAssetStream(JNIEnv *_env, jobject _this, RsContext con, jint native_asset)
|
2010-06-04 10:06:50 -07:00
|
|
|
{
|
|
|
|
LOGV("______nFileA3D %u", (uint32_t) native_asset);
|
|
|
|
|
|
|
|
Asset* asset = reinterpret_cast<Asset*>(native_asset);
|
|
|
|
|
2010-10-27 14:10:07 -07:00
|
|
|
jint id = (jint)rsaFileA3DCreateFromAssetStream(con, asset->getBuffer(false), asset->getLength());
|
2010-06-04 10:06:50 -07:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-08-17 16:25:41 -07:00
|
|
|
nFileA3DGetNumIndexEntries(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D)
|
2010-06-04 10:06:50 -07:00
|
|
|
{
|
|
|
|
int32_t numEntries = 0;
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaFileA3DGetNumIndexEntries(con, &numEntries, (RsFile)fileA3D);
|
2010-06-04 10:06:50 -07:00
|
|
|
return numEntries;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nFileA3DGetIndexEntries(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D, jint numEntries, jintArray _ids, jobjectArray _entries)
|
2010-06-04 10:06:50 -07:00
|
|
|
{
|
|
|
|
LOGV("______nFileA3D %u", (uint32_t) fileA3D);
|
|
|
|
RsFileIndexEntry *fileEntries = (RsFileIndexEntry*)malloc((uint32_t)numEntries * sizeof(RsFileIndexEntry));
|
|
|
|
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaFileA3DGetIndexEntries(con, fileEntries, (uint32_t)numEntries, (RsFile)fileA3D);
|
2010-06-04 10:06:50 -07:00
|
|
|
|
|
|
|
for(jint i = 0; i < numEntries; i ++) {
|
|
|
|
_env->SetObjectArrayElement(_entries, i, _env->NewStringUTF(fileEntries[i].objectName));
|
|
|
|
_env->SetIntArrayRegion(_ids, i, 1, (const jint*)&fileEntries[i].classID);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(fileEntries);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-08-17 16:25:41 -07:00
|
|
|
nFileA3DGetEntryByIndex(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D, jint index)
|
2010-06-04 10:06:50 -07:00
|
|
|
{
|
|
|
|
LOGV("______nFileA3D %u", (uint32_t) fileA3D);
|
2010-10-27 14:10:07 -07:00
|
|
|
jint id = (jint)rsaFileA3DGetEntryByIndex(con, (uint32_t)index, (RsFile)fileA3D);
|
2010-06-04 10:06:50 -07:00
|
|
|
return id;
|
|
|
|
}
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2010-06-24 17:15:34 -07:00
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
static int
|
2010-08-17 16:25:41 -07:00
|
|
|
nFontCreateFromFile(JNIEnv *_env, jobject _this, RsContext con, jstring fileName, jint fontSize, jint dpi)
|
2010-06-24 17:15:34 -07:00
|
|
|
{
|
|
|
|
const char* fileNameUTF = _env->GetStringUTFChars(fileName, NULL);
|
|
|
|
|
|
|
|
jint id = (jint)rsFontCreateFromFile(con, fileNameUTF, fontSize, dpi);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter1DBindAllocation(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jint alloc)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAdapter1DBindAllocation, con(%p), adapter(%p), alloc(%p)", con, (RsAdapter1D)adapter, (RsAllocation)alloc);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter1DBindAllocation(con, (RsAdapter1D)adapter, (RsAllocation)alloc);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter1DSetConstraint(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jint dim, jint value)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAdapter1DSetConstraint, con(%p), adapter(%p), dim(%i), value(%i)", con, (RsAdapter1D)adapter, dim, value);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter1DSetConstraint(con, (RsAdapter1D)adapter, (RsDimension)dim, value);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter1DData_i(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jintArray data)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAdapter1DData_i, con(%p), adapter(%p), len(%i)", con, (RsAdapter1D)adapter, len);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter1DData(con, (RsAdapter1D)adapter, ptr);
|
2009-05-22 14:03:28 -07:00
|
|
|
_env->ReleaseIntArrayElements(data, ptr, 0/*JNI_ABORT*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter1DSubData_i(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jint offset, jint count, jintArray data)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAdapter1DSubData_i, con(%p), adapter(%p), offset(%i), count(%i), len(%i)", con, (RsAdapter1D)adapter, offset, count, len);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter1DSubData(con, (RsAdapter1D)adapter, offset, count, ptr);
|
2009-05-22 14:03:28 -07:00
|
|
|
_env->ReleaseIntArrayElements(data, ptr, 0/*JNI_ABORT*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter1DData_f(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jfloatArray data)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAdapter1DData_f, con(%p), adapter(%p), len(%i)", con, (RsAdapter1D)adapter, len);
|
|
|
|
jfloat *ptr = _env->GetFloatArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter1DData(con, (RsAdapter1D)adapter, ptr);
|
2009-05-22 14:03:28 -07:00
|
|
|
_env->ReleaseFloatArrayElements(data, ptr, 0/*JNI_ABORT*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter1DSubData_f(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jint offset, jint count, jfloatArray data)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAdapter1DSubData_f, con(%p), adapter(%p), offset(%i), count(%i), len(%i)", con, (RsAdapter1D)adapter, offset, count, len);
|
|
|
|
jfloat *ptr = _env->GetFloatArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter1DSubData(con, (RsAdapter1D)adapter, offset, count, ptr);
|
2009-05-22 14:03:28 -07:00
|
|
|
_env->ReleaseFloatArrayElements(data, ptr, 0/*JNI_ABORT*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter1DCreate(JNIEnv *_env, jobject _this, RsContext con)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAdapter1DCreate, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsAdapter1DCreate(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------
|
|
|
|
|
2009-08-03 16:03:08 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter2DBindAllocation(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jint alloc)
|
2009-08-03 16:03:08 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAdapter2DBindAllocation, con(%p), adapter(%p), alloc(%p)", con, (RsAdapter2D)adapter, (RsAllocation)alloc);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter2DBindAllocation(con, (RsAdapter2D)adapter, (RsAllocation)alloc);
|
2009-08-03 16:03:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter2DSetConstraint(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jint dim, jint value)
|
2009-08-03 16:03:08 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAdapter2DSetConstraint, con(%p), adapter(%p), dim(%i), value(%i)", con, (RsAdapter2D)adapter, dim, value);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter2DSetConstraint(con, (RsAdapter2D)adapter, (RsDimension)dim, value);
|
2009-08-03 16:03:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter2DData_i(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jintArray data)
|
2009-08-03 16:03:08 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAdapter2DData_i, con(%p), adapter(%p), len(%i)", con, (RsAdapter2D)adapter, len);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter2DData(con, (RsAdapter2D)adapter, ptr);
|
2009-08-03 16:03:08 -07:00
|
|
|
_env->ReleaseIntArrayElements(data, ptr, 0/*JNI_ABORT*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter2DData_f(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jfloatArray data)
|
2009-08-03 16:03:08 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAdapter2DData_f, con(%p), adapter(%p), len(%i)", con, (RsAdapter2D)adapter, len);
|
|
|
|
jfloat *ptr = _env->GetFloatArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter2DData(con, (RsAdapter2D)adapter, ptr);
|
2009-08-03 16:03:08 -07:00
|
|
|
_env->ReleaseFloatArrayElements(data, ptr, 0/*JNI_ABORT*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter2DSubData_i(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jint xoff, jint yoff, jint w, jint h, jintArray data)
|
2009-08-03 16:03:08 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAdapter2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)",
|
|
|
|
con, (RsAdapter2D)adapter, xoff, yoff, w, h, len);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter2DSubData(con, (RsAdapter2D)adapter, xoff, yoff, w, h, ptr);
|
2009-08-03 16:03:08 -07:00
|
|
|
_env->ReleaseIntArrayElements(data, ptr, 0/*JNI_ABORT*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter2DSubData_f(JNIEnv *_env, jobject _this, RsContext con, jint adapter, jint xoff, jint yoff, jint w, jint h, jfloatArray data)
|
2009-08-03 16:03:08 -07:00
|
|
|
{
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nAdapter2DSubData_f, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)",
|
|
|
|
con, (RsAdapter2D)adapter, xoff, yoff, w, h, len);
|
|
|
|
jfloat *ptr = _env->GetFloatArrayElements(data, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAdapter2DSubData(con, (RsAdapter1D)adapter, xoff, yoff, w, h, ptr);
|
2009-08-03 16:03:08 -07:00
|
|
|
_env->ReleaseFloatArrayElements(data, ptr, 0/*JNI_ABORT*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nAdapter2DCreate(JNIEnv *_env, jobject _this, RsContext con)
|
2009-08-03 16:03:08 -07:00
|
|
|
{
|
|
|
|
LOG_API("nAdapter2DCreate, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsAdapter2DCreate(con);
|
2009-08-03 16:03:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptBindAllocation(JNIEnv *_env, jobject _this, RsContext con, jint script, jint alloc, jint slot)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nScriptBindAllocation, con(%p), script(%p), alloc(%p), slot(%i)", con, (RsScript)script, (RsAllocation)alloc, slot);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptBindAllocation(con, (RsScript)script, (RsAllocation)alloc, slot);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2010-05-11 14:03:58 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptSetVarI(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val)
|
2010-05-11 14:03:58 -07:00
|
|
|
{
|
2010-09-14 14:59:03 -07:00
|
|
|
LOG_API("nScriptSetVarI, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
|
2010-05-11 14:03:58 -07:00
|
|
|
rsScriptSetVarI(con, (RsScript)script, slot, val);
|
|
|
|
}
|
|
|
|
|
2010-10-11 10:54:21 -07:00
|
|
|
static void
|
|
|
|
nScriptSetVarJ(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jlong val)
|
|
|
|
{
|
|
|
|
LOG_API("nScriptSetVarJ, con(%p), s(%p), slot(%i), val(%lli)", con, (void *)script, slot, val);
|
|
|
|
rsScriptSetVarJ(con, (RsScript)script, slot, val);
|
|
|
|
}
|
|
|
|
|
2010-05-11 14:03:58 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptSetVarF(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, float val)
|
2010-05-11 14:03:58 -07:00
|
|
|
{
|
2010-09-20 17:20:30 -07:00
|
|
|
LOG_API("nScriptSetVarF, con(%p), s(%p), slot(%i), val(%f)", con, (void *)script, slot, val);
|
2010-05-11 14:03:58 -07:00
|
|
|
rsScriptSetVarF(con, (RsScript)script, slot, val);
|
|
|
|
}
|
|
|
|
|
2010-09-20 17:20:30 -07:00
|
|
|
static void
|
|
|
|
nScriptSetVarD(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, double val)
|
|
|
|
{
|
|
|
|
LOG_API("nScriptSetVarD, con(%p), s(%p), slot(%i), val(%lf)", con, (void *)script, slot, val);
|
|
|
|
rsScriptSetVarD(con, (RsScript)script, slot, val);
|
|
|
|
}
|
|
|
|
|
2010-05-11 14:03:58 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptSetVarV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data)
|
2010-05-11 14:03:58 -07:00
|
|
|
{
|
|
|
|
LOG_API("nScriptSetVarV, con(%p), s(%p), slot(%i)", con, (void *)script, slot);
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
jbyte *ptr = _env->GetByteArrayElements(data, NULL);
|
|
|
|
rsScriptSetVarV(con, (RsScript)script, slot, ptr, len);
|
|
|
|
_env->ReleaseByteArrayElements(data, ptr, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-07-30 18:45:01 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptSetTimeZone(JNIEnv *_env, jobject _this, RsContext con, jint script, jbyteArray timeZone)
|
2009-07-30 18:45:01 -07:00
|
|
|
{
|
2009-08-27 20:23:34 -07:00
|
|
|
LOG_API("nScriptCSetTimeZone, con(%p), s(%p), timeZone(%s)", con, (void *)script, (const char *)timeZone);
|
2009-07-30 18:45:01 -07:00
|
|
|
|
|
|
|
jint length = _env->GetArrayLength(timeZone);
|
|
|
|
jbyte* timeZone_ptr;
|
|
|
|
timeZone_ptr = (jbyte *) _env->GetPrimitiveArrayCritical(timeZone, (jboolean *)0);
|
|
|
|
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptSetTimeZone(con, (RsScript)script, (const char *)timeZone_ptr, length);
|
2009-07-30 18:45:01 -07:00
|
|
|
|
|
|
|
if (timeZone_ptr) {
|
|
|
|
_env->ReleasePrimitiveArrayCritical(timeZone, timeZone_ptr, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-04 16:58:20 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptInvoke(JNIEnv *_env, jobject _this, RsContext con, jint obj, jint slot)
|
2009-08-04 16:58:20 -07:00
|
|
|
{
|
2010-05-11 14:03:58 -07:00
|
|
|
LOG_API("nScriptInvoke, con(%p), script(%p)", con, (void *)obj);
|
|
|
|
rsScriptInvoke(con, (RsScript)obj, slot);
|
2009-08-04 16:58:20 -07:00
|
|
|
}
|
|
|
|
|
2009-09-16 15:04:38 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptInvokeV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data)
|
2009-09-16 15:04:38 -07:00
|
|
|
{
|
2010-05-11 14:03:58 -07:00
|
|
|
LOG_API("nScriptInvokeV, con(%p), s(%p), slot(%i)", con, (void *)script, slot);
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
jbyte *ptr = _env->GetByteArrayElements(data, NULL);
|
|
|
|
rsScriptInvokeV(con, (RsScript)script, slot, ptr, len);
|
|
|
|
_env->ReleaseByteArrayElements(data, ptr, JNI_ABORT);
|
2009-09-16 15:04:38 -07:00
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-08-13 12:59:04 -07:00
|
|
|
// -----------------------------------
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptCBegin(JNIEnv *_env, jobject _this, RsContext con)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2009-08-13 12:59:04 -07:00
|
|
|
LOG_API("nScriptCBegin, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptCBegin(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptCSetScript(JNIEnv *_env, jobject _this, RsContext con, jbyteArray scriptRef,
|
2009-05-28 13:38:16 -07:00
|
|
|
jint offset, jint length)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("!!! nScriptCSetScript, con(%p)", con);
|
2009-05-28 13:38:16 -07:00
|
|
|
jint _exception = 0;
|
|
|
|
jint remaining;
|
|
|
|
jbyte* script_base = 0;
|
|
|
|
jbyte* script_ptr;
|
|
|
|
if (!scriptRef) {
|
|
|
|
_exception = 1;
|
|
|
|
//_env->ThrowNew(IAEClass, "script == null");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
if (offset < 0) {
|
|
|
|
_exception = 1;
|
|
|
|
//_env->ThrowNew(IAEClass, "offset < 0");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
if (length < 0) {
|
|
|
|
_exception = 1;
|
|
|
|
//_env->ThrowNew(IAEClass, "length < 0");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
remaining = _env->GetArrayLength(scriptRef) - offset;
|
|
|
|
if (remaining < length) {
|
|
|
|
_exception = 1;
|
|
|
|
//_env->ThrowNew(IAEClass, "length > script.length - offset");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
script_base = (jbyte *)
|
|
|
|
_env->GetPrimitiveArrayCritical(scriptRef, (jboolean *)0);
|
|
|
|
script_ptr = script_base + offset;
|
|
|
|
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptCSetText(con, (const char *)script_ptr, length);
|
2009-06-05 17:35:09 -07:00
|
|
|
|
2009-05-28 13:38:16 -07:00
|
|
|
exit:
|
|
|
|
if (script_base) {
|
|
|
|
_env->ReleasePrimitiveArrayCritical(scriptRef, script_base,
|
|
|
|
_exception ? JNI_ABORT: 0);
|
|
|
|
}
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nScriptCCreate(JNIEnv *_env, jobject _this, RsContext con)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nScriptCCreate, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsScriptCCreate(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramStoreBegin(JNIEnv *_env, jobject _this, RsContext con, jint in, jint out)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-05-13 18:30:11 -07:00
|
|
|
LOG_API("nProgramStoreBegin, con(%p), in(%p), out(%p)", con, (RsElement)in, (RsElement)out);
|
|
|
|
rsProgramStoreBegin(con, (RsElement)in, (RsElement)out);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramStoreDepthFunc(JNIEnv *_env, jobject _this, RsContext con, jint func)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-05-13 18:30:11 -07:00
|
|
|
LOG_API("nProgramStoreDepthFunc, con(%p), func(%i)", con, func);
|
|
|
|
rsProgramStoreDepthFunc(con, (RsDepthFunc)func);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramStoreDepthMask(JNIEnv *_env, jobject _this, RsContext con, jboolean enable)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-05-13 18:30:11 -07:00
|
|
|
LOG_API("nProgramStoreDepthMask, con(%p), enable(%i)", con, enable);
|
|
|
|
rsProgramStoreDepthMask(con, enable);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramStoreColorMask(JNIEnv *_env, jobject _this, RsContext con, jboolean r, jboolean g, jboolean b, jboolean a)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-05-13 18:30:11 -07:00
|
|
|
LOG_API("nProgramStoreColorMask, con(%p), r(%i), g(%i), b(%i), a(%i)", con, r, g, b, a);
|
|
|
|
rsProgramStoreColorMask(con, r, g, b, a);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramStoreBlendFunc(JNIEnv *_env, jobject _this, RsContext con, int src, int dst)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-05-13 18:30:11 -07:00
|
|
|
LOG_API("nProgramStoreBlendFunc, con(%p), src(%i), dst(%i)", con, src, dst);
|
|
|
|
rsProgramStoreBlendFunc(con, (RsBlendSrcFunc)src, (RsBlendDstFunc)dst);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramStoreDither(JNIEnv *_env, jobject _this, RsContext con, jboolean enable)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-05-13 18:30:11 -07:00
|
|
|
LOG_API("nProgramStoreDither, con(%p), enable(%i)", con, enable);
|
|
|
|
rsProgramStoreDither(con, enable);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramStoreCreate(JNIEnv *_env, jobject _this, RsContext con)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-05-13 18:30:11 -07:00
|
|
|
LOG_API("nProgramStoreCreate, con(%p)", con);
|
|
|
|
return (jint)rsProgramStoreCreate(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramBindConstants(JNIEnv *_env, jobject _this, RsContext con, jint vpv, jint slot, jint a)
|
2009-12-15 12:58:36 -08:00
|
|
|
{
|
|
|
|
LOG_API("nProgramBindConstants, con(%p), vpf(%p), sloat(%i), a(%p)", con, (RsProgramVertex)vpv, slot, (RsAllocation)a);
|
|
|
|
rsProgramBindConstants(con, (RsProgram)vpv, slot, (RsAllocation)a);
|
|
|
|
}
|
2009-11-30 14:49:55 -08:00
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramBindTexture(JNIEnv *_env, jobject _this, RsContext con, jint vpf, jint slot, jint a)
|
2009-11-30 14:49:55 -08:00
|
|
|
{
|
2009-12-17 16:55:08 -08:00
|
|
|
LOG_API("nProgramBindTexture, con(%p), vpf(%p), slot(%i), a(%p)", con, (RsProgramFragment)vpf, slot, (RsAllocation)a);
|
|
|
|
rsProgramBindTexture(con, (RsProgramFragment)vpf, slot, (RsAllocation)a);
|
2009-11-30 14:49:55 -08:00
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramBindSampler(JNIEnv *_env, jobject _this, RsContext con, jint vpf, jint slot, jint a)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2009-12-17 16:55:08 -08:00
|
|
|
LOG_API("nProgramBindSampler, con(%p), vpf(%p), slot(%i), a(%p)", con, (RsProgramFragment)vpf, slot, (RsSampler)a);
|
|
|
|
rsProgramBindSampler(con, (RsProgramFragment)vpf, slot, (RsSampler)a);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-12-17 16:55:08 -08:00
|
|
|
// ---------------------------------------------------------------------------
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-12-17 16:55:08 -08:00
|
|
|
static jint
|
2010-09-23 16:16:33 -07:00
|
|
|
nProgramFragmentCreate(JNIEnv *_env, jobject _this, RsContext con, jstring shader, jintArray params)
|
2009-12-15 13:27:04 -08:00
|
|
|
{
|
|
|
|
const char* shaderUTF = _env->GetStringUTFChars(shader, NULL);
|
|
|
|
jint shaderLen = _env->GetStringUTFLength(shader);
|
|
|
|
jint *paramPtr = _env->GetIntArrayElements(params, NULL);
|
|
|
|
jint paramLen = _env->GetArrayLength(params);
|
|
|
|
|
2010-09-23 16:16:33 -07:00
|
|
|
LOG_API("nProgramFragmentCreate, con(%p), shaderLen(%i), paramLen(%i)", con, shaderLen, paramLen);
|
2009-12-15 13:27:04 -08:00
|
|
|
|
2010-09-23 16:16:33 -07:00
|
|
|
jint ret = (jint)rsProgramFragmentCreate(con, shaderUTF, shaderLen, (uint32_t *)paramPtr, paramLen);
|
2009-12-15 13:27:04 -08:00
|
|
|
_env->ReleaseStringUTFChars(shader, shaderUTF);
|
|
|
|
_env->ReleaseIntArrayElements(params, paramPtr, JNI_ABORT);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-11 14:46:10 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
static jint
|
2010-09-23 16:16:33 -07:00
|
|
|
nProgramVertexCreate(JNIEnv *_env, jobject _this, RsContext con, jstring shader, jintArray params)
|
2009-06-11 14:46:10 -07:00
|
|
|
{
|
2009-12-15 12:58:36 -08:00
|
|
|
const char* shaderUTF = _env->GetStringUTFChars(shader, NULL);
|
|
|
|
jint shaderLen = _env->GetStringUTFLength(shader);
|
|
|
|
jint *paramPtr = _env->GetIntArrayElements(params, NULL);
|
|
|
|
jint paramLen = _env->GetArrayLength(params);
|
2009-06-11 14:46:10 -07:00
|
|
|
|
2010-09-23 16:16:33 -07:00
|
|
|
LOG_API("nProgramVertexCreate, con(%p), shaderLen(%i), paramLen(%i)", con, shaderLen, paramLen);
|
2009-07-21 12:20:54 -07:00
|
|
|
|
2010-09-23 16:16:33 -07:00
|
|
|
jint ret = (jint)rsProgramVertexCreate(con, shaderUTF, shaderLen, (uint32_t *)paramPtr, paramLen);
|
2009-12-15 12:58:36 -08:00
|
|
|
_env->ReleaseStringUTFChars(shader, shaderUTF);
|
|
|
|
_env->ReleaseIntArrayElements(params, paramPtr, JNI_ABORT);
|
|
|
|
return ret;
|
2009-06-11 14:46:10 -07:00
|
|
|
}
|
|
|
|
|
2009-09-23 13:57:02 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramRasterCreate(JNIEnv *_env, jobject _this, RsContext con, jboolean pointSmooth, jboolean lineSmooth, jboolean pointSprite)
|
2009-09-23 13:57:02 -07:00
|
|
|
{
|
2010-07-12 15:50:32 -07:00
|
|
|
LOG_API("nProgramRasterCreate, con(%p), pointSmooth(%i), lineSmooth(%i), pointSprite(%i)",
|
|
|
|
con, pointSmooth, lineSmooth, pointSprite);
|
|
|
|
return (jint)rsProgramRasterCreate(con, pointSmooth, lineSmooth, pointSprite);
|
2009-09-23 13:57:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramRasterSetLineWidth(JNIEnv *_env, jobject _this, RsContext con, jint vpr, jfloat v)
|
2009-09-23 13:57:02 -07:00
|
|
|
{
|
|
|
|
LOG_API("nProgramRasterSetLineWidth, con(%p), vpf(%p), value(%f)", con, (RsProgramRaster)vpr, v);
|
2010-07-12 15:50:32 -07:00
|
|
|
rsProgramRasterSetLineWidth(con, (RsProgramRaster)vpr, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nProgramRasterSetCullMode(JNIEnv *_env, jobject _this, RsContext con, jint vpr, jint v)
|
2010-07-12 15:50:32 -07:00
|
|
|
{
|
|
|
|
LOG_API("nProgramRasterSetCullMode, con(%p), vpf(%p), value(%i)", con, (RsProgramRaster)vpr, v);
|
|
|
|
rsProgramRasterSetCullMode(con, (RsProgramRaster)vpr, (RsCullMode)v);
|
2009-09-23 13:57:02 -07:00
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextBindRootScript(JNIEnv *_env, jobject _this, RsContext con, jint script)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextBindRootScript, con(%p), script(%p)", con, (RsScript)script);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsContextBindRootScript(con, (RsScript)script);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextBindProgramStore(JNIEnv *_env, jobject _this, RsContext con, jint pfs)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2010-05-13 18:30:11 -07:00
|
|
|
LOG_API("nContextBindProgramStore, con(%p), pfs(%p)", con, (RsProgramStore)pfs);
|
|
|
|
rsContextBindProgramStore(con, (RsProgramStore)pfs);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextBindProgramFragment(JNIEnv *_env, jobject _this, RsContext con, jint pf)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextBindProgramFragment, con(%p), pf(%p)", con, (RsProgramFragment)pf);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsContextBindProgramFragment(con, (RsProgramFragment)pf);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-06-15 19:04:56 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextBindProgramVertex(JNIEnv *_env, jobject _this, RsContext con, jint pf)
|
2009-06-15 19:04:56 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextBindProgramVertex, con(%p), pf(%p)", con, (RsProgramVertex)pf);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsContextBindProgramVertex(con, (RsProgramVertex)pf);
|
2009-06-15 19:04:56 -07:00
|
|
|
}
|
|
|
|
|
2009-09-23 13:57:02 -07:00
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nContextBindProgramRaster(JNIEnv *_env, jobject _this, RsContext con, jint pf)
|
2009-09-23 13:57:02 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextBindProgramRaster, con(%p), pf(%p)", con, (RsProgramRaster)pf);
|
|
|
|
rsContextBindProgramRaster(con, (RsProgramRaster)pf);
|
|
|
|
}
|
|
|
|
|
2009-08-09 22:57:44 -07:00
|
|
|
|
2009-05-28 15:37:57 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nSamplerBegin(JNIEnv *_env, jobject _this, RsContext con)
|
2009-05-28 15:37:57 -07:00
|
|
|
{
|
|
|
|
LOG_API("nSamplerBegin, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsSamplerBegin(con);
|
2009-05-28 15:37:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nSamplerSet(JNIEnv *_env, jobject _this, RsContext con, jint p, jint v)
|
2009-05-28 15:37:57 -07:00
|
|
|
{
|
|
|
|
LOG_API("nSamplerSet, con(%p), param(%i), value(%i)", con, p, v);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsSamplerSet(con, (RsSamplerParam)p, (RsSamplerValue)v);
|
2009-05-28 15:37:57 -07:00
|
|
|
}
|
|
|
|
|
2010-09-30 11:36:37 -07:00
|
|
|
static void
|
|
|
|
nSamplerSet2(JNIEnv *_env, jobject _this, RsContext con, jint p, jfloat v)
|
|
|
|
{
|
|
|
|
LOG_API("nSamplerSet2, con(%p), param(%i), value(%f)", con, p, v);
|
|
|
|
rsSamplerSet2(con, (RsSamplerParam)p, v);
|
|
|
|
}
|
|
|
|
|
2009-05-28 15:37:57 -07:00
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nSamplerCreate(JNIEnv *_env, jobject _this, RsContext con)
|
2009-05-28 15:37:57 -07:00
|
|
|
{
|
2009-06-22 15:49:21 -07:00
|
|
|
LOG_API("nSamplerCreate, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsSamplerCreate(con);
|
2009-05-28 15:37:57 -07:00
|
|
|
}
|
|
|
|
|
2009-06-22 15:49:21 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2010-07-01 16:14:06 -07:00
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nMeshCreate(JNIEnv *_env, jobject _this, RsContext con, jint vtxCount, jint idxCount)
|
2010-07-01 16:14:06 -07:00
|
|
|
{
|
|
|
|
LOG_API("nMeshCreate, con(%p), vtxCount(%i), idxCount(%i)", con, vtxCount, idxCount);
|
|
|
|
int id = (int)rsMeshCreate(con, vtxCount, idxCount);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nMeshBindVertex(JNIEnv *_env, jobject _this, RsContext con, jint mesh, jint alloc, jint slot)
|
2010-07-01 16:14:06 -07:00
|
|
|
{
|
2010-07-12 15:50:32 -07:00
|
|
|
LOG_API("nMeshBindVertex, con(%p), Mesh(%p), Alloc(%p), slot(%i)", con, (RsMesh)mesh, (RsAllocation)alloc, slot);
|
|
|
|
rsMeshBindVertex(con, (RsMesh)mesh, (RsAllocation)alloc, slot);
|
2010-07-01 16:14:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nMeshBindIndex(JNIEnv *_env, jobject _this, RsContext con, jint mesh, jint alloc, jint primID, jint slot)
|
2010-07-01 16:14:06 -07:00
|
|
|
{
|
2010-07-12 15:50:32 -07:00
|
|
|
LOG_API("nMeshBindIndex, con(%p), Mesh(%p), Alloc(%p)", con, (RsMesh)mesh, (RsAllocation)alloc);
|
|
|
|
rsMeshBindIndex(con, (RsMesh)mesh, (RsAllocation)alloc, primID, slot);
|
|
|
|
}
|
|
|
|
|
2010-11-08 15:10:52 -08:00
|
|
|
static void
|
|
|
|
nMeshInitVertexAttribs(JNIEnv *_env, jobject _this, RsContext con, jint mesh)
|
|
|
|
{
|
|
|
|
LOG_API("nMeshInitVertexAttribs, con(%p), Mesh(%p)", con, (RsMesh)mesh);
|
|
|
|
rsMeshInitVertexAttribs(con, (RsMesh)mesh);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-12 15:50:32 -07:00
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nMeshGetVertexBufferCount(JNIEnv *_env, jobject _this, RsContext con, jint mesh)
|
2010-07-12 15:50:32 -07:00
|
|
|
{
|
|
|
|
LOG_API("nMeshGetVertexBufferCount, con(%p), Mesh(%p)", con, (RsMesh)mesh);
|
|
|
|
jint vtxCount = 0;
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaMeshGetVertexBufferCount(con, (RsMesh)mesh, &vtxCount);
|
2010-07-12 15:50:32 -07:00
|
|
|
return vtxCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
2010-08-17 16:25:41 -07:00
|
|
|
nMeshGetIndexCount(JNIEnv *_env, jobject _this, RsContext con, jint mesh)
|
2010-07-12 15:50:32 -07:00
|
|
|
{
|
|
|
|
LOG_API("nMeshGetIndexCount, con(%p), Mesh(%p)", con, (RsMesh)mesh);
|
|
|
|
jint idxCount = 0;
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaMeshGetIndexCount(con, (RsMesh)mesh, &idxCount);
|
2010-07-12 15:50:32 -07:00
|
|
|
return idxCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nMeshGetVertices(JNIEnv *_env, jobject _this, RsContext con, jint mesh, jintArray _ids, int numVtxIDs)
|
2010-07-12 15:50:32 -07:00
|
|
|
{
|
|
|
|
LOG_API("nMeshGetVertices, con(%p), Mesh(%p)", con, (RsMesh)mesh);
|
|
|
|
|
|
|
|
RsAllocation *allocs = (RsAllocation*)malloc((uint32_t)numVtxIDs * sizeof(RsAllocation));
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaMeshGetVertices(con, (RsMesh)mesh, allocs, (uint32_t)numVtxIDs);
|
2010-07-12 15:50:32 -07:00
|
|
|
|
|
|
|
for(jint i = 0; i < numVtxIDs; i ++) {
|
|
|
|
_env->SetIntArrayRegion(_ids, i, 1, (const jint*)&allocs[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(allocs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-17 16:25:41 -07:00
|
|
|
nMeshGetIndices(JNIEnv *_env, jobject _this, RsContext con, jint mesh, jintArray _idxIds, jintArray _primitives, int numIndices)
|
2010-07-12 15:50:32 -07:00
|
|
|
{
|
|
|
|
LOG_API("nMeshGetVertices, con(%p), Mesh(%p)", con, (RsMesh)mesh);
|
|
|
|
|
|
|
|
RsAllocation *allocs = (RsAllocation*)malloc((uint32_t)numIndices * sizeof(RsAllocation));
|
|
|
|
uint32_t *prims= (uint32_t*)malloc((uint32_t)numIndices * sizeof(uint32_t));
|
|
|
|
|
2010-10-27 14:10:07 -07:00
|
|
|
rsaMeshGetIndices(con, (RsMesh)mesh, allocs, prims, (uint32_t)numIndices);
|
2010-07-12 15:50:32 -07:00
|
|
|
|
|
|
|
for(jint i = 0; i < numIndices; i ++) {
|
|
|
|
_env->SetIntArrayRegion(_idxIds, i, 1, (const jint*)&allocs[i]);
|
|
|
|
_env->SetIntArrayRegion(_primitives, i, 1, (const jint*)&prims[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(allocs);
|
|
|
|
free(prims);
|
2010-07-01 16:14:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-06-10 16:09:05 -07:00
|
|
|
static const char *classPathName = "android/renderscript/RenderScript";
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
static JNINativeMethod methods[] = {
|
2010-11-08 17:06:46 -08:00
|
|
|
{"_nInit", "()V", (void*)_nInit },
|
|
|
|
{"nInitElements", "(IIII)V", (void*)nInitElements },
|
|
|
|
|
|
|
|
{"nDeviceCreate", "()I", (void*)nDeviceCreate },
|
|
|
|
{"nDeviceDestroy", "(I)V", (void*)nDeviceDestroy },
|
|
|
|
{"nDeviceSetConfig", "(III)V", (void*)nDeviceSetConfig },
|
|
|
|
{"nContextGetUserMessage", "(I[I)V", (void*)nContextGetUserMessage },
|
|
|
|
{"nContextGetErrorMessage", "(I)Ljava/lang/String;", (void*)nContextGetErrorMessage },
|
|
|
|
{"nContextPeekMessage", "(I[IZ)I", (void*)nContextPeekMessage },
|
|
|
|
|
|
|
|
{"nContextInitToClient", "(I)V", (void*)nContextInitToClient },
|
|
|
|
{"nContextDeinitToClient", "(I)V", (void*)nContextDeinitToClient },
|
2010-08-17 16:25:41 -07:00
|
|
|
|
|
|
|
|
|
|
|
// All methods below are thread protected in java.
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnContextCreate", "(II)I", (void*)nContextCreate },
|
2010-10-13 15:31:10 -07:00
|
|
|
{"rsnContextCreateGL", "(IIIIIIIIIIIIF)I", (void*)nContextCreateGL },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnContextFinish", "(I)V", (void*)nContextFinish },
|
|
|
|
{"rsnContextSetPriority", "(II)V", (void*)nContextSetPriority },
|
|
|
|
{"rsnContextSetSurface", "(IIILandroid/view/Surface;)V", (void*)nContextSetSurface },
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnContextDestroy", "(I)V", (void*)nContextDestroy },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnContextDump", "(II)V", (void*)nContextDump },
|
|
|
|
{"rsnContextPause", "(I)V", (void*)nContextPause },
|
|
|
|
{"rsnContextResume", "(I)V", (void*)nContextResume },
|
|
|
|
{"rsnAssignName", "(II[B)V", (void*)nAssignName },
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnGetName", "(II)Ljava/lang/String;", (void*)nGetName },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnObjDestroy", "(II)V", (void*)nObjDestroy },
|
|
|
|
|
|
|
|
{"rsnFileA3DCreateFromAssetStream", "(II)I", (void*)nFileA3DCreateFromAssetStream },
|
|
|
|
{"rsnFileA3DGetNumIndexEntries", "(II)I", (void*)nFileA3DGetNumIndexEntries },
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnFileA3DGetIndexEntries", "(III[I[Ljava/lang/String;)V", (void*)nFileA3DGetIndexEntries },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnFileA3DGetEntryByIndex", "(III)I", (void*)nFileA3DGetEntryByIndex },
|
|
|
|
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnFontCreateFromFile", "(ILjava/lang/String;II)I", (void*)nFontCreateFromFile },
|
2010-08-17 16:25:41 -07:00
|
|
|
|
|
|
|
{"rsnElementCreate", "(IIIZI)I", (void*)nElementCreate },
|
2010-09-02 17:35:23 -07:00
|
|
|
{"rsnElementCreate2", "(I[I[Ljava/lang/String;[I)I", (void*)nElementCreate2 },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnElementGetNativeData", "(II[I)V", (void*)nElementGetNativeData },
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnElementGetSubElements", "(II[I[Ljava/lang/String;)V", (void*)nElementGetSubElements },
|
2010-08-17 16:25:41 -07:00
|
|
|
|
2010-10-14 17:48:46 -07:00
|
|
|
{"rsnTypeCreate", "(II[I[I)I", (void*)nTypeCreate },
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnTypeGetNativeData", "(II[I)V", (void*)nTypeGetNativeData },
|
2010-08-17 16:25:41 -07:00
|
|
|
|
|
|
|
{"rsnAllocationCreateTyped", "(II)I", (void*)nAllocationCreateTyped },
|
2010-10-11 12:35:15 -07:00
|
|
|
{"rsnAllocationUpdateFromBitmap", "(IILandroid/graphics/Bitmap;)V", (void*)nAllocationUpdateFromBitmap },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnAllocationCreateFromBitmap", "(IIZLandroid/graphics/Bitmap;)I", (void*)nAllocationCreateFromBitmap },
|
|
|
|
{"rsnAllocationCreateBitmapRef", "(IILandroid/graphics/Bitmap;)I", (void*)nAllocationCreateBitmapRef },
|
|
|
|
{"rsnAllocationCreateFromAssetStream","(IIZI)I", (void*)nAllocationCreateFromAssetStream },
|
|
|
|
{"rsnAllocationUploadToTexture", "(IIZI)V", (void*)nAllocationUploadToTexture },
|
|
|
|
{"rsnAllocationUploadToBufferObject","(II)V", (void*)nAllocationUploadToBufferObject },
|
|
|
|
{"rsnAllocationSubData1D", "(IIII[II)V", (void*)nAllocationSubData1D_i },
|
|
|
|
{"rsnAllocationSubData1D", "(IIII[SI)V", (void*)nAllocationSubData1D_s },
|
|
|
|
{"rsnAllocationSubData1D", "(IIII[BI)V", (void*)nAllocationSubData1D_b },
|
|
|
|
{"rsnAllocationSubData1D", "(IIII[FI)V", (void*)nAllocationSubData1D_f },
|
2010-08-31 13:50:42 -07:00
|
|
|
{"rsnAllocationSubElementData1D", "(IIII[BI)V", (void*)nAllocationSubElementData1D },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnAllocationSubData2D", "(IIIIII[II)V", (void*)nAllocationSubData2D_i },
|
|
|
|
{"rsnAllocationSubData2D", "(IIIIII[FI)V", (void*)nAllocationSubData2D_f },
|
|
|
|
{"rsnAllocationRead", "(II[I)V", (void*)nAllocationRead_i },
|
|
|
|
{"rsnAllocationRead", "(II[F)V", (void*)nAllocationRead_f },
|
|
|
|
{"rsnAllocationGetType", "(II)I", (void*)nAllocationGetType},
|
2010-10-05 13:32:49 -07:00
|
|
|
{"rsnAllocationResize1D", "(III)V", (void*)nAllocationResize1D },
|
|
|
|
{"rsnAllocationResize2D", "(IIII)V", (void*)nAllocationResize2D },
|
2010-08-17 16:25:41 -07:00
|
|
|
|
|
|
|
{"rsnAdapter1DBindAllocation", "(III)V", (void*)nAdapter1DBindAllocation },
|
|
|
|
{"rsnAdapter1DSetConstraint", "(IIII)V", (void*)nAdapter1DSetConstraint },
|
|
|
|
{"rsnAdapter1DData", "(II[I)V", (void*)nAdapter1DData_i },
|
|
|
|
{"rsnAdapter1DData", "(II[F)V", (void*)nAdapter1DData_f },
|
|
|
|
{"rsnAdapter1DSubData", "(IIII[I)V", (void*)nAdapter1DSubData_i },
|
|
|
|
{"rsnAdapter1DSubData", "(IIII[F)V", (void*)nAdapter1DSubData_f },
|
|
|
|
{"rsnAdapter1DCreate", "(I)I", (void*)nAdapter1DCreate },
|
|
|
|
|
|
|
|
{"rsnAdapter2DBindAllocation", "(III)V", (void*)nAdapter2DBindAllocation },
|
|
|
|
{"rsnAdapter2DSetConstraint", "(IIII)V", (void*)nAdapter2DSetConstraint },
|
|
|
|
{"rsnAdapter2DData", "(II[I)V", (void*)nAdapter2DData_i },
|
|
|
|
{"rsnAdapter2DData", "(II[F)V", (void*)nAdapter2DData_f },
|
|
|
|
{"rsnAdapter2DSubData", "(IIIIII[I)V", (void*)nAdapter2DSubData_i },
|
|
|
|
{"rsnAdapter2DSubData", "(IIIIII[F)V", (void*)nAdapter2DSubData_f },
|
|
|
|
{"rsnAdapter2DCreate", "(I)I", (void*)nAdapter2DCreate },
|
|
|
|
|
|
|
|
{"rsnScriptBindAllocation", "(IIII)V", (void*)nScriptBindAllocation },
|
|
|
|
{"rsnScriptSetTimeZone", "(II[B)V", (void*)nScriptSetTimeZone },
|
|
|
|
{"rsnScriptInvoke", "(III)V", (void*)nScriptInvoke },
|
|
|
|
{"rsnScriptInvokeV", "(III[B)V", (void*)nScriptInvokeV },
|
|
|
|
{"rsnScriptSetVarI", "(IIII)V", (void*)nScriptSetVarI },
|
2010-10-11 10:54:21 -07:00
|
|
|
{"rsnScriptSetVarJ", "(IIIJ)V", (void*)nScriptSetVarJ },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnScriptSetVarF", "(IIIF)V", (void*)nScriptSetVarF },
|
2010-09-20 17:20:30 -07:00
|
|
|
{"rsnScriptSetVarD", "(IIID)V", (void*)nScriptSetVarD },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnScriptSetVarV", "(III[B)V", (void*)nScriptSetVarV },
|
|
|
|
|
|
|
|
{"rsnScriptCBegin", "(I)V", (void*)nScriptCBegin },
|
|
|
|
{"rsnScriptCSetScript", "(I[BII)V", (void*)nScriptCSetScript },
|
|
|
|
{"rsnScriptCCreate", "(I)I", (void*)nScriptCCreate },
|
|
|
|
|
|
|
|
{"rsnProgramStoreBegin", "(III)V", (void*)nProgramStoreBegin },
|
|
|
|
{"rsnProgramStoreDepthFunc", "(II)V", (void*)nProgramStoreDepthFunc },
|
|
|
|
{"rsnProgramStoreDepthMask", "(IZ)V", (void*)nProgramStoreDepthMask },
|
|
|
|
{"rsnProgramStoreColorMask", "(IZZZZ)V", (void*)nProgramStoreColorMask },
|
|
|
|
{"rsnProgramStoreBlendFunc", "(III)V", (void*)nProgramStoreBlendFunc },
|
|
|
|
{"rsnProgramStoreDither", "(IZ)V", (void*)nProgramStoreDither },
|
|
|
|
{"rsnProgramStoreCreate", "(I)I", (void*)nProgramStoreCreate },
|
|
|
|
|
|
|
|
{"rsnProgramBindConstants", "(IIII)V", (void*)nProgramBindConstants },
|
|
|
|
{"rsnProgramBindTexture", "(IIII)V", (void*)nProgramBindTexture },
|
|
|
|
{"rsnProgramBindSampler", "(IIII)V", (void*)nProgramBindSampler },
|
|
|
|
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnProgramFragmentCreate", "(ILjava/lang/String;[I)I", (void*)nProgramFragmentCreate },
|
2010-08-17 16:25:41 -07:00
|
|
|
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnProgramRasterCreate", "(IZZZ)I", (void*)nProgramRasterCreate },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnProgramRasterSetLineWidth", "(IIF)V", (void*)nProgramRasterSetLineWidth },
|
|
|
|
{"rsnProgramRasterSetCullMode", "(III)V", (void*)nProgramRasterSetCullMode },
|
|
|
|
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnProgramVertexCreate", "(ILjava/lang/String;[I)I", (void*)nProgramVertexCreate },
|
2010-08-17 16:25:41 -07:00
|
|
|
|
|
|
|
{"rsnContextBindRootScript", "(II)V", (void*)nContextBindRootScript },
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnContextBindProgramStore", "(II)V", (void*)nContextBindProgramStore },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnContextBindProgramFragment", "(II)V", (void*)nContextBindProgramFragment },
|
|
|
|
{"rsnContextBindProgramVertex", "(II)V", (void*)nContextBindProgramVertex },
|
|
|
|
{"rsnContextBindProgramRaster", "(II)V", (void*)nContextBindProgramRaster },
|
|
|
|
|
|
|
|
{"rsnSamplerBegin", "(I)V", (void*)nSamplerBegin },
|
|
|
|
{"rsnSamplerSet", "(III)V", (void*)nSamplerSet },
|
2010-09-30 11:36:37 -07:00
|
|
|
{"rsnSamplerSet2", "(IIF)V", (void*)nSamplerSet2 },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnSamplerCreate", "(I)I", (void*)nSamplerCreate },
|
|
|
|
|
|
|
|
{"rsnMeshCreate", "(III)I", (void*)nMeshCreate },
|
|
|
|
{"rsnMeshBindVertex", "(IIII)V", (void*)nMeshBindVertex },
|
|
|
|
{"rsnMeshBindIndex", "(IIIII)V", (void*)nMeshBindIndex },
|
2010-11-08 15:10:52 -08:00
|
|
|
{"rsnMeshInitVertexAttribs", "(II)V", (void*)nMeshInitVertexAttribs },
|
2010-08-17 16:25:41 -07:00
|
|
|
|
|
|
|
{"rsnMeshGetVertexBufferCount", "(II)I", (void*)nMeshGetVertexBufferCount },
|
|
|
|
{"rsnMeshGetIndexCount", "(II)I", (void*)nMeshGetIndexCount },
|
2010-09-23 16:16:33 -07:00
|
|
|
{"rsnMeshGetVertices", "(II[II)V", (void*)nMeshGetVertices },
|
2010-08-17 16:25:41 -07:00
|
|
|
{"rsnMeshGetIndices", "(II[I[II)V", (void*)nMeshGetIndices },
|
2010-07-12 15:50:32 -07:00
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static int registerFuncs(JNIEnv *_env)
|
|
|
|
{
|
|
|
|
return android::AndroidRuntime::registerNativeMethods(
|
|
|
|
_env, classPathName, methods, NELEM(methods));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
jint JNI_OnLoad(JavaVM* vm, void* reserved)
|
|
|
|
{
|
|
|
|
JNIEnv* env = NULL;
|
|
|
|
jint result = -1;
|
|
|
|
|
|
|
|
if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
|
|
|
|
LOGE("ERROR: GetEnv failed\n");
|
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
assert(env != NULL);
|
|
|
|
|
|
|
|
if (registerFuncs(env) < 0) {
|
|
|
|
LOGE("ERROR: MediaPlayer native registration failed\n");
|
|
|
|
goto bail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* success -- return valid version number */
|
|
|
|
result = JNI_VERSION_1_4;
|
|
|
|
|
|
|
|
bail:
|
|
|
|
return result;
|
|
|
|
}
|
2010-07-12 15:50:32 -07:00
|
|
|
|