blob: 6d19b7ccdd79755e41ec42f614cc3068e3ecfd62 [file] [log] [blame]
Chris Craik0519c812015-02-11 13:17:06 -08001/*
2 * Copyright (C) 2015 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 FLOATCOLOR_H
17#define FLOATCOLOR_H
18
Romain Guy253f2c22016-09-28 17:34:42 -070019#include "utils/Color.h"
Chris Craik0519c812015-02-11 13:17:06 -080020#include "utils/Macros.h"
sergeyvf42bf3e2016-03-11 13:45:15 -080021#include "utils/MathUtils.h"
Chris Craik0519c812015-02-11 13:17:06 -080022
Chris Craik922d3a72015-02-13 17:47:21 -080023#include <stdint.h>
24
Chris Craik0519c812015-02-11 13:17:06 -080025namespace android {
26namespace uirenderer {
27
28struct FloatColor {
Romain Guy253f2c22016-09-28 17:34:42 -070029 // "color" is a gamma-encoded sRGB color
30 // After calling this method, the color is stored as a pre-multiplied linear color
Chris Craik922d3a72015-02-13 17:47:21 -080031 void set(uint32_t color) {
32 a = ((color >> 24) & 0xff) / 255.0f;
Romain Guy253f2c22016-09-28 17:34:42 -070033 r = a * EOCF_sRGB(((color >> 16) & 0xff) / 255.0f);
34 g = a * EOCF_sRGB(((color >> 8) & 0xff) / 255.0f);
35 b = a * EOCF_sRGB(((color ) & 0xff) / 255.0f);
Chris Craik922d3a72015-02-13 17:47:21 -080036 }
37
Chris Craik2bb8f562015-02-17 16:42:02 -080038 bool isNotBlack() {
39 return a < 1.0f
40 || r > 0.0f
41 || g > 0.0f
42 || b > 0.0f;
43 }
44
sergeyvf42bf3e2016-03-11 13:45:15 -080045 bool operator==(const FloatColor& other) const {
46 return MathUtils::areEqual(r, other.r)
47 && MathUtils::areEqual(g, other.g)
48 && MathUtils::areEqual(b, other.b)
49 && MathUtils::areEqual(a, other.a);
50 }
51
52 bool operator!=(const FloatColor& other) const {
53 return !(*this == other);
54 }
55
Chris Craik0519c812015-02-11 13:17:06 -080056 float r;
57 float g;
58 float b;
59 float a;
60};
61
62REQUIRE_COMPATIBLE_LAYOUT(FloatColor);
63
64} /* namespace uirenderer */
65} /* namespace android */
66
67#endif /* FLOATCOLOR_H */