diff options
author | Romain Guy <romainguy@google.com> | 2010-10-27 18:57:51 -0700 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2010-11-02 16:17:23 -0700 |
commit | 5b3b35296e8b2c8d3f07d32bb645d5414db41a1d (patch) | |
tree | bad2ebdbfeb8a3a0be1591d5a357a8280df7d1d2 /libs/hwui/Program.h | |
parent | 2444ddb3d9b59ec45ba50858fcbff639e59b93b1 (diff) | |
download | frameworks_base-5b3b35296e8b2c8d3f07d32bb645d5414db41a1d.zip frameworks_base-5b3b35296e8b2c8d3f07d32bb645d5414db41a1d.tar.gz frameworks_base-5b3b35296e8b2c8d3f07d32bb645d5414db41a1d.tar.bz2 |
Optimize FBO drawing with regions.
This optimization is currently disabled until Launcher is
modified to take advantage of it. The optimization can be
enabled by turning on RENDER_LAYERS_AS_REGIONS in the
OpenGLRenderer.h file.
Change-Id: I2fdf59d0f4dc690a3d7f712173ab8db3848b27b1
Diffstat (limited to 'libs/hwui/Program.h')
-rw-r--r-- | libs/hwui/Program.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/hwui/Program.h b/libs/hwui/Program.h index 026097c..5981662 100644 --- a/libs/hwui/Program.h +++ b/libs/hwui/Program.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ANDROID_UI_PROGRAM_H -#define ANDROID_UI_PROGRAM_H +#ifndef ANDROID_HWUI_PROGRAM_H +#define ANDROID_HWUI_PROGRAM_H #include <GLES2/gl2.h> #include <GLES2/gl2ext.h> @@ -131,4 +131,4 @@ private: }; // namespace uirenderer }; // namespace android -#endif // ANDROID_UI_PROGRAM_H +#endif // ANDROID_HWUI_PROGRAM_H |