blob: 246ba662d7467296617263d7a1586f44087b0175 [file] [log] [blame]
Romain Guyf7f93552010-07-08 19:17:03 -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
Romain Guy5b3b3522010-10-27 18:57:51 -070017#ifndef ANDROID_HWUI_PATCH_H
18#define ANDROID_HWUI_PATCH_H
Romain Guyf7f93552010-07-08 19:17:03 -070019
20#include <sys/types.h>
21
Romain Guy03750a02010-10-18 14:06:08 -070022#include <GLES2/gl2.h>
23
Romain Guy5b3b3522010-10-27 18:57:51 -070024#include <utils/Vector.h>
25
Romain Guy3b748a42013-04-17 18:54:38 -070026#include <androidfw/ResourceTypes.h>
27
Romain Guy5b3b3522010-10-27 18:57:51 -070028#include "Rect.h"
Romain Guy3b748a42013-04-17 18:54:38 -070029#include "UvMapper.h"
Romain Guyf7f93552010-07-08 19:17:03 -070030#include "Vertex.h"
31
32namespace android {
33namespace uirenderer {
34
Romain Guy4bb94202010-10-12 15:59:26 -070035///////////////////////////////////////////////////////////////////////////////
36// 9-patch structures
37///////////////////////////////////////////////////////////////////////////////
38
Romain Guyf7f93552010-07-08 19:17:03 -070039struct Patch {
Romain Guy3b748a42013-04-17 18:54:38 -070040 Patch();
Romain Guyfb5e23c2010-07-09 13:52:56 -070041 ~Patch();
Romain Guyf7f93552010-07-08 19:17:03 -070042
Romain Guy3b748a42013-04-17 18:54:38 -070043 /**
44 * Returns the size of this patch's mesh in bytes.
45 */
46 uint32_t getSize() const;
Romain Guy6f72beb2010-11-30 12:04:14 -080047
Romain Guy03c00b52013-06-20 18:30:28 -070048 TextureVertex* vertices;
Romain Guyf7f93552010-07-08 19:17:03 -070049 uint32_t verticesCount;
Romain Guy3b748a42013-04-17 18:54:38 -070050 uint32_t indexCount;
Romain Guy5b3b3522010-10-27 18:57:51 -070051 bool hasEmptyQuads;
Romain Guya5ef39a2010-12-03 16:48:20 -080052 Vector<Rect> quads;
Romain Guyfb5e23c2010-07-09 13:52:56 -070053
Romain Guy3b748a42013-04-17 18:54:38 -070054 GLintptr offset;
55 GLintptr textureOffset;
56
57 TextureVertex* createMesh(const float bitmapWidth, const float bitmapHeight,
Romain Guy03c00b52013-06-20 18:30:28 -070058 float width, float height, const Res_png_9patch* patch);
Romain Guy3b748a42013-04-17 18:54:38 -070059 TextureVertex* createMesh(const float bitmapWidth, const float bitmapHeight,
Romain Guy03c00b52013-06-20 18:30:28 -070060 float width, float height, const UvMapper& mapper, const Res_png_9patch* patch);
Romain Guy3b748a42013-04-17 18:54:38 -070061
Romain Guyfb5e23c2010-07-09 13:52:56 -070062private:
Romain Guy3b748a42013-04-17 18:54:38 -070063 void generateRow(const int32_t* xDivs, uint32_t xCount, TextureVertex*& vertex,
64 float y1, float y2, float v1, float v2, float stretchX, float rescaleX,
Romain Guy41d35ae2012-10-10 16:06:04 -070065 float width, float bitmapWidth, uint32_t& quadCount);
Romain Guy3b748a42013-04-17 18:54:38 -070066 void generateQuad(TextureVertex*& vertex, float x1, float y1, float x2, float y2,
67 float u1, float v1, float u2, float v2, uint32_t& quadCount);
68
69 uint32_t mColorKey;
70 UvMapper mUvMapper;
Romain Guyf7f93552010-07-08 19:17:03 -070071}; // struct Patch
72
73}; // namespace uirenderer
74}; // namespace android
75
Romain Guy5b3b3522010-10-27 18:57:51 -070076#endif // ANDROID_HWUI_PATCH_H