diff options
author | Tim Van Patten <timvp@google.com> | 2018-11-09 17:09:44 -0700 |
---|---|---|
committer | Tim Van Patten <timvp@google.com> | 2018-12-07 21:06:32 +0000 |
commit | 50f700f1d63da8e314a401289574d8b6949b6c7c (patch) | |
tree | b7ab2a86c5a7012a670320036334576887bcccf7 /src/com/android/settings/development/DevelopmentOptionsActivityRequestCodes.java | |
parent | 34668b6494971a35f5b7752f12d5ba7ec138c129 (diff) | |
download | packages_apps_Settings-50f700f1d63da8e314a401289574d8b6949b6c7c.tar.gz packages_apps_Settings-50f700f1d63da8e314a401289574d8b6949b6c7c.tar.bz2 packages_apps_Settings-50f700f1d63da8e314a401289574d8b6949b6c7c.zip |
Update ANGLE Developer Options
Update ANGLE developer options to allow selecting the OpenGL driver
(default, ANGLE, native) for each app as well as forcing ANGLE for all
apps.
The settings are also being moved from within the Android settings (here)
to the ANGLE APK, so they can be updated more quickly/easily.
Bug: 118384925
Test: Verify the default/ANGLE/native values are saved and applied and
used by the loader.
Change-Id: Ide449704dd703657bd316231987a07becf8699c9
Diffstat (limited to 'src/com/android/settings/development/DevelopmentOptionsActivityRequestCodes.java')
-rw-r--r-- | src/com/android/settings/development/DevelopmentOptionsActivityRequestCodes.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/com/android/settings/development/DevelopmentOptionsActivityRequestCodes.java b/src/com/android/settings/development/DevelopmentOptionsActivityRequestCodes.java index 3532a155c5..e65d2ad69c 100644 --- a/src/com/android/settings/development/DevelopmentOptionsActivityRequestCodes.java +++ b/src/com/android/settings/development/DevelopmentOptionsActivityRequestCodes.java @@ -26,7 +26,11 @@ public interface DevelopmentOptionsActivityRequestCodes { int REQUEST_MOCK_LOCATION_APP = 2; - int REQUEST_CODE_ANGLE_ENABLED_APP = 3; + int REQUEST_CODE_ANGLE_ALL_USE_ANGLE = 3; - int REQUEST_CODE_UPDATED_GFX_DRIVER_DEV_OPT_IN_APP = 4; + int REQUEST_CODE_ANGLE_DRIVER_PKGS = 4; + + int REQUEST_CODE_ANGLE_DRIVER_VALUES = 5; + + int REQUEST_CODE_UPDATED_GFX_DRIVER_DEV_OPT_IN_APP = 6; } |