John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 | #ifndef CANVASPROPERTY_H |
| 17 | #define CANVASPROPERTY_H |
| 18 | |
John Reck | 9fa4071 | 2014-05-09 15:26:59 -0700 | [diff] [blame] | 19 | #include <utils/RefBase.h> |
| 20 | |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 21 | #include "utils/Macros.h" |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 22 | |
| 23 | #include <SkPaint.h> |
| 24 | |
| 25 | namespace android { |
| 26 | namespace uirenderer { |
| 27 | |
| 28 | class CanvasPropertyPrimitive : public VirtualLightRefBase { |
| 29 | PREVENT_COPY_AND_ASSIGN(CanvasPropertyPrimitive); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 30 | |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 31 | public: |
Chih-Hung Hsieh | faecb78 | 2016-07-21 11:23:06 -0700 | [diff] [blame] | 32 | explicit CanvasPropertyPrimitive(float initialValue) : value(initialValue) {} |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 33 | |
| 34 | float value; |
| 35 | }; |
| 36 | |
| 37 | class CanvasPropertyPaint : public VirtualLightRefBase { |
| 38 | PREVENT_COPY_AND_ASSIGN(CanvasPropertyPaint); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 39 | |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 40 | public: |
Chih-Hung Hsieh | faecb78 | 2016-07-21 11:23:06 -0700 | [diff] [blame] | 41 | explicit CanvasPropertyPaint(const SkPaint& initialValue) : value(initialValue) {} |
John Reck | 52244ff | 2014-05-01 21:27:37 -0700 | [diff] [blame] | 42 | |
| 43 | SkPaint value; |
| 44 | }; |
| 45 | |
| 46 | } /* namespace uirenderer */ |
| 47 | } /* namespace android */ |
| 48 | |
| 49 | #endif /* CANVASPROPERTY_H */ |