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>
|
|
|
|
|
|
|
|
#include <ui/Surface.h>
|
|
|
|
|
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"
|
|
|
|
|
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-08-12 17:54:11 -07:00
|
|
|
|
|
|
|
jclass typeClass = _env->FindClass("android/renderscript/Type");
|
|
|
|
gTypeNativeCache = _env->GetFieldID(typeClass, "mNativeCache", "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
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
nAssignName(JNIEnv *_env, jobject _this, jint obj, jbyteArray str)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
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);
|
|
|
|
}
|
|
|
|
|
2009-08-18 14:14:24 -07:00
|
|
|
static void
|
|
|
|
nObjDestroy(JNIEnv *_env, jobject _this, jint obj)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nObjDestroy, con(%p) obj(%p)", con, (void *)obj);
|
|
|
|
rsObjDestroy(con, (void *)obj);
|
|
|
|
}
|
|
|
|
|
2009-08-18 17:07:09 -07:00
|
|
|
static void
|
|
|
|
nObjDestroyOOB(JNIEnv *_env, jobject _this, jint obj)
|
|
|
|
{
|
|
|
|
// This function only differs from nObjDestroy in that it calls the
|
|
|
|
// special Out Of Band version of ObjDestroy which is thread safe.
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nObjDestroyOOB, con(%p) obj(%p)", con, (void *)obj);
|
|
|
|
rsObjDestroyOOB(con, (void *)obj);
|
|
|
|
}
|
2009-06-10 15:04:38 -07:00
|
|
|
|
2009-07-08 18:01:53 -07:00
|
|
|
static jint
|
|
|
|
nFileOpen(JNIEnv *_env, jobject _this, jbyteArray str)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nFileOpen, con(%p)", con);
|
|
|
|
|
|
|
|
jint len = _env->GetArrayLength(str);
|
|
|
|
jbyte * cptr = (jbyte *) _env->GetPrimitiveArrayCritical(str, 0);
|
2009-08-17 18:35:48 -07:00
|
|
|
jint ret = (jint)rsFileOpen(con, (const char *)cptr, len);
|
2009-07-08 18:01:53 -07:00
|
|
|
_env->ReleasePrimitiveArrayCritical(str, cptr, JNI_ABORT);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
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
|
2009-11-12 15:10:25 -08:00
|
|
|
nContextCreate(JNIEnv *_env, jobject _this, jint dev, jint ver, jboolean useDepth)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
LOG_API("nContextCreate");
|
2009-11-12 15:10:25 -08:00
|
|
|
return (jint)rsContextCreate((RsDevice)dev, ver, useDepth);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-11-15 12:14:26 -08:00
|
|
|
static void
|
|
|
|
nContextSetPriority(JNIEnv *_env, jobject _this, jint p)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("ContextSetPriority, con(%p), priority(%i)", con, p);
|
|
|
|
rsContextSetPriority(con, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-11-03 13:58:36 -08:00
|
|
|
static void
|
2009-11-12 15:10:25 -08:00
|
|
|
nContextSetSurface(JNIEnv *_env, jobject _this, jint width, jint height, jobject wnd)
|
2009-11-03 13:58:36 -08:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
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 {
|
|
|
|
jclass surface_class = _env->FindClass("android/view/Surface");
|
|
|
|
jfieldID surfaceFieldID = _env->GetFieldID(surface_class, "mSurface", "I");
|
|
|
|
window = (Surface*)_env->GetIntField(wnd, surfaceFieldID);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
nContextDestroy(JNIEnv *_env, jobject _this, jint con)
|
|
|
|
{
|
|
|
|
LOG_API("nContextDestroy, con(%p)", (RsContext)con);
|
2009-11-17 17:26:46 -08:00
|
|
|
rsContextDestroy((RsContext)con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-11-17 17:26:46 -08:00
|
|
|
static void
|
|
|
|
nContextDump(JNIEnv *_env, jobject _this, jint bits)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nContextPause(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nContextPause, con(%p)", con);
|
|
|
|
rsContextPause(con);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nContextResume(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nContextResume, con(%p)", con);
|
|
|
|
rsContextResume(con);
|
|
|
|
}
|
|
|
|
|
2009-10-06 13:58:47 -07:00
|
|
|
static jint
|
|
|
|
nContextGetMessage(JNIEnv *_env, jobject _this, jintArray data, jboolean wait)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
jint len = _env->GetArrayLength(data);
|
|
|
|
LOG_API("nContextGetMessage, con(%p), len(%i)", con, len);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(data, NULL);
|
|
|
|
size_t receiveLen;
|
|
|
|
int id = rsContextGetMessage(con, ptr, &receiveLen, len * 4, wait);
|
|
|
|
if (!id && receiveLen) {
|
|
|
|
LOGE("message receive buffer too small. %i", receiveLen);
|
|
|
|
}
|
|
|
|
_env->ReleaseIntArrayElements(data, ptr, 0);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nContextInitToClient(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nContextInitToClient, con(%p)", con);
|
|
|
|
rsContextInitToClient(con);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nContextDeinitToClient(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nContextDeinitToClient, con(%p)", con);
|
|
|
|
rsContextDeinitToClient(con);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
|
|
|
nElementBegin(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nElementBegin, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsElementBegin(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2009-09-21 19:41:04 -07:00
|
|
|
nElementAdd(JNIEnv *_env, jobject _this, jint kind, jint type, jboolean norm, jint bits, jstring name)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-08-12 17:54:11 -07:00
|
|
|
const char* n = NULL;
|
|
|
|
if (name) {
|
|
|
|
n = _env->GetStringUTFChars(name, NULL);
|
|
|
|
}
|
2009-05-22 14:03:28 -07:00
|
|
|
LOG_API("nElementAdd, con(%p), kind(%i), type(%i), norm(%i), bits(%i)", con, kind, type, norm, bits);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsElementAdd(con, (RsDataKind)kind, (RsDataType)type, norm != 0, (size_t)bits, n);
|
2009-08-12 17:54:11 -07:00
|
|
|
if (n) {
|
|
|
|
_env->ReleaseStringUTFChars(name, n);
|
|
|
|
}
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nElementCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nElementCreate, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsElementCreate(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
nTypeBegin(JNIEnv *_env, jobject _this, jint eID)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nTypeBegin, con(%p) e(%p)", con, (RsElement)eID);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsTypeBegin(con, (RsElement)eID);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nTypeAdd(JNIEnv *_env, jobject _this, jint dim, jint val)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nTypeAdd, con(%p) dim(%i), val(%i)", con, dim, val);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsTypeAdd(con, (RsDimension)dim, val);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nTypeCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nTypeCreate, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsTypeCreate(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-08-12 17:54:11 -07:00
|
|
|
static void * SF_LoadInt(JNIEnv *_env, jobject _obj, jfieldID _field, void *buffer)
|
|
|
|
{
|
|
|
|
((int32_t *)buffer)[0] = _env->GetIntField(_obj, _field);
|
|
|
|
return ((uint8_t *)buffer) + 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * SF_LoadShort(JNIEnv *_env, jobject _obj, jfieldID _field, void *buffer)
|
|
|
|
{
|
|
|
|
((int16_t *)buffer)[0] = _env->GetShortField(_obj, _field);
|
|
|
|
return ((uint8_t *)buffer) + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * SF_LoadByte(JNIEnv *_env, jobject _obj, jfieldID _field, void *buffer)
|
|
|
|
{
|
|
|
|
((int8_t *)buffer)[0] = _env->GetByteField(_obj, _field);
|
|
|
|
return ((uint8_t *)buffer) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * SF_LoadFloat(JNIEnv *_env, jobject _obj, jfieldID _field, void *buffer)
|
|
|
|
{
|
|
|
|
((float *)buffer)[0] = _env->GetFloatField(_obj, _field);
|
|
|
|
return ((uint8_t *)buffer) + 4;
|
|
|
|
}
|
|
|
|
|
2009-09-15 12:39:22 -07:00
|
|
|
static void * SF_SaveInt(JNIEnv *_env, jobject _obj, jfieldID _field, void *buffer)
|
|
|
|
{
|
|
|
|
_env->SetIntField(_obj, _field, ((int32_t *)buffer)[0]);
|
|
|
|
return ((uint8_t *)buffer) + 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * SF_SaveShort(JNIEnv *_env, jobject _obj, jfieldID _field, void *buffer)
|
|
|
|
{
|
|
|
|
_env->SetShortField(_obj, _field, ((int16_t *)buffer)[0]);
|
|
|
|
return ((uint8_t *)buffer) + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * SF_SaveByte(JNIEnv *_env, jobject _obj, jfieldID _field, void *buffer)
|
|
|
|
{
|
|
|
|
_env->SetByteField(_obj, _field, ((int8_t *)buffer)[0]);
|
|
|
|
return ((uint8_t *)buffer) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * SF_SaveFloat(JNIEnv *_env, jobject _obj, jfieldID _field, void *buffer)
|
|
|
|
{
|
|
|
|
_env->SetFloatField(_obj, _field, ((float *)buffer)[0]);
|
|
|
|
return ((uint8_t *)buffer) + 4;
|
|
|
|
}
|
|
|
|
|
2009-08-12 17:54:11 -07:00
|
|
|
struct TypeFieldCache {
|
|
|
|
jfieldID field;
|
|
|
|
int bits;
|
|
|
|
void * (*ptr)(JNIEnv *, jobject, jfieldID, void *buffer);
|
2009-09-15 12:39:22 -07:00
|
|
|
void * (*readPtr)(JNIEnv *, jobject, jfieldID, void *buffer);
|
2009-08-12 17:54:11 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct TypeCache {
|
|
|
|
int fieldCount;
|
|
|
|
int size;
|
|
|
|
TypeFieldCache fields[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
//{"nTypeFinalDestroy", "(Landroid/renderscript/Type;)V", (void*)nTypeFinalDestroy },
|
|
|
|
static void
|
|
|
|
nTypeFinalDestroy(JNIEnv *_env, jobject _this, jobject _type)
|
|
|
|
{
|
|
|
|
TypeCache *tc = (TypeCache *)_env->GetIntField(_type, gTypeNativeCache);
|
|
|
|
free(tc);
|
|
|
|
}
|
|
|
|
|
|
|
|
// native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs);
|
|
|
|
static void
|
|
|
|
nTypeSetupFields(JNIEnv *_env, jobject _this, jobject _type, jintArray _types, jintArray _bits, jobjectArray _IDs)
|
|
|
|
{
|
|
|
|
int fieldCount = _env->GetArrayLength(_types);
|
|
|
|
size_t structSize = sizeof(TypeCache) + (sizeof(TypeFieldCache) * (fieldCount-1));
|
|
|
|
TypeCache *tc = (TypeCache *)malloc(structSize);
|
|
|
|
memset(tc, 0, structSize);
|
|
|
|
|
|
|
|
TypeFieldCache *tfc = &tc->fields[0];
|
|
|
|
tc->fieldCount = fieldCount;
|
|
|
|
_env->SetIntField(_type, gTypeNativeCache, (jint)tc);
|
|
|
|
|
|
|
|
jint *fType = _env->GetIntArrayElements(_types, NULL);
|
|
|
|
jint *fBits = _env->GetIntArrayElements(_bits, NULL);
|
|
|
|
for (int ct=0; ct < fieldCount; ct++) {
|
|
|
|
jobject field = _env->GetObjectArrayElement(_IDs, ct);
|
|
|
|
tfc[ct].field = _env->FromReflectedField(field);
|
|
|
|
tfc[ct].bits = fBits[ct];
|
|
|
|
|
|
|
|
switch(fType[ct]) {
|
|
|
|
case RS_TYPE_FLOAT:
|
|
|
|
tfc[ct].ptr = SF_LoadFloat;
|
2009-09-15 12:39:22 -07:00
|
|
|
tfc[ct].readPtr = SF_SaveFloat;
|
2009-08-12 17:54:11 -07:00
|
|
|
break;
|
|
|
|
case RS_TYPE_UNSIGNED:
|
|
|
|
case RS_TYPE_SIGNED:
|
|
|
|
switch(tfc[ct].bits) {
|
2009-09-15 12:39:22 -07:00
|
|
|
case 32:
|
|
|
|
tfc[ct].ptr = SF_LoadInt;
|
|
|
|
tfc[ct].readPtr = SF_SaveInt;
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
tfc[ct].ptr = SF_LoadShort;
|
|
|
|
tfc[ct].readPtr = SF_SaveShort;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
tfc[ct].ptr = SF_LoadByte;
|
|
|
|
tfc[ct].readPtr = SF_SaveByte;
|
|
|
|
break;
|
2009-08-12 17:54:11 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tc->size += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
_env->ReleaseIntArrayElements(_types, fType, JNI_ABORT);
|
|
|
|
_env->ReleaseIntArrayElements(_bits, fBits, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nAllocationCreateTyped(JNIEnv *_env, jobject _this, jint e)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nAllocationCreateTyped, con(%p), e(%p)", con, (RsElement)e);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint) rsAllocationCreateTyped(con, (RsElement)e);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nAllocationUploadToTexture(JNIEnv *_env, jobject _this, jint a, jint mip)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nAllocationUploadToTexture, con(%p), a(%p), mip(%i)", con, (RsAllocation)a, mip);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsAllocationUploadToTexture(con, (RsAllocation)a, mip);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-08-27 20:23:34 -07:00
|
|
|
static void
|
|
|
|
nAllocationUploadToBufferObject(JNIEnv *_env, jobject _this, jint a)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
2009-06-01 17:45:53 -07:00
|
|
|
nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, jint dstFmt, jboolean genMips, jobject jbitmap)
|
2009-05-27 14:45:32 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
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();
|
2009-09-04 14:42:41 -07:00
|
|
|
jint id = (jint)rsAllocationCreateFromBitmap(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
|
|
|
|
2009-08-31 14:06:43 -07:00
|
|
|
static int
|
|
|
|
nAllocationCreateFromAssetStream(JNIEnv *_env, jobject _this, jint dstFmt, jboolean genMips, jint native_asset)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
|
|
|
|
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();
|
2009-09-04 14:42:41 -07:00
|
|
|
jint id = (jint)rsAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
|
2009-08-31 14:06:43 -07:00
|
|
|
bitmap.unlockPixels();
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-28 12:02:16 -07:00
|
|
|
static int
|
|
|
|
nAllocationCreateFromBitmapBoxed(JNIEnv *_env, jobject _this, jint dstFmt, jboolean genMips, jobject jbitmap)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
SkBitmap const * nativeBitmap =
|
|
|
|
(SkBitmap const *)_env->GetIntField(jbitmap, gNativeBitmapID);
|
|
|
|
const SkBitmap& bitmap(*nativeBitmap);
|
|
|
|
SkBitmap::Config config = bitmap.getConfig();
|
|
|
|
|
2009-09-04 14:42:41 -07:00
|
|
|
RsElement e = SkBitmapToPredefined(config);
|
2009-07-28 12:02:16 -07:00
|
|
|
|
2009-09-04 14:42:41 -07:00
|
|
|
if (e) {
|
2009-07-28 12:02:16 -07:00
|
|
|
bitmap.lockPixels();
|
|
|
|
const int w = bitmap.width();
|
|
|
|
const int h = bitmap.height();
|
|
|
|
const void* ptr = bitmap.getPixels();
|
2009-09-04 14:42:41 -07:00
|
|
|
jint id = (jint)rsAllocationCreateFromBitmapBoxed(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
|
2009-07-28 12:02:16 -07:00
|
|
|
bitmap.unlockPixels();
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-27 14:45:32 -07:00
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2009-09-21 19:41:04 -07:00
|
|
|
nAllocationSubData1D_i(JNIEnv *_env, jobject _this, jint alloc, jint offset, jint count, jintArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
2009-09-21 19:41:04 -07:00
|
|
|
nAllocationSubData1D_s(JNIEnv *_env, jobject _this, jint alloc, jint offset, jint count, jshortArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
2009-09-21 19:41:04 -07:00
|
|
|
nAllocationSubData1D_b(JNIEnv *_env, jobject _this, jint alloc, jint offset, jint count, jbyteArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
2009-08-27 20:23:34 -07:00
|
|
|
nAllocationSubData1D_f(JNIEnv *_env, jobject _this, jint alloc, jint offset, jint count, jfloatArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-27 20:23:34 -07:00
|
|
|
nAllocationSubData2D_i(JNIEnv *_env, jobject _this, jint alloc, jint xoff, jint yoff, jint w, jint h, jintArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
2009-08-27 20:23:34 -07:00
|
|
|
nAllocationSubData2D_f(JNIEnv *_env, jobject _this, jint alloc, jint xoff, jint yoff, jint w, jint h, jfloatArray data, int sizeBytes)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAllocationRead_i(JNIEnv *_env, jobject _this, jint alloc, jintArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAllocationRead_f(JNIEnv *_env, jobject _this, jint alloc, jfloatArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
|
|
|
|
2009-08-12 17:54:11 -07:00
|
|
|
//{"nAllocationDataFromObject", "(ILandroid/renderscript/Type;Ljava/lang/Object;)V", (void*)nAllocationDataFromObject },
|
|
|
|
static void
|
2009-09-03 15:43:13 -07:00
|
|
|
nAllocationSubDataFromObject(JNIEnv *_env, jobject _this, jint alloc, jobject _type, jint offset, jobject _o)
|
2009-08-12 17:54:11 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nAllocationDataFromObject con(%p), alloc(%p)", con, (RsAllocation)alloc);
|
|
|
|
|
|
|
|
const TypeCache *tc = (TypeCache *)_env->GetIntField(_type, gTypeNativeCache);
|
|
|
|
|
|
|
|
void * bufAlloc = malloc(tc->size);
|
|
|
|
void * buf = bufAlloc;
|
|
|
|
for (int ct=0; ct < tc->fieldCount; ct++) {
|
|
|
|
const TypeFieldCache *tfc = &tc->fields[ct];
|
|
|
|
buf = tfc->ptr(_env, _o, tfc->field, buf);
|
|
|
|
}
|
2009-09-03 15:43:13 -07:00
|
|
|
rsAllocation1DSubData(con, (RsAllocation)alloc, offset, 1, bufAlloc, tc->size);
|
2009-09-15 12:39:22 -07:00
|
|
|
free(bufAlloc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nAllocationSubReadFromObject(JNIEnv *_env, jobject _this, jint alloc, jobject _type, jint offset, jobject _o)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nAllocationReadFromObject con(%p), alloc(%p)", con, (RsAllocation)alloc);
|
|
|
|
|
|
|
|
assert(offset == 0);
|
|
|
|
|
|
|
|
const TypeCache *tc = (TypeCache *)_env->GetIntField(_type, gTypeNativeCache);
|
|
|
|
|
|
|
|
void * bufAlloc = malloc(tc->size);
|
|
|
|
void * buf = bufAlloc;
|
|
|
|
rsAllocationRead(con, (RsAllocation)alloc, bufAlloc);
|
|
|
|
|
|
|
|
for (int ct=0; ct < tc->fieldCount; ct++) {
|
|
|
|
const TypeFieldCache *tfc = &tc->fields[ct];
|
|
|
|
buf = tfc->readPtr(_env, _o, tfc->field, buf);
|
|
|
|
}
|
2009-08-12 17:54:11 -07:00
|
|
|
free(bufAlloc);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
// -----------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
nAdapter1DBindAllocation(JNIEnv *_env, jobject _this, jint adapter, jint alloc)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter1DSetConstraint(JNIEnv *_env, jobject _this, jint adapter, jint dim, jint value)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter1DData_i(JNIEnv *_env, jobject _this, jint adapter, jintArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter1DSubData_i(JNIEnv *_env, jobject _this, jint adapter, jint offset, jint count, jintArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter1DData_f(JNIEnv *_env, jobject _this, jint adapter, jfloatArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter1DSubData_f(JNIEnv *_env, jobject _this, jint adapter, jint offset, jint count, jfloatArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter1DCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter2DBindAllocation(JNIEnv *_env, jobject _this, jint adapter, jint alloc)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter2DSetConstraint(JNIEnv *_env, jobject _this, jint adapter, jint dim, jint value)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter2DData_i(JNIEnv *_env, jobject _this, jint adapter, jintArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter2DData_f(JNIEnv *_env, jobject _this, jint adapter, jfloatArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter2DSubData_i(JNIEnv *_env, jobject _this, jint adapter, jint xoff, jint yoff, jint w, jint h, jintArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter2DSubData_f(JNIEnv *_env, jobject _this, jint adapter, jint xoff, jint yoff, jint w, jint h, jfloatArray data)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nAdapter2DCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nScriptBindAllocation(JNIEnv *_env, jobject _this, jint script, jint alloc, jint slot)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-04 16:58:20 -07:00
|
|
|
nScriptSetClearColor(JNIEnv *_env, jobject _this, jint script, jfloat r, jfloat g, jfloat b, jfloat a)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-08-27 20:23:34 -07:00
|
|
|
LOG_API("nScriptSetClearColor, con(%p), s(%p), r(%f), g(%f), b(%f), a(%f)", con, (void *)script, r, g, b, a);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptSetClearColor(con, (RsScript)script, r, g, b, a);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-04 16:58:20 -07:00
|
|
|
nScriptSetClearDepth(JNIEnv *_env, jobject _this, jint script, jfloat d)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-08-27 20:23:34 -07:00
|
|
|
LOG_API("nScriptCSetClearDepth, con(%p), s(%p), depth(%f)", con, (void *)script, d);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptSetClearDepth(con, (RsScript)script, d);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-04 16:58:20 -07:00
|
|
|
nScriptSetClearStencil(JNIEnv *_env, jobject _this, jint script, jint stencil)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-08-27 20:23:34 -07:00
|
|
|
LOG_API("nScriptCSetClearStencil, con(%p), s(%p), stencil(%i)", con, (void *)script, stencil);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptSetClearStencil(con, (RsScript)script, stencil);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-07-30 18:45:01 -07:00
|
|
|
static void
|
2009-08-04 16:58:20 -07:00
|
|
|
nScriptSetTimeZone(JNIEnv *_env, jobject _this, jint script, jbyteArray timeZone)
|
2009-07-30 18:45:01 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
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
|
2009-08-17 13:56:09 -07:00
|
|
|
nScriptSetType(JNIEnv *_env, jobject _this, jint type, jboolean writable, jstring _str, jint slot)
|
2009-08-04 16:58:20 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-08-17 13:56:09 -07:00
|
|
|
LOG_API("nScriptCAddType, con(%p), type(%p), writable(%i), slot(%i)", con, (RsType)type, writable, slot);
|
2009-08-13 12:59:04 -07:00
|
|
|
const char* n = NULL;
|
|
|
|
if (_str) {
|
|
|
|
n = _env->GetStringUTFChars(_str, NULL);
|
|
|
|
}
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptSetType(con, (RsType)type, slot, writable, n);
|
2009-08-13 12:59:04 -07:00
|
|
|
if (n) {
|
|
|
|
_env->ReleaseStringUTFChars(_str, n);
|
|
|
|
}
|
2009-08-04 16:58:20 -07:00
|
|
|
}
|
|
|
|
|
2009-09-16 15:04:38 -07:00
|
|
|
static void
|
|
|
|
nScriptSetInvoke(JNIEnv *_env, jobject _this, jstring _str, jint slot)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nScriptSetInvoke, con(%p)", con);
|
|
|
|
const char* n = NULL;
|
|
|
|
if (_str) {
|
|
|
|
n = _env->GetStringUTFChars(_str, NULL);
|
|
|
|
}
|
|
|
|
rsScriptSetInvoke(con, n, slot);
|
|
|
|
if (n) {
|
|
|
|
_env->ReleaseStringUTFChars(_str, n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nScriptInvoke(JNIEnv *_env, jobject _this, jint obj, jint slot)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nScriptInvoke, con(%p), script(%p)", con, (void *)obj);
|
|
|
|
rsScriptInvoke(con, (RsScript)obj, slot);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2009-08-13 12:59:04 -07:00
|
|
|
nScriptSetRoot(JNIEnv *_env, jobject _this, jboolean isRoot)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-08-13 12:59:04 -07:00
|
|
|
LOG_API("nScriptCSetRoot, con(%p), isRoot(%i)", con, isRoot);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptSetRoot(con, isRoot);
|
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
|
2009-08-13 12:59:04 -07:00
|
|
|
nScriptCBegin(JNIEnv *_env, jobject _this)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
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
|
2009-05-28 13:38:16 -07:00
|
|
|
nScriptCSetScript(JNIEnv *_env, jobject _this, jbyteArray scriptRef,
|
|
|
|
jint offset, jint length)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nScriptCCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-08-09 22:57:44 -07:00
|
|
|
static void
|
|
|
|
nScriptCAddDefineI32(JNIEnv *_env, jobject _this, jstring name, jint value)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
const char* n = _env->GetStringUTFChars(name, NULL);
|
|
|
|
LOG_API("nScriptCAddDefineI32, con(%p) name(%s) value(%d)", con, n, value);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptCSetDefineI32(con, n, value);
|
2009-08-09 22:57:44 -07:00
|
|
|
_env->ReleaseStringUTFChars(name, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nScriptCAddDefineF(JNIEnv *_env, jobject _this, jstring name, jfloat value)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
const char* n = _env->GetStringUTFChars(name, NULL);
|
|
|
|
LOG_API("nScriptCAddDefineF, con(%p) name(%s) value(%f)", con, n, value);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsScriptCSetDefineF(con, n, value);
|
2009-08-09 22:57:44 -07:00
|
|
|
_env->ReleaseStringUTFChars(name, n);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramFragmentStoreBegin(JNIEnv *_env, jobject _this, jint in, jint out)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentStoreBegin, con(%p), in(%p), out(%p)", con, (RsElement)in, (RsElement)out);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsProgramFragmentStoreBegin(con, (RsElement)in, (RsElement)out);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramFragmentStoreDepthFunc(JNIEnv *_env, jobject _this, jint func)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentStoreDepthFunc, con(%p), func(%i)", con, func);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsProgramFragmentStoreDepthFunc(con, (RsDepthFunc)func);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramFragmentStoreDepthMask(JNIEnv *_env, jobject _this, jboolean enable)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentStoreDepthMask, con(%p), enable(%i)", con, enable);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsProgramFragmentStoreDepthMask(con, enable);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramFragmentStoreColorMask(JNIEnv *_env, jobject _this, jboolean r, jboolean g, jboolean b, jboolean a)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentStoreColorMask, con(%p), r(%i), g(%i), b(%i), a(%i)", con, r, g, b, a);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsProgramFragmentStoreColorMask(con, r, g, b, a);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramFragmentStoreBlendFunc(JNIEnv *_env, jobject _this, int src, int dst)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentStoreBlendFunc, con(%p), src(%i), dst(%i)", con, src, dst);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsProgramFragmentStoreBlendFunc(con, (RsBlendSrcFunc)src, (RsBlendDstFunc)dst);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramFragmentStoreDither(JNIEnv *_env, jobject _this, jboolean enable)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentStoreDither, con(%p), enable(%i)", con, enable);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsProgramFragmentStoreDither(con, enable);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nProgramFragmentStoreCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentStoreCreate, con(%p)", con);
|
2009-06-10 15:04:38 -07:00
|
|
|
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsProgramFragmentStoreCreate(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramBindConstants(JNIEnv *_env, jobject _this, jint vpv, jint slot, jint a)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2009-11-30 14:49:55 -08:00
|
|
|
static void
|
|
|
|
nProgramFragmentSetShader(JNIEnv *_env, jobject _this, jstring name)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
const char* n = _env->GetStringUTFChars(name, NULL);
|
|
|
|
LOG_API("nProgramFragmentSetShader, con(%p)", con);
|
|
|
|
rsProgramFragmentSetShader(con, n, _env->GetStringUTFLength(name));
|
|
|
|
_env->ReleaseStringUTFChars(name, n);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
static void
|
2009-08-20 16:10:36 -07:00
|
|
|
nProgramFragmentBegin(JNIEnv *_env, jobject _this, jint in, jint out, jboolean pointSpriteEnable)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-08-20 16:10:36 -07:00
|
|
|
LOG_API("nProgramFragmentBegin, con(%p), in(%p), out(%p) PointSprite(%i)", con, (RsElement)in, (RsElement)out, pointSpriteEnable);
|
|
|
|
rsProgramFragmentBegin(con, (RsElement)in, (RsElement)out, pointSpriteEnable);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramFragmentBindTexture(JNIEnv *_env, jobject _this, jint vpf, jint slot, jint a)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentBindTexture, con(%p), vpf(%p), slot(%i), a(%p)", con, (RsProgramFragment)vpf, slot, (RsAllocation)a);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsProgramFragmentBindTexture(con, (RsProgramFragment)vpf, slot, (RsAllocation)a);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramFragmentBindSampler(JNIEnv *_env, jobject _this, jint vpf, jint slot, jint a)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentBindSampler, con(%p), vpf(%p), slot(%i), a(%p)", con, (RsProgramFragment)vpf, slot, (RsSampler)a);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsProgramFragmentBindSampler(con, (RsProgramFragment)vpf, slot, (RsSampler)a);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-20 16:10:36 -07:00
|
|
|
nProgramFragmentSetSlot(JNIEnv *_env, jobject _this, jint slot, jboolean enable, jint env, jint vt)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-08-20 16:10:36 -07:00
|
|
|
LOG_API("nProgramFragmentSetType, con(%p), slot(%i), enable(%i), env(%i), vt(%p)", con, slot, enable, env, (RsType)vt);
|
|
|
|
rsProgramFragmentSetSlot(con, slot, enable, (RsTexEnvMode)env, (RsType)vt);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nProgramFragmentCreate(JNIEnv *_env, jobject _this, jint slot, jboolean enable)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramFragmentCreate, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsProgramFragmentCreate(con);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-06-11 14:46:10 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
static jint
|
|
|
|
nProgramVertexCreate(JNIEnv *_env, jobject _this, jboolean texMat)
|
2009-06-11 14:46:10 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
2009-12-15 12:58:36 -08:00
|
|
|
LOG_API("nProgramVertexCreate, con(%p), texMat(%i)", con, texMat);
|
|
|
|
return (jint)rsProgramVertexCreate(con, texMat);
|
2009-06-11 14:46:10 -07:00
|
|
|
}
|
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
static jint
|
|
|
|
nProgramVertexCreate2(JNIEnv *_env, jobject _this, jstring shader, jintArray params)
|
2009-06-11 14:46:10 -07:00
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
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
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
LOG_API("nProgramVertexCreate2, con(%p), shaderLen(%i), paramLen(%i)", con, shaderLen, paramLen);
|
2009-07-21 12:20:54 -07:00
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
jint ret = (jint)rsProgramVertexCreate2(con, shaderUTF, shaderLen, (uint32_t *)paramPtr, paramLen);
|
|
|
|
_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
|
|
|
|
nProgramRasterCreate(JNIEnv *_env, jobject _this, jint in, jint out,
|
|
|
|
jboolean pointSmooth, jboolean lineSmooth, jboolean pointSprite)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramRasterCreate, con(%p), in(%p), out(%p), pointSmooth(%i), lineSmooth(%i), pointSprite(%i)",
|
|
|
|
con, (RsElement)in, (RsElement)out, pointSmooth, lineSmooth, pointSprite);
|
|
|
|
return (jint)rsProgramRasterCreate(con, (RsElement)in, (RsElement)out, pointSmooth, lineSmooth, pointSprite);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramRasterSetPointSize(JNIEnv *_env, jobject _this, jint vpr, jfloat v)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramRasterSetPointSize, con(%p), vpf(%p), value(%f)", con, (RsProgramRaster)vpr, v);
|
|
|
|
rsProgramRasterSetPointSize(con, (RsProgramFragment)vpr, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nProgramRasterSetLineWidth(JNIEnv *_env, jobject _this, jint vpr, jfloat v)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nProgramRasterSetLineWidth, con(%p), vpf(%p), value(%f)", con, (RsProgramRaster)vpr, v);
|
|
|
|
rsProgramRasterSetLineWidth(con, (RsProgramFragment)vpr, v);
|
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
nContextBindRootScript(JNIEnv *_env, jobject _this, jint script)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nContextBindProgramFragmentStore(JNIEnv *_env, jobject _this, jint pfs)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nContextBindProgramFragmentStore, con(%p), pfs(%p)", con, (RsProgramFragmentStore)pfs);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsContextBindProgramFragmentStore(con, (RsProgramFragmentStore)pfs);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nContextBindProgramFragment(JNIEnv *_env, jobject _this, jint pf)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nContextBindProgramVertex(JNIEnv *_env, jobject _this, jint pf)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nContextBindProgramRaster(JNIEnv *_env, jobject _this, jint pf)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nContextBindProgramRaster, con(%p), pf(%p)", con, (RsProgramRaster)pf);
|
|
|
|
rsContextBindProgramRaster(con, (RsProgramRaster)pf);
|
|
|
|
}
|
|
|
|
|
2009-08-09 22:57:44 -07:00
|
|
|
static void
|
|
|
|
nContextAddDefineI32(JNIEnv *_env, jobject _this, jstring name, jint value)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
const char* n = _env->GetStringUTFChars(name, NULL);
|
|
|
|
LOG_API("nScriptCAddDefineI32, con(%p) name(%s) value(%d)", con, n, value);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsContextSetDefineI32(con, n, value);
|
2009-08-09 22:57:44 -07:00
|
|
|
_env->ReleaseStringUTFChars(name, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nContextAddDefineF(JNIEnv *_env, jobject _this, jstring name, jfloat value)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
const char* n = _env->GetStringUTFChars(name, NULL);
|
|
|
|
LOG_API("nScriptCAddDefineF, con(%p) name(%s) value(%f)", con, n, value);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsContextSetDefineF(con, n, value);
|
2009-08-09 22:57:44 -07:00
|
|
|
_env->ReleaseStringUTFChars(name, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-28 15:37:57 -07:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
nSamplerBegin(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
|
nSamplerSet(JNIEnv *_env, jobject _this, jint p, jint v)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nSamplerCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
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
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
nLightBegin(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nLightBegin, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsLightBegin(con);
|
2009-06-22 15:49:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nLightSetIsMono(JNIEnv *_env, jobject _this, jboolean isMono)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nLightSetIsMono, con(%p), isMono(%i)", con, isMono);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsLightSetMonochromatic(con, isMono);
|
2009-06-22 15:49:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nLightSetIsLocal(JNIEnv *_env, jobject _this, jboolean isLocal)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nLightSetIsLocal, con(%p), isLocal(%i)", con, isLocal);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsLightSetLocal(con, isLocal);
|
2009-06-22 15:49:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static jint
|
|
|
|
nLightCreate(JNIEnv *_env, jobject _this)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nLightCreate, con(%p)", con);
|
2009-08-17 18:35:48 -07:00
|
|
|
return (jint)rsLightCreate(con);
|
2009-06-22 15:49:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nLightSetColor(JNIEnv *_env, jobject _this, jint light, float r, float g, float b)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nLightSetColor, con(%p), light(%p), r(%f), g(%f), b(%f)", con, (RsLight)light, r, g, b);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsLightSetColor(con, (RsLight)light, r, g, b);
|
2009-06-22 15:49:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nLightSetPosition(JNIEnv *_env, jobject _this, jint light, float x, float y, float z)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nLightSetPosition, con(%p), light(%p), x(%f), y(%f), z(%f)", con, (RsLight)light, x, y, z);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsLightSetPosition(con, (RsLight)light, x, y, z);
|
2009-06-22 15:49:21 -07:00
|
|
|
}
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2009-08-09 17:01:55 -07:00
|
|
|
static jint
|
|
|
|
nSimpleMeshCreate(JNIEnv *_env, jobject _this, jint batchID, jint indexID, jintArray vtxIDs, jint primID)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
jint len = _env->GetArrayLength(vtxIDs);
|
|
|
|
LOG_API("nSimpleMeshCreate, con(%p), batchID(%i), indexID(%i), vtxIDs.len(%i), primID(%i)",
|
|
|
|
con, batchID, indexID, len, primID);
|
|
|
|
jint *ptr = _env->GetIntArrayElements(vtxIDs, NULL);
|
2009-08-17 18:35:48 -07:00
|
|
|
int id = (int)rsSimpleMeshCreate(con, (void *)batchID, (void *)indexID, (void **)ptr, len, primID);
|
2009-08-09 17:01:55 -07:00
|
|
|
_env->ReleaseIntArrayElements(vtxIDs, ptr, 0/*JNI_ABORT*/);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nSimpleMeshBindVertex(JNIEnv *_env, jobject _this, jint s, jint alloc, jint slot)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nSimpleMeshBindVertex, con(%p), SimpleMesh(%p), Alloc(%p), slot(%i)", con, (RsSimpleMesh)s, (RsAllocation)alloc, slot);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsSimpleMeshBindVertex(con, (RsSimpleMesh)s, (RsAllocation)alloc, slot);
|
2009-08-09 17:01:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nSimpleMeshBindIndex(JNIEnv *_env, jobject _this, jint s, jint alloc)
|
|
|
|
{
|
|
|
|
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
|
|
|
|
LOG_API("nSimpleMeshBindIndex, con(%p), SimpleMesh(%p), Alloc(%p)", con, (RsSimpleMesh)s, (RsAllocation)alloc);
|
2009-08-17 18:35:48 -07:00
|
|
|
rsSimpleMeshBindIndex(con, (RsSimpleMesh)s, (RsAllocation)alloc);
|
2009-08-09 17:01:55 -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[] = {
|
|
|
|
{"_nInit", "()V", (void*)_nInit },
|
2009-09-04 14:42:41 -07:00
|
|
|
{"nInitElements", "(IIII)V", (void*)nInitElements },
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nDeviceCreate", "()I", (void*)nDeviceCreate },
|
|
|
|
{"nDeviceDestroy", "(I)V", (void*)nDeviceDestroy },
|
2009-09-23 13:57:02 -07:00
|
|
|
{"nDeviceSetConfig", "(III)V", (void*)nDeviceSetConfig },
|
2009-11-12 15:10:25 -08:00
|
|
|
{"nContextCreate", "(IIZ)I", (void*)nContextCreate },
|
2009-11-15 12:14:26 -08:00
|
|
|
{"nContextSetPriority", "(I)V", (void*)nContextSetPriority },
|
2009-11-12 15:10:25 -08:00
|
|
|
{"nContextSetSurface", "(IILandroid/view/Surface;)V", (void*)nContextSetSurface },
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nContextDestroy", "(I)V", (void*)nContextDestroy },
|
2009-11-17 17:26:46 -08:00
|
|
|
{"nContextDump", "(I)V", (void*)nContextDump },
|
2009-09-24 17:38:20 -07:00
|
|
|
{"nContextPause", "()V", (void*)nContextPause },
|
|
|
|
{"nContextResume", "()V", (void*)nContextResume },
|
2009-06-10 15:04:38 -07:00
|
|
|
{"nAssignName", "(I[B)V", (void*)nAssignName },
|
2009-08-18 14:14:24 -07:00
|
|
|
{"nObjDestroy", "(I)V", (void*)nObjDestroy },
|
2009-08-18 17:07:09 -07:00
|
|
|
{"nObjDestroyOOB", "(I)V", (void*)nObjDestroyOOB },
|
2009-10-06 13:58:47 -07:00
|
|
|
{"nContextGetMessage", "([IZ)I", (void*)nContextGetMessage },
|
|
|
|
{"nContextInitToClient", "()V", (void*)nContextInitToClient },
|
|
|
|
{"nContextDeinitToClient", "()V", (void*)nContextDeinitToClient },
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-07-08 18:01:53 -07:00
|
|
|
{"nFileOpen", "([B)I", (void*)nFileOpen },
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nElementBegin", "()V", (void*)nElementBegin },
|
2009-09-21 19:41:04 -07:00
|
|
|
{"nElementAdd", "(IIZILjava/lang/String;)V", (void*)nElementAdd },
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nElementCreate", "()I", (void*)nElementCreate },
|
|
|
|
|
|
|
|
{"nTypeBegin", "(I)V", (void*)nTypeBegin },
|
|
|
|
{"nTypeAdd", "(II)V", (void*)nTypeAdd },
|
|
|
|
{"nTypeCreate", "()I", (void*)nTypeCreate },
|
2009-08-12 17:54:11 -07:00
|
|
|
{"nTypeFinalDestroy", "(Landroid/renderscript/Type;)V", (void*)nTypeFinalDestroy },
|
|
|
|
{"nTypeSetupFields", "(Landroid/renderscript/Type;[I[I[Ljava/lang/reflect/Field;)V", (void*)nTypeSetupFields },
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
{"nAllocationCreateTyped", "(I)I", (void*)nAllocationCreateTyped },
|
2009-06-01 17:45:53 -07:00
|
|
|
{"nAllocationCreateFromBitmap", "(IZLandroid/graphics/Bitmap;)I", (void*)nAllocationCreateFromBitmap },
|
2009-08-27 20:23:34 -07:00
|
|
|
{"nAllocationCreateFromBitmapBoxed","(IZLandroid/graphics/Bitmap;)I", (void*)nAllocationCreateFromBitmapBoxed },
|
2009-08-31 14:06:43 -07:00
|
|
|
{"nAllocationCreateFromAssetStream","(IZI)I", (void*)nAllocationCreateFromAssetStream },
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nAllocationUploadToTexture", "(II)V", (void*)nAllocationUploadToTexture },
|
2009-08-27 20:23:34 -07:00
|
|
|
{"nAllocationUploadToBufferObject","(I)V", (void*)nAllocationUploadToBufferObject },
|
|
|
|
{"nAllocationSubData1D", "(III[II)V", (void*)nAllocationSubData1D_i },
|
2009-09-21 19:41:04 -07:00
|
|
|
{"nAllocationSubData1D", "(III[SI)V", (void*)nAllocationSubData1D_s },
|
|
|
|
{"nAllocationSubData1D", "(III[BI)V", (void*)nAllocationSubData1D_b },
|
2009-08-27 20:23:34 -07:00
|
|
|
{"nAllocationSubData1D", "(III[FI)V", (void*)nAllocationSubData1D_f },
|
|
|
|
{"nAllocationSubData2D", "(IIIII[II)V", (void*)nAllocationSubData2D_i },
|
|
|
|
{"nAllocationSubData2D", "(IIIII[FI)V", (void*)nAllocationSubData2D_f },
|
2009-08-10 14:55:26 -07:00
|
|
|
{"nAllocationRead", "(I[I)V", (void*)nAllocationRead_i },
|
|
|
|
{"nAllocationRead", "(I[F)V", (void*)nAllocationRead_f },
|
2009-09-03 15:43:13 -07:00
|
|
|
{"nAllocationSubDataFromObject", "(ILandroid/renderscript/Type;ILjava/lang/Object;)V", (void*)nAllocationSubDataFromObject },
|
2009-09-15 12:39:22 -07:00
|
|
|
{"nAllocationSubReadFromObject", "(ILandroid/renderscript/Type;ILjava/lang/Object;)V", (void*)nAllocationSubReadFromObject },
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
{"nAdapter1DBindAllocation", "(II)V", (void*)nAdapter1DBindAllocation },
|
|
|
|
{"nAdapter1DSetConstraint", "(III)V", (void*)nAdapter1DSetConstraint },
|
|
|
|
{"nAdapter1DData", "(I[I)V", (void*)nAdapter1DData_i },
|
|
|
|
{"nAdapter1DData", "(I[F)V", (void*)nAdapter1DData_f },
|
2009-08-03 16:03:08 -07:00
|
|
|
{"nAdapter1DSubData", "(III[I)V", (void*)nAdapter1DSubData_i },
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nAdapter1DSubData", "(III[F)V", (void*)nAdapter1DSubData_f },
|
|
|
|
{"nAdapter1DCreate", "()I", (void*)nAdapter1DCreate },
|
|
|
|
|
2009-08-03 16:03:08 -07:00
|
|
|
{"nAdapter2DBindAllocation", "(II)V", (void*)nAdapter2DBindAllocation },
|
|
|
|
{"nAdapter2DSetConstraint", "(III)V", (void*)nAdapter2DSetConstraint },
|
|
|
|
{"nAdapter2DData", "(I[I)V", (void*)nAdapter2DData_i },
|
|
|
|
{"nAdapter2DData", "(I[F)V", (void*)nAdapter2DData_f },
|
|
|
|
{"nAdapter2DSubData", "(IIIII[I)V", (void*)nAdapter2DSubData_i },
|
|
|
|
{"nAdapter2DSubData", "(IIIII[F)V", (void*)nAdapter2DSubData_f },
|
|
|
|
{"nAdapter2DCreate", "()I", (void*)nAdapter2DCreate },
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nScriptBindAllocation", "(III)V", (void*)nScriptBindAllocation },
|
2009-08-04 16:58:20 -07:00
|
|
|
{"nScriptSetClearColor", "(IFFFF)V", (void*)nScriptSetClearColor },
|
|
|
|
{"nScriptSetClearDepth", "(IF)V", (void*)nScriptSetClearDepth },
|
|
|
|
{"nScriptSetClearStencil", "(II)V", (void*)nScriptSetClearStencil },
|
|
|
|
{"nScriptSetTimeZone", "(I[B)V", (void*)nScriptSetTimeZone },
|
2009-08-17 13:56:09 -07:00
|
|
|
{"nScriptSetType", "(IZLjava/lang/String;I)V", (void*)nScriptSetType },
|
2009-08-13 12:59:04 -07:00
|
|
|
{"nScriptSetRoot", "(Z)V", (void*)nScriptSetRoot },
|
2009-09-16 15:04:38 -07:00
|
|
|
{"nScriptSetInvokable", "(Ljava/lang/String;I)V", (void*)nScriptSetInvoke },
|
|
|
|
{"nScriptInvoke", "(II)V", (void*)nScriptInvoke },
|
2009-08-04 16:58:20 -07:00
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nScriptCBegin", "()V", (void*)nScriptCBegin },
|
2009-05-28 13:38:16 -07:00
|
|
|
{"nScriptCSetScript", "([BII)V", (void*)nScriptCSetScript },
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nScriptCCreate", "()I", (void*)nScriptCCreate },
|
2009-08-09 22:57:44 -07:00
|
|
|
{"nScriptCAddDefineI32", "(Ljava/lang/String;I)V", (void*)nScriptCAddDefineI32 },
|
|
|
|
{"nScriptCAddDefineF", "(Ljava/lang/String;F)V", (void*)nScriptCAddDefineF },
|
2009-05-22 14:03:28 -07:00
|
|
|
|
|
|
|
{"nProgramFragmentStoreBegin", "(II)V", (void*)nProgramFragmentStoreBegin },
|
|
|
|
{"nProgramFragmentStoreDepthFunc", "(I)V", (void*)nProgramFragmentStoreDepthFunc },
|
|
|
|
{"nProgramFragmentStoreDepthMask", "(Z)V", (void*)nProgramFragmentStoreDepthMask },
|
|
|
|
{"nProgramFragmentStoreColorMask", "(ZZZZ)V", (void*)nProgramFragmentStoreColorMask },
|
|
|
|
{"nProgramFragmentStoreBlendFunc", "(II)V", (void*)nProgramFragmentStoreBlendFunc },
|
|
|
|
{"nProgramFragmentStoreDither", "(Z)V", (void*)nProgramFragmentStoreDither },
|
|
|
|
{"nProgramFragmentStoreCreate", "()I", (void*)nProgramFragmentStoreCreate },
|
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
{"nProgramBindConstants", "(III)V", (void*)nProgramBindConstants },
|
|
|
|
|
2009-08-20 16:10:36 -07:00
|
|
|
{"nProgramFragmentBegin", "(IIZ)V", (void*)nProgramFragmentBegin },
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nProgramFragmentBindTexture", "(III)V", (void*)nProgramFragmentBindTexture },
|
|
|
|
{"nProgramFragmentBindSampler", "(III)V", (void*)nProgramFragmentBindSampler },
|
2009-08-20 16:10:36 -07:00
|
|
|
{"nProgramFragmentSetSlot", "(IZII)V", (void*)nProgramFragmentSetSlot },
|
2009-11-30 14:49:55 -08:00
|
|
|
{"nProgramFragmentSetShader", "(Ljava/lang/String;)V", (void*)nProgramFragmentSetShader },
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nProgramFragmentCreate", "()I", (void*)nProgramFragmentCreate },
|
|
|
|
|
2009-09-23 13:57:02 -07:00
|
|
|
{"nProgramRasterCreate", "(IIZZZ)I", (void*)nProgramRasterCreate },
|
|
|
|
{"nProgramRasterSetPointSize", "(IF)V", (void*)nProgramRasterSetPointSize },
|
|
|
|
{"nProgramRasterSetLineWidth", "(IF)V", (void*)nProgramRasterSetLineWidth },
|
|
|
|
|
2009-12-15 12:58:36 -08:00
|
|
|
{"nProgramVertexCreate", "(Z)I", (void*)nProgramVertexCreate },
|
|
|
|
{"nProgramVertexCreate2", "(Ljava/lang/String;[I)I", (void*)nProgramVertexCreate2 },
|
2009-06-11 14:46:10 -07:00
|
|
|
|
2009-06-22 15:49:21 -07:00
|
|
|
{"nLightBegin", "()V", (void*)nLightBegin },
|
|
|
|
{"nLightSetIsMono", "(Z)V", (void*)nLightSetIsMono },
|
|
|
|
{"nLightSetIsLocal", "(Z)V", (void*)nLightSetIsLocal },
|
|
|
|
{"nLightCreate", "()I", (void*)nLightCreate },
|
|
|
|
{"nLightSetColor", "(IFFF)V", (void*)nLightSetColor },
|
|
|
|
{"nLightSetPosition", "(IFFF)V", (void*)nLightSetPosition },
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
{"nContextBindRootScript", "(I)V", (void*)nContextBindRootScript },
|
|
|
|
{"nContextBindProgramFragmentStore","(I)V", (void*)nContextBindProgramFragmentStore },
|
|
|
|
{"nContextBindProgramFragment", "(I)V", (void*)nContextBindProgramFragment },
|
2009-06-15 19:04:56 -07:00
|
|
|
{"nContextBindProgramVertex", "(I)V", (void*)nContextBindProgramVertex },
|
2009-09-23 13:57:02 -07:00
|
|
|
{"nContextBindProgramRaster", "(I)V", (void*)nContextBindProgramRaster },
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-05-28 15:37:57 -07:00
|
|
|
{"nSamplerBegin", "()V", (void*)nSamplerBegin },
|
|
|
|
{"nSamplerSet", "(II)V", (void*)nSamplerSet },
|
|
|
|
{"nSamplerCreate", "()I", (void*)nSamplerCreate },
|
|
|
|
|
2009-08-09 17:01:55 -07:00
|
|
|
{"nSimpleMeshCreate", "(II[II)I", (void*)nSimpleMeshCreate },
|
|
|
|
{"nSimpleMeshBindVertex", "(III)V", (void*)nSimpleMeshBindVertex },
|
|
|
|
{"nSimpleMeshBindIndex", "(II)V", (void*)nSimpleMeshBindIndex },
|
|
|
|
|
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;
|
|
|
|
}
|