blob: 602476511c3fe2b6c6b0e6f3fdcff509904db6d3 [file] [log] [blame]
Romain Guydda57022010-07-06 11:39:32 -07001/*
2 * Copyright (C) 2010 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#ifndef ANDROID_UI_LAYER_H
18#define ANDROID_UI_LAYER_H
19
Romain Guyf7f93552010-07-08 19:17:03 -070020#include <sys/types.h>
21
Romain Guydda57022010-07-06 11:39:32 -070022#include <GLES2/gl2.h>
23
24#include <SkXfermode.h>
25
26#include "Rect.h"
27
28namespace android {
29namespace uirenderer {
30
31/**
32 * Dimensions of a layer.
33 */
34struct LayerSize {
Romain Guyeb993562010-10-05 18:14:38 -070035 LayerSize(): width(0), height(0) { }
36 LayerSize(const uint32_t width, const uint32_t height): width(width), height(height) { }
37 LayerSize(const LayerSize& size): width(size.width), height(size.height) { }
Romain Guydda57022010-07-06 11:39:32 -070038
39 uint32_t width;
40 uint32_t height;
41
42 bool operator<(const LayerSize& rhs) const {
Romain Guydda57022010-07-06 11:39:32 -070043 if (width == rhs.width) {
44 return height < rhs.height;
45 }
46 return width < rhs.width;
47 }
48
49 bool operator==(const LayerSize& rhs) const {
Romain Guyeb993562010-10-05 18:14:38 -070050 return width == rhs.width && height == rhs.height;
Romain Guydda57022010-07-06 11:39:32 -070051 }
Romain Guyf7f93552010-07-08 19:17:03 -070052}; // struct LayerSize
Romain Guydda57022010-07-06 11:39:32 -070053
54/**
Romain Guyeb993562010-10-05 18:14:38 -070055 * A layer has dimensions and is backed by an OpenGL texture or FBO.
Romain Guydda57022010-07-06 11:39:32 -070056 */
57struct Layer {
58 /**
Romain Guyf607bdc2010-09-10 19:20:06 -070059 * Coordinates of the layer.
Romain Guydda57022010-07-06 11:39:32 -070060 */
61 Rect layer;
62 /**
63 * Name of the texture used to render the layer.
Romain Guydda57022010-07-06 11:39:32 -070064 */
65 GLuint texture;
66 /**
Romain Guyeb993562010-10-05 18:14:38 -070067 * Name of the FBO used to render the layer. If the name is 0
68 * this layer is not backed by an FBO, but a simple texture.
69 */
70 GLuint fbo;
71 /**
Romain Guydda57022010-07-06 11:39:32 -070072 * Opacity of the layer.
Romain Guydda57022010-07-06 11:39:32 -070073 */
Romain Guyf607bdc2010-09-10 19:20:06 -070074 int alpha;
Romain Guydda57022010-07-06 11:39:32 -070075 /**
76 * Blending mode of the layer.
Romain Guydda57022010-07-06 11:39:32 -070077 */
78 SkXfermode::Mode mode;
79 /**
80 * Indicates whether this layer should be blended.
81 */
82 bool blend;
Romain Guy38c85b92010-09-22 22:48:20 -070083 /**
Romain Guy0bb56672010-10-01 00:25:02 -070084 * Indicates whether this layer has been used already.
Romain Guy38c85b92010-09-22 22:48:20 -070085 */
86 bool empty;
Romain Guydda57022010-07-06 11:39:32 -070087}; // struct Layer
88
89}; // namespace uirenderer
90}; // namespace android
91
92#endif // ANDROID_UI_LAYER_H