blob: 728bc1c3677e177a949ed7ea31c9b07420be4469 [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
Andreas Gampeed6b9df2014-11-20 22:02:20 -080027using namespace uirenderer;
John Reck52244ff2014-05-01 21:27:37 -070028
John Reck52244ff2014-05-01 21:27:37 -070029static jlong createFloat(JNIEnv* env, jobject clazz, jfloat initialValue) {
John Reck9fa40712014-05-09 15:26:59 -070030 return reinterpret_cast<jlong>(new CanvasPropertyPrimitive(initialValue));
John Reck52244ff2014-05-01 21:27:37 -070031}
32
33static jlong createPaint(JNIEnv* env, jobject clazz, jlong paintPtr) {
Behdad Esfahbod6ba30b82014-07-15 16:22:32 -040034 const Paint* paint = reinterpret_cast<const Paint*>(paintPtr);
John Reck9fa40712014-05-09 15:26:59 -070035 return reinterpret_cast<jlong>(new CanvasPropertyPaint(*paint));
John Reck52244ff2014-05-01 21:27:37 -070036}
37
John Reck52244ff2014-05-01 21:27:37 -070038// ----------------------------------------------------------------------------
39// JNI Glue
40// ----------------------------------------------------------------------------
41
Daniel Micay76f6a862015-09-19 17:31:01 -040042static const JNINativeMethod gMethods[] = {
John Reck52244ff2014-05-01 21:27:37 -070043 { "nCreateFloat", "(F)J", (void*) createFloat },
44 { "nCreatePaint", "(J)J", (void*) createPaint },
John Reck52244ff2014-05-01 21:27:37 -070045};
46
47int register_android_graphics_CanvasProperty(JNIEnv* env) {
John Recka2732a22014-12-18 13:52:33 -080048 return RegisterMethodsOrDie(env, "android/graphics/CanvasProperty", gMethods,
49 NELEM(gMethods));
John Reck52244ff2014-05-01 21:27:37 -070050}
51
52}; // namespace android