diff options
| author | Mike Reed <reed@google.com> | 2009-06-02 15:30:57 -0400 |
|---|---|---|
| committer | Mike Reed <reed@google.com> | 2009-06-02 15:30:57 -0400 |
| commit | 5b4718ba8aeac969095b75c20fbe74ced0c04725 (patch) | |
| tree | 8698f4553fdf767c0cd665607dedcbb4e4c65ce8 /core/java/android/view/Window.java | |
| parent | b0d031ad132dac585d1f21d46ebebcc4d13f40c7 (diff) | |
make FEATURE_OPENGL public (but hidden for now) so we can test with it
Diffstat (limited to 'core/java/android/view/Window.java')
| -rw-r--r-- | core/java/android/view/Window.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/view/Window.java b/core/java/android/view/Window.java index d7457a030468..2c32d8b54af6 100644 --- a/core/java/android/view/Window.java +++ b/core/java/android/view/Window.java @@ -56,11 +56,11 @@ public abstract class Window { public static final int FEATURE_CONTEXT_MENU = 6; /** Flag for custom title. You cannot combine this feature with other title features. */ public static final int FEATURE_CUSTOM_TITLE = 7; - /* Flag for asking for an OpenGL enabled window. + /** Flag for asking for an OpenGL enabled window. All 2D graphics will be handled by OpenGL ES. - Private for now, until it is better tested (not shipping in 1.0) + @hide */ - private static final int FEATURE_OPENGL = 8; + public static final int FEATURE_OPENGL = 8; /** Flag for setting the progress bar's visibility to VISIBLE */ public static final int PROGRESS_VISIBILITY_ON = -1; /** Flag for setting the progress bar's visibility to GONE */ |
