summaryrefslogtreecommitdiffstats
path: root/graphics/java
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | merge from donutJean-Baptiste Queru2009-08-038-304/+563
| | |\ \
| | | * | donut snapshotJean-Baptiste Queru2009-07-318-304/+563
| | | | |
| | * | | merge from donutJean-Baptiste Queru2009-07-295-45/+82
| | |\ \ \ | | | |/ /
| | | * | donut snapshotJean-Baptiste Queru2009-07-295-45/+82
| | | | |
| | * | | Merge korg/donut into korg/masterJean-Baptiste Queru2009-07-2515-175/+739
| | |\ \ \ | | | |/ /
| | | * | donut snapshotJean-Baptiste Queru2009-07-2110-75/+471
| | | | |
| | | * | donut snapshotJean-Baptiste Queru2009-05-2010-105/+279
| | | | |
| | * | | Lazily allocate the mBounds Rect in Drawable.Brad Fitzpatrick2009-04-271-2/+8
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | For background, see: http://kohlerm.blogspot.com/2009/04/analyzing-memory-usage-off-your-android.html Thanks, Markus!
* | | | Merge change I736c525a into eclair-mr2Android (Google) Code Review2009-11-131-10/+13
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: update dox to account for different behavior between AVOID and TARGET modes
| * | | | update dox to account for different behavior between AVOID and TARGET modesMike Reed2009-11-121-10/+13
| | | | | | | | | | | | | | | | | | | | http://b/issue?id=2034547
* | | | | am 59175ac2: Merge change I81b1421a into eclairJason Sams2009-11-122-19/+23
|\ \ \ \ \ | |/ / / / |/| | | / | | |_|/ | |/| | | | | | | | | | Merge commit '59175ac269df2a584241e9786dc70ac35cb973e3' into eclair-mr2 * commit '59175ac269df2a584241e9786dc70ac35cb973e3': Defer EGL init until the surface changed call comes in. Pass w,h along with surface for verification of driver state.
| * | | Defer EGL init until the surface changed call comes in. Pass w,h along with ↵Jason Sams2009-11-122-19/+23
| |/ / | | | | | | | | | surface for verification of driver state.
* | | am decc139b: Merge change I7a824efc into eclairJason Sams2009-11-032-0/+12
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit 'decc139b232721ea1b0521d144521c8082636f0c' into eclair-mr2 * commit 'decc139b232721ea1b0521d144521c8082636f0c': Support applications changing the surface attached to the RS.
| * | Support applications changing the surface attached to the RS.Jason Sams2009-11-032-0/+12
| | |
* | | am 1864d01f: Merge change Iae849da2 into eclairMike Reed2009-10-301-0/+46
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit '1864d01f2be0e82da7d8844fa91bee8880282041' into eclair-mr2 * commit '1864d01f2be0e82da7d8844fa91bee8880282041': add table maskfilter
| * | add table maskfilterMike Reed2009-10-301-0/+46
| | | | | | | | | | | | | | | | | | hidden for now, since it need only be seen by Launcher2 http://b/issue?id=2210685
* | | am ec1f1e3d: Merge change Ieab4c75b into eclairJason Sams2009-10-291-2/+2
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit 'ec1f1e3df1ca5e73e262df479bf91a92f3ccafde' into eclair-mr2 * commit 'ec1f1e3df1ca5e73e262df479bf91a92f3ccafde': Fix type in Java enums. Not currently used, easier to fix now than when apps are using it.
| * | Fix type in Java enums. Not currently used, easier to fix now than when ↵Jason Sams2009-10-281-2/+2
| | | | | | | | | | | | apps are using it.
* | | add boundary patchMike Reed2009-10-281-0/+173
|/ /
* | Fix bug exposed by filmstrip. The updated and expanded SimpleMesh had an ↵Jason Sams2009-10-161-5/+5
| | | | | | | | ordering bug with component coordinates when both texture and normals were used.
* | Add script to script call support. Add exception to catch out of bound ↵Jason Sams2009-10-071-0/+5
| | | | | | | | index data when added to TriangleMeshBuilder.
* | add (hidden) setHasAlpha() to allow clients like the view's cache to hint ↵Mike Reed2009-10-071-1/+25
| | | | | | | | | | | | that a bitmap is opaque. Knowing that a 32bit bitmap is opaque is a performance boost for some blits.
* | Implement data push from scripts. Fixes the problem where apps would have ↵Jason Sams2009-10-061-0/+55
| | | | | | | | | | | | | | | | to poll to monitor a scripts state. Fix bug in StoreState where state could be overridden by the default unless the script used more than one state. Change only impacts renderscript and renderscript apps.
* | Update the SimpleMesh API to support new attribute types. Also spilt ↵Jason Sams2009-10-021-51/+79
| | | | | | | | add/set commands to avoid permutation explosion.
* | hide setGammaForText, which is only used for calibrating new devicesMike Reed2009-10-011-0/+2
| |
* | Update from API review.Dianne Hackborn2009-09-301-0/+2
| | | | | | | | Change-Id: I16b1c566f91167aac9615ac59dd297a154c828ea
* | if we have a single value for roundrect radius, manually clamp it before ↵Mike Reed2009-09-291-0/+9
| | | | | | | | | | | | | | | | | | | | | | drawing. Skia will clamp the radius independently in X and Y to ensure it is not larger than 1/2 the width (or height). If the caller to our drawable gives us a single value, we'll assume they want it to be circular, and not an oval. To do that, we clamp it up front, so we get (possibly smaller) circular corners, rather than potentially elliptical ones. This makes the progress bar look "nicer" when it is very thin in one dimension.
* | Whoops, these shouldn't be public.Dianne Hackborn2009-09-291-4/+4
| | | | | | | | Change-Id: I66057b1fb63b97ad79cea7056849274c6a7b3ed4
* | Merge change I6cacaa0d into eclairAndroid (Google) Code Review2009-09-291-12/+114
|\ \ | | | | | | | | | | | | * changes: Hack to fix issue #2125365: Sports Trivia compatability with Eclair
| * | Hack to fix issue #2125365: Sports Trivia compatability with EclairDianne Hackborn2009-09-281-12/+114
| | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a mechanism to tell Paint the scaling factor its target canvas will have, for it to compute font metrics based on the correct font size. Only TextView uses this, but that is enough for the large majority of apps. Change-Id: I6cacaa0dd26d40ee3ad959bed0028678d6e9016e
* | | Fix but processing raster state pragma.Jason Sams2009-09-281-2/+2
|/ / | | | | | | rename stateFragmentStore to stateStore
* | Improve logging code to dump more detaild rs object info. Fix bug with ↵Jason Sams2009-09-275-156/+195
| | | | | | | | predefined elements not being recreated for contexts after one was destroyed. Add stricter type enforcement.
* | Reduce debugging spew and add props to selectivly re-enable it.Jason Sams2009-09-251-7/+7
| | | | | | | | change-id: Ib59ed5d7a9d479ccd1af456029735dbc65ae1efe
* | Improve renderscript context teardown. Track object in the system and then ↵Jason Sams2009-09-252-1/+6
| | | | | | | | force their cleanup by releasing all user references once destroy context is called. Java layer will no longer send destroy notifications for objects garbage collected once a context is destroyed.
* | Add a method to destroy the RS object.Joe Onorato2009-09-251-1/+4
| |
* | Implement pause/resume for the RS thread.Jason Sams2009-09-242-2/+19
| |
* | Remove depricated triangleMesh.Jason Sams2009-09-231-71/+15
| |
* | Fix issue #2125720 Weather Forecast Widget - graphics do not scaleDianne Hackborn2009-09-231-2/+7
| | | | | | | | | | | | I forgot to add the new density field to the Bitmaps' parcelable data. Change-Id: I77cf3e93e356297e0caed6fc71b62b5cd8f79124
* | Merge change 26667 into eclairAndroid (Google) Code Review2009-09-233-3/+131
|\ \ | | | | | | | | | | | | * changes: Add raster object to control point and line params. Add flag to force SW rendering.
| * | Add raster object to control point and line params. Add flag to force SW ↵Jason Sams2009-09-233-3/+131
| | | | | | | | | | | | rendering.
* | | Fix #2101821: Cut labels of menu items in "SnapTell" market app.Dianne Hackborn2009-09-231-6/+20
|/ / | | | | | | | | | | | | | | | | Ummmm... this turns out to be pretty bad. NinePatchDrawable was not scaling its reported padding for compatibility mode, causing spacing to be off. All over the place. This change should improve things quite a bit (and magically makes nearly all of the menu flaws go away). Change-Id: I94a8310d95b908b6f087db97d9afaed654ca6de5
* | Implement more type checks on Allocations.Jason Sams2009-09-215-75/+168
| | | | | | | | | | Add tracking for allocations created using the "sized" helper. Add more param validation for data upload calls.
* | Fix 2092386: Support yuyv for camera preview format.Chih-Chung Chang2009-09-211-0/+7
| | | | | | | | Change-Id: I3ef821fed2132a9faf92983324c7e036d0f5641e
* | Merge change 25394 into eclairAndroid (Google) Code Review2009-09-161-5/+8
|\ \ | | | | | | | | | | | | * changes: Add StateListDrawable's dither flag to the constant state.
| * | Add StateListDrawable's dither flag to the constant state.Romain Guy2009-09-161-5/+8
| | | | | | | | | | | | Change-Id: Ie377bfe3dfb83c33df3c0cc5a02810332a60a322
* | | Merge change 25185 into eclairAndroid (Google) Code Review2009-09-162-0/+39
|\ \ \ | |/ / |/| | | | | | | | * changes: Implement renderscript Invokables.
| * | Implement renderscript Invokables.Jason Sams2009-09-162-0/+39
| | |
* | | Build the BitmapShader if it hasn't been built yet.Romain Guy2009-09-151-1/+2
|/ / | | | | | | | | | | This was causing a bug in the InCall UI where the background would be stretched. Change-Id: Ie25a7d09f4779f166e267b2f921d40441ce361d2
* | redraw once more on a touch-up if we've been dragging, so we can redraw in ↵Mike Reed2009-09-151-4/+10
| | | | | | | | | | | | high-quality mode update dox on BlurMaskFilter
* | Merge change 25100 into eclairAndroid (Google) Code Review2009-09-152-0/+5
|\ \ | | | | | | | | | | | | * changes: Implement Object readback.