blob: a69a45711500d951811decaa95a0015b6b988ba1 [file] [log] [blame]
John Reck52244ff2014-05-01 21:27:37 -07001/*
2 * Copyright (C) 20014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "jni.h"
18#include "GraphicsJNI.h"
Behdad Esfahbod6ba30b82014-07-15 16:22:32 -040019#include "Paint.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080020#include <core_jni_helpers.h>
John Reck52244ff2014-05-01 21:27:37 -070021
John Reck9fa40712014-05-09 15:26:59 -070022#include <utils/RefBase.h>
John Reck52244ff2014-05-01 21:27:37 -070023#include <CanvasProperty.h>
24
25namespace android {
26
John Reck52244ff2014-05-01 21:27:37 -070027#ifdef USE_OPENGL_RENDERER
Andreas Gampeed6b9df2014-11-20 22:02:20 -080028static const bool kUseOpenGLRenderer = true;
29#else
30static const bool kUseOpenGLRenderer = false;
31#endif
32
33using namespace uirenderer;
John Reck52244ff2014-05-01 21:27:37 -070034
John Reck52244ff2014-05-01 21:27:37 -070035static jlong createFloat(JNIEnv* env, jobject clazz, jfloat initialValue) {
John Reck9fa40712014-05-09 15:26:59 -070036 return reinterpret_cast<jlong>(new CanvasPropertyPrimitive(initialValue));
John Reck52244ff2014-05-01 21:27:37 -070037}
38
39static jlong createPaint(JNIEnv* env, jobject clazz, jlong paintPtr) {
Behdad Esfahbod6ba30b82014-07-15 16:22:32 -040040 const Paint* paint = reinterpret_cast<const Paint*>(paintPtr);
John Reck9fa40712014-05-09 15:26:59 -070041 return reinterpret_cast<jlong>(new CanvasPropertyPaint(*paint));
John Reck52244ff2014-05-01 21:27:37 -070042}
43
John Reck52244ff2014-05-01 21:27:37 -070044// ----------------------------------------------------------------------------
45// JNI Glue
46// ----------------------------------------------------------------------------
47
John Reck52244ff2014-05-01 21:27:37 -070048static JNINativeMethod gMethods[] = {
John Reck52244ff2014-05-01 21:27:37 -070049 { "nCreateFloat", "(F)J", (void*) createFloat },
50 { "nCreatePaint", "(J)J", (void*) createPaint },
John Reck52244ff2014-05-01 21:27:37 -070051};
52
53int register_android_graphics_CanvasProperty(JNIEnv* env) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -080054 if (kUseOpenGLRenderer) {
55 return RegisterMethodsOrDie(env, "android/graphics/CanvasProperty", gMethods,
56 NELEM(gMethods));
57 }
58 return 0;
John Reck52244ff2014-05-01 21:27:37 -070059}
60
61}; // namespace android