Commit Graph

585 Commits

Author SHA1 Message Date
Android (Google) Code Review
7e4212cabd Merge change 3207 into donut
* changes:
  localize: remove dependency on mkdirs/etc in libhost
2009-06-04 14:10:07 -07:00
Android (Google) Code Review
e0074ad3ce Merge change 3203 into donut
* changes:
  rename a few files to camel-case, add copyright notices
2009-06-04 14:08:29 -07:00
Mathias Agopian
f446ba9dcb rename a few files to camel-case, add copyright notices 2009-06-04 13:53:57 -07:00
Android (Google) Code Review
eb55b12910 Merge change 3192 into donut
* changes:
  Fixes #1882836.
2009-06-04 13:28:20 -07:00
Android (Google) Code Review
882b990004 Merge change 3181 into donut
* changes:
  Unhide inInputShareable in BitmapFactory.Options.
2009-06-04 13:21:03 -07:00
Android (Google) Code Review
b2d4ba5bb2 Merge change 3174 into donut
* changes:
  Added bugreport collecting mechanism in case of crashes.
2009-06-04 11:05:21 -07:00
Android (Google) Code Review
4d797db25b Merge change 3074 into donut
* changes:
  Modify the decoding logic in the FD case when a purgeable flag is set, and lower the threshold of bitmap size for using ashmem().
2009-06-04 10:40:17 -07:00
Android (Google) Code Review
dd8016615e Merge change 3126 into donut
* changes:
  Fix thread safety in DataConnectionTracker.
2009-06-04 10:09:59 -07:00
Android (Google) Code Review
d86345312e Merge change 3149 into donut
* changes:
  Turn off verbose logging in SearchableInfo, which seems to have been left on by accident.
2009-06-04 07:08:45 -07:00
Android (Google) Code Review
6d94573aa5 Merge change 3145 into donut
* changes:
  Add INTENT_ACTION_WEB_SEARCH_SETTINGS (thereby fixing the build too :)).
2009-06-04 06:10:37 -07:00
Android (Google) Code Review
58229dcf64 Merge change 2845 into donut
* changes:
  Allow making AssetFileDescriptors from SQLite blobs.
2009-06-04 03:09:43 -07:00
Android (Google) Code Review
8e1221c5ff Merge change 1526 into donut
* changes:
  cdma getNeighboringCids to fail with an exception
2009-06-03 23:30:02 -07:00
Android (Google) Code Review
27e1468db4 Merge change 3095 into donut
* changes:
  Skip empty lines in test url list.
2009-06-03 17:01:01 -07:00
Android (Google) Code Review
9a9e57ec6b Merge change 3094 into donut
* changes:
  Grant permissions to older package when deleting an updated system application. When a system app gets updated, the permissions are granted to the new pkg. Similary when this updated pkg(from data partition) gets removed, the older pkg from system partition is restored. but the permissions are'nt being granted explicitly and so the restore fails. This fix addresses specific bugs related to uninstall of updated system apps. These code paths will be revisited later but this fix is needed for OTA's that might fall back to older versions of system apps.
2009-06-03 16:32:18 -07:00
Mathias Agopian
69ca17a124 fix [1610840] Positional light doesn't work correctly on emulator
This bug was introduced when lighting computations was changed from eye-space to object-space.
The light position need to be transformed back to object-space each time the modelview matrix changes which requires us to compute the inverse of the modelview matrix. This computation was done with the assumption that normals where transformed (which was the case when the computation was made in eye-space), however, normals only require the inverse of the upper 3x3 matrix while transforming positions requires the inverse of the whole matrix.
This caused the interesting behavior that lights were more-or-less transformed properly, but not translated at all, which caused improper lighting with directional lights in particular.

There was also another smaller bug affecting directional lights: when vertices are read, only the active component are read, the other ones are ignored, later, the transformation operations are set up to ignore the unset values, howver, in the case of lighting, we use the vertex in object space (that is, before it is transformed), and therefore were using uninitalized values; in particular w.
2009-06-03 15:09:52 -07:00
Android (Google) Code Review
2216b95610 Merge change 3013 into donut
* changes:
  fix a bug in GL lighting where the specular component could be ommited when vertex material was disabled.
2009-06-03 15:07:26 -07:00
Android (Google) Code Review
b5c7b39b83 Merge change 3038 into donut
* changes:
  Cleaning up makefile for libttssynthproxy for the simulator.
2009-06-03 10:08:46 -07:00
Jean-Michel Trivi
ecd485bd3e Cleaning up makefile for libttssynthproxy for the simulator. 2009-06-03 09:43:14 -07:00
Android (Google) Code Review
ff8ebc2225 Merge change 3011 into donut
* changes:
  simplify this test
2009-06-02 22:54:04 -07:00
Mathias Agopian
50aba6d31d fix a bug in GL lighting where the specular component could be ommited when vertex material was disabled.
the specular enable flag wasn't computed in that case.
2009-06-02 22:51:09 -07:00
Mathias Agopian
17836acabf simplify this test 2009-06-02 18:35:48 -07:00
Android (Google) Code Review
f2de56981f Merge change 2957 into donut
* changes:
  Allow response payload on RIL_REQUEST error
2009-06-02 18:19:29 -07:00
Android (Google) Code Review
4f5bcbc72a Merge change 2971 into donut
* changes:
  Corrected the name of the native library the SynthProxy class loads (libttssynthproxy instead of libsynthproxy) to match the lib name from frameworks/base/tts/jni/Android.mk.
2009-06-02 17:22:18 -07:00
Android (Google) Code Review
e00a3dcabf Merge change 2967 into donut
* changes:
  Fixed issue where code for extracting scripts was eclipsed by runTest method.
2009-06-02 16:42:42 -07:00
Jean-Michel Trivi
759284dbfd Corrected the name of the native library the SynthProxy class loads (libttssynthproxy instead of libsynthproxy) to match the lib name from frameworks/base/tts/jni/Android.mk. 2009-06-02 16:02:31 -07:00
Android (Google) Code Review
202df92937 Merge change 2961 into donut
* changes:
  Addressed comments of change 2515 for the TtsService class:  - made the SpeechItem and SoundResource inner classes static,  - prefixed the TtsService member variables by 'm',  - changed indentation from 2 to 4 characters.
2009-06-02 15:35:46 -07:00
Android (Google) Code Review
c0c6f1241d Merge change 2962 into donut
* changes:
  Fixes #1890914.
2009-06-02 15:16:34 -07:00
Jean-Michel Trivi
17e136108c Addressed comments of change 2515 for the TtsService class:
- made the SpeechItem and SoundResource inner classes static,
 - prefixed the TtsService member variables by 'm',
 - changed indentation from 2 to 4 characters.
2009-06-02 15:09:51 -07:00
Doug Kramer
446393bafd am b33940ab: AI 149494: Minor improvements to wording in design tips for missing activity and notifications See latest document at: http://doog:9000/guide/practices/ui_guidelines/activity_task_design.html
Merge commit 'b33940abca9d43891575f58a1107c8ec247afed1' into donut

* commit 'b33940abca9d43891575f58a1107c8ec247afed1':
  AI 149494: Minor improvements to wording in design tips for missing activity and notifications
2009-06-02 13:15:15 -07:00
Jean-Michel Trivi
4527ac8e7d Trying to fix sim-eng build: when building the simulator on linux, link (only) with libdl, as opposed to also making libdl a build target. 2009-06-02 12:05:18 -07:00
Jean-Michel Trivi
8fa8518279 Trying to fix the build for simulator: modifying makefile to not link against libdl. 2009-06-02 10:43:58 -07:00
Android (Google) Code Review
e467ddc293 Merge change 2515 into donut
* changes:
  Adding the TtsService class for text-to-speech synthesis.
2009-06-02 10:11:58 -07:00
Charles Chen
24d41dc57a Adding the TtsService class for text-to-speech synthesis. 2009-06-02 09:57:53 -07:00
Android (Google) Code Review
51b9f4c9f4 Merge change 2572 into donut
* changes:
  Adding java/jni code for the Java TTS SynthProxy class, which relays calls from the TTS service to the native TTS plugin library.
2009-06-02 08:55:25 -07:00
Android (Google) Code Review
37b90875a0 Merge change 2844 into donut
* changes:
  Added some icon debug logging to SuggestionsAdapter.
2009-06-02 01:31:21 -07:00
Android (Google) Code Review
dd166d6fff Merge change 2843 into donut
* changes:
  Use JNI region calls in MemoryFile read and write.
2009-06-02 01:25:24 -07:00
Android (Google) Code Review
61027016b9 Merge change 1522 into donut
* changes:
  support more minor cdms sms bearer data subparameters
2009-06-02 00:58:47 -07:00
Android (Google) Code Review
793a12717f Merge change 2761 into donut
* changes:
  TODO's from Teleca with modifications from wink.
2009-06-02 00:49:46 -07:00
Android (Google) Code Review
383bce9073 Merge change 2879 into donut
* changes:
  Add backup side of new FullBackupAgent class
2009-06-01 19:30:54 -07:00
Android (Google) Code Review
a3dd38a942 Merge change 2896 into donut
* changes:
  added a test that exhibits some lighting issues in the software renderer. see external bug 1709
2009-06-01 19:01:11 -07:00
Mathias Agopian
4d661eb62c added a test that exhibits some lighting issues in the software renderer. see external bug 1709 2009-06-01 18:59:44 -07:00
Android (Google) Code Review
8fd039e936 Merge change 2864 into donut
* changes:
  Fixed bug where test status is not marked "DONE" when completed
2009-06-01 15:27:28 -07:00
Android (Google) Code Review
29f6175b23 Merge change 2855 into donut
* changes:
  Add a new method to load html data into the WebView.
2009-06-01 15:22:18 -07:00
Android (Google) Code Review
432b8f8120 Merge change 2851 into donut
* changes:
  Change comment for SUGGEST_COLUMN_INTENT_EXTRA_DATA to clarify that this column is for use by global search only.
2009-06-01 14:50:26 -07:00
Jean-Michel Trivi
13a728edc6 Adding java/jni code for the Java TTS SynthProxy class, which relays calls from the TTS service to the native TTS plugin library. 2009-06-01 14:45:12 -07:00
Android (Google) Code Review
cbcbfc5c32 Merge change 2835 into donut
* changes:
  Add framework support for scrolling to the "More results..." list item when it is clicked.
2009-06-01 14:21:54 -07:00
Android (Google) Code Review
106ab9f9e1 Merge change 2766 into donut
* changes:
  Manually merge a few fixes from cupcake and cupcake_dcm.
2009-06-01 12:41:41 -07:00
Android (Google) Code Review
5c6b111462 Merge change 2816 into donut
* changes:
  Update reliability test code. Use a separate activity with simpler calback mechanism.
2009-06-01 11:38:16 -07:00
Android (Google) Code Review
1cecebfe0d Merge change 2548 into donut
* changes:
  Fix a bug in AppSecurityPermissions where it wouldn't display permissions used by an app if it uses a shared user id. Remove the else clause and always get the list of requested permissions first before adding the permissions obtained via the shared user id. Also change an if condition and comments for better readability
2009-06-01 10:21:05 -07:00
Android (Google) Code Review
c5e09948ad Merge change 2805 into donut
* changes:
  base: Rename WRITE_SDCARD -> WRITE_EXTERNAL_STORAGE
2009-06-01 09:58:44 -07:00