Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 1 | /* |
| 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 Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 17 | #ifndef ANDROID_HWUI_TEXTURE_H |
| 18 | #define ANDROID_HWUI_TEXTURE_H |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 19 | |
| 20 | #include <GLES2/gl2.h> |
| 21 | |
| 22 | namespace android { |
| 23 | namespace uirenderer { |
| 24 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 25 | class UvMapper; |
| 26 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 27 | /** |
| 28 | * Represents an OpenGL texture. |
| 29 | */ |
| 30 | struct Texture { |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 31 | Texture() { |
| 32 | cleanup = false; |
Romain Guy | 9aaa826 | 2010-09-08 15:15:43 -0700 | [diff] [blame] | 33 | bitmapSize = 0; |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 34 | |
Romain Guy | 8164c2d | 2010-10-25 18:03:28 -0700 | [diff] [blame] | 35 | wrapS = GL_CLAMP_TO_EDGE; |
| 36 | wrapT = GL_CLAMP_TO_EDGE; |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 37 | |
| 38 | minFilter = GL_NEAREST; |
| 39 | magFilter = GL_NEAREST; |
Romain Guy | e3c2685 | 2011-07-25 16:36:01 -0700 | [diff] [blame] | 40 | |
Romain Guy | 713e1bb | 2012-10-16 18:44:09 -0700 | [diff] [blame] | 41 | mipMap = false; |
| 42 | |
Romain Guy | e3c2685 | 2011-07-25 16:36:01 -0700 | [diff] [blame] | 43 | firstFilter = true; |
| 44 | firstWrap = true; |
Chet Haase | 98d3a64 | 2012-09-26 10:27:40 -0700 | [diff] [blame] | 45 | |
| 46 | id = 0; |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 47 | |
| 48 | uvMapper = NULL; |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 49 | } |
| 50 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 51 | void setWrap(GLenum wrap, bool bindTexture = false, bool force = false, |
| 52 | GLenum renderTarget = GL_TEXTURE_2D) { |
| 53 | setWrapST(wrap, wrap, bindTexture, force, renderTarget); |
| 54 | } |
| 55 | |
| 56 | void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false, bool force = false, |
Romain Guy | e3c2685 | 2011-07-25 16:36:01 -0700 | [diff] [blame] | 57 | GLenum renderTarget = GL_TEXTURE_2D) { |
| 58 | |
| 59 | if (firstWrap || force || wrapS != this->wrapS || wrapT != this->wrapT) { |
Romain Guy | 39d252a | 2011-12-12 18:14:06 -0800 | [diff] [blame] | 60 | firstWrap = false; |
Romain Guy | e3c2685 | 2011-07-25 16:36:01 -0700 | [diff] [blame] | 61 | |
| 62 | this->wrapS = wrapS; |
| 63 | this->wrapT = wrapT; |
| 64 | |
| 65 | if (bindTexture) { |
| 66 | glBindTexture(renderTarget, id); |
| 67 | } |
| 68 | |
| 69 | glTexParameteri(renderTarget, GL_TEXTURE_WRAP_S, wrapS); |
| 70 | glTexParameteri(renderTarget, GL_TEXTURE_WRAP_T, wrapT); |
| 71 | } |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 74 | void setFilter(GLenum filter, bool bindTexture = false, bool force = false, |
| 75 | GLenum renderTarget = GL_TEXTURE_2D) { |
| 76 | setFilterMinMag(filter, filter, bindTexture, force, renderTarget); |
| 77 | } |
| 78 | |
| 79 | void setFilterMinMag(GLenum min, GLenum mag, bool bindTexture = false, bool force = false, |
Romain Guy | e3c2685 | 2011-07-25 16:36:01 -0700 | [diff] [blame] | 80 | GLenum renderTarget = GL_TEXTURE_2D) { |
| 81 | |
| 82 | if (firstFilter || force || min != minFilter || mag != magFilter) { |
| 83 | firstFilter = false; |
| 84 | |
| 85 | minFilter = min; |
| 86 | magFilter = mag; |
| 87 | |
| 88 | if (bindTexture) { |
| 89 | glBindTexture(renderTarget, id); |
| 90 | } |
| 91 | |
Romain Guy | 713e1bb | 2012-10-16 18:44:09 -0700 | [diff] [blame] | 92 | if (mipMap && min == GL_LINEAR) min = GL_LINEAR_MIPMAP_LINEAR; |
| 93 | |
Romain Guy | e3c2685 | 2011-07-25 16:36:01 -0700 | [diff] [blame] | 94 | glTexParameteri(renderTarget, GL_TEXTURE_MIN_FILTER, min); |
| 95 | glTexParameteri(renderTarget, GL_TEXTURE_MAG_FILTER, mag); |
| 96 | } |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 99 | /** |
| 100 | * Name of the texture. |
| 101 | */ |
| 102 | GLuint id; |
| 103 | /** |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 104 | * Generation of the backing bitmap, |
| 105 | */ |
| 106 | uint32_t generation; |
| 107 | /** |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 108 | * Indicates whether the texture requires blending. |
| 109 | */ |
| 110 | bool blend; |
| 111 | /** |
| 112 | * Width of the backing bitmap. |
| 113 | */ |
Romain Guy | 7d139ba | 2010-07-02 11:20:34 -0700 | [diff] [blame] | 114 | uint32_t width; |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 115 | /** |
| 116 | * Height of the backing bitmap. |
| 117 | */ |
Romain Guy | 7d139ba | 2010-07-02 11:20:34 -0700 | [diff] [blame] | 118 | uint32_t height; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 119 | /** |
| 120 | * Indicates whether this texture should be cleaned up after use. |
| 121 | */ |
| 122 | bool cleanup; |
Romain Guy | 9aaa826 | 2010-09-08 15:15:43 -0700 | [diff] [blame] | 123 | /** |
| 124 | * Optional, size of the original bitmap. |
| 125 | */ |
| 126 | uint32_t bitmapSize; |
Romain Guy | 713e1bb | 2012-10-16 18:44:09 -0700 | [diff] [blame] | 127 | /** |
| 128 | * Indicates whether this texture will use trilinear filtering. |
| 129 | */ |
| 130 | bool mipMap; |
Romain Guy | 8164c2d | 2010-10-25 18:03:28 -0700 | [diff] [blame] | 131 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 132 | /** |
| 133 | * Optional, pointer to a texture coordinates mapper. |
| 134 | */ |
| 135 | const UvMapper* uvMapper; |
| 136 | |
Romain Guy | 713e1bb | 2012-10-16 18:44:09 -0700 | [diff] [blame] | 137 | private: |
Romain Guy | 8164c2d | 2010-10-25 18:03:28 -0700 | [diff] [blame] | 138 | /** |
| 139 | * Last wrap modes set on this texture. Defaults to GL_CLAMP_TO_EDGE. |
| 140 | */ |
| 141 | GLenum wrapS; |
| 142 | GLenum wrapT; |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 143 | |
| 144 | /** |
| 145 | * Last filters set on this texture. Defaults to GL_NEAREST. |
| 146 | */ |
| 147 | GLenum minFilter; |
| 148 | GLenum magFilter; |
Romain Guy | e3c2685 | 2011-07-25 16:36:01 -0700 | [diff] [blame] | 149 | |
Romain Guy | e3c2685 | 2011-07-25 16:36:01 -0700 | [diff] [blame] | 150 | bool firstFilter; |
| 151 | bool firstWrap; |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 152 | }; // struct Texture |
| 153 | |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 154 | class AutoTexture { |
| 155 | public: |
| 156 | AutoTexture(const Texture* texture): mTexture(texture) { } |
| 157 | ~AutoTexture() { |
| 158 | if (mTexture && mTexture->cleanup) { |
| 159 | glDeleteTextures(1, &mTexture->id); |
| 160 | delete mTexture; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | private: |
| 165 | const Texture* mTexture; |
| 166 | }; // class AutoTexture |
| 167 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 168 | }; // namespace uirenderer |
| 169 | }; // namespace android |
| 170 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 171 | #endif // ANDROID_HWUI_TEXTURE_H |