Romain Guy | ac670c0 | 2010-07-27 17:39:27 -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_PROGRAM_CACHE_H |
| 18 | #define ANDROID_HWUI_PROGRAM_CACHE_H |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 19 | |
| 20 | #include <utils/KeyedVector.h> |
| 21 | #include <utils/Log.h> |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 22 | #include <utils/String8.h> |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 23 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 24 | #include <GLES2/gl2.h> |
| 25 | |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 26 | #include "Debug.h" |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 27 | #include "Program.h" |
Romain Guy | 24edca8 | 2011-12-09 13:08:06 -0800 | [diff] [blame] | 28 | #include "Properties.h" |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 29 | |
| 30 | namespace android { |
| 31 | namespace uirenderer { |
| 32 | |
| 33 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 34 | // Cache |
| 35 | /////////////////////////////////////////////////////////////////////////////// |
| 36 | |
| 37 | /** |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 38 | * Generates and caches program. Programs are generated based on |
| 39 | * ProgramDescriptions. |
| 40 | */ |
| 41 | class ProgramCache { |
| 42 | public: |
| 43 | ProgramCache(); |
| 44 | ~ProgramCache(); |
| 45 | |
| 46 | Program* get(const ProgramDescription& description); |
| 47 | |
| 48 | void clear(); |
| 49 | |
| 50 | private: |
| 51 | Program* generateProgram(const ProgramDescription& description, programid key); |
| 52 | String8 generateVertexShader(const ProgramDescription& description); |
| 53 | String8 generateFragmentShader(const ProgramDescription& description); |
Romain Guy | 48daa54 | 2010-08-10 19:21:34 -0700 | [diff] [blame] | 54 | void generateBlend(String8& shader, const char* name, SkXfermode::Mode mode); |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 55 | void generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT); |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 56 | |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 57 | void printLongString(const String8& shader) const; |
| 58 | |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 59 | KeyedVector<programid, Program*> mCache; |
Romain Guy | b488004 | 2013-04-05 11:17:55 -0700 | [diff] [blame] | 60 | |
| 61 | const bool mHasES3; |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 62 | }; // class ProgramCache |
| 63 | |
| 64 | }; // namespace uirenderer |
| 65 | }; // namespace android |
| 66 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 67 | #endif // ANDROID_HWUI_PROGRAM_CACHE_H |