John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 17 | #include "GraphicsJNI.h" |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 18 | |
sergeyv | dccca44 | 2016-03-21 15:38:21 -0700 | [diff] [blame] | 19 | #include <hwui/Paint.h> |
John Reck | 9fa4071 | 2014-05-09 15:26:59 -0700 | [diff] [blame] | 20 | #include <utils/RefBase.h> |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 21 | #include <CanvasProperty.h> |
| 22 | |
| 23 | namespace android { |
| 24 | |
Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 25 | using namespace uirenderer; |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 26 | |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 27 | static jlong createFloat(JNIEnv* env, jobject clazz, jfloat initialValue) { |
John Reck | 9fa4071 | 2014-05-09 15:26:59 -0700 | [diff] [blame] | 28 | return reinterpret_cast<jlong>(new CanvasPropertyPrimitive(initialValue)); |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | static jlong createPaint(JNIEnv* env, jobject clazz, jlong paintPtr) { |
Behdad Esfahbod | 6ba30b8 | 2014-07-15 16:22:32 -0400 | [diff] [blame] | 32 | const Paint* paint = reinterpret_cast<const Paint*>(paintPtr); |
John Reck | 9fa4071 | 2014-05-09 15:26:59 -0700 | [diff] [blame] | 33 | return reinterpret_cast<jlong>(new CanvasPropertyPaint(*paint)); |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 34 | } |
| 35 | |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 36 | // ---------------------------------------------------------------------------- |
| 37 | // JNI Glue |
| 38 | // ---------------------------------------------------------------------------- |
| 39 | |
Daniel Micay | 76f6a86 | 2015-09-19 17:31:01 -0400 | [diff] [blame] | 40 | static const JNINativeMethod gMethods[] = { |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 41 | { "nCreateFloat", "(F)J", (void*) createFloat }, |
| 42 | { "nCreatePaint", "(J)J", (void*) createPaint }, |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | int register_android_graphics_CanvasProperty(JNIEnv* env) { |
John Reck | a2732a2 | 2014-12-18 13:52:33 -0800 | [diff] [blame] | 46 | return RegisterMethodsOrDie(env, "android/graphics/CanvasProperty", gMethods, |
| 47 | NELEM(gMethods)); |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | }; // namespace android |