Commit Graph

4036 Commits

Author SHA1 Message Date
Leon Scroggins
cfffe4e69f Merge "Remove Bitmap#createGraphicBufferHandle" 2020-04-22 19:50:40 +00:00
Leon Scroggins III
457b038ff9 Remove Bitmap#createGraphicBufferHandle
Bug: 148155907
Bug: 150395371
Bug: 150956734
Test: make

All internal callers have been moved to getHardwareBuffer. Although the
method was listed as @UnsupportedAppUsage and go/nonsdk-dash-per-api
lists MEDIUM usage, there is no runtime usage logged, and static
analysis only reveals one call site that has been updated.

Change-Id: If8c652efd68e82286ab46eed0084b5607152ad01
2020-04-22 12:44:42 -04:00
Leon Scroggins
a34ad12067 Merge "Do not return a closed HardwareBuffer" 2020-04-21 20:05:51 +00:00
TreeHugger Robot
23be5d8b69 Merge "Update doc formatting." into rvc-dev am: 769aa98004 am: 3b3ac77d2e am: 39957a9450 am: de4c7a20f0
Change-Id: I6d925f8f47864158e18c76fc734363a1eb79cbc8
2020-04-21 01:49:34 +00:00
Sumir Kataria
67d06a9965 Update doc formatting.
Add missing <p> tags which should make some methods
more readable.  Also added a few {@code} tags and a
couple of missing {@link} tags.

Fixes: 154547852
Test: m offline-sdk-docs

Change-Id: I1b8d0212b54e902378d5d25f6d555f69af207604
2020-04-20 16:13:13 -07:00
Leon Scroggins III
28db33838b Do not return a closed HardwareBuffer
Bug: 148155907
Bug: 150395371
Test: I638094c90f7a49bf0f625cf5cdc4e5377f67de79

Follow up to I408cff708efa76f89e0c4c6dae16f19166ffe74d. If the
HardwareBuffer (Java object) held by a Bitmap is closed, it is not
useful to a client. Rather than returning it, create a new object from
the native object.

Change-Id: Ia35f211fb9f42929ac5e50f038de201c9912f918
2020-04-20 10:53:59 -04:00
John Reck
59ccb938ff Merge "Document that getTransformMatrix can inset" into rvc-dev am: 9c52543162 am: ec40808241 am: ff53ebdedb am: 1413a83ecf
Change-Id: Id7524f65f3083f560e030a7d7020a0595f24f031
2020-04-17 20:07:25 +00:00
John Reck
9c52543162 Merge "Document that getTransformMatrix can inset" into rvc-dev 2020-04-17 19:20:38 +00:00
John Reck
62f8b4f3d6 Document that getTransformMatrix can inset
Bug: 152621633
Test: none, docs only change
Change-Id: I4a357affdf698c8eb70ed7abbfa828586b2da0ec
2020-04-16 15:42:14 -07:00
TreeHugger Robot
0ed90ef8dd Merge "Plumb display density to HWUI through ActivityThread." 2020-04-16 21:21:03 +00:00
Alec Mouri
d5fa1dcff5 Plumb display density to HWUI through ActivityThread.
Whenever an activity's configuration is updated, then tell
HardwareRenderer about it. That way, visualizating frame info does not
need to learn the display density from SurfaceFlinger, which reduces the
native-side api surface for displays.

For now, this method is kept hidden and will be stabilized when
HardwareRenderer's apis are stabilized for Mainline inclusion.

Bug: 146387012
Test: boots, builds
Test: jank visualizer
Change-Id: I51d2964bb78882516ebdff05b80819814894bdce
2020-04-15 14:55:59 -07:00
Leon Scroggins III
865f0f1ec9 Support Skia's gray SkColorSpaces
Bug: 153410582
Test: I0a280cdfdb02766f5e415408386cce49a59504ab

For gray color spaces, Skia creates a special toXYZD50 matrix which does
not have any concept of primaries. Update the Java ColorSpace to
recognize such a matrix and treat it specially. Instead of creating
primaries, use a set of dummy values.

This fixes a bug where the Java ColorSpace was invalid (NaNs in its
transforms) and applying it to a new Bitmap yielded incorrect results.

Fix up the @see links in getPrimaries and surrounding methods.

Change-Id: I94fe232e10f56a69832d4a39a2e5909eac641264
(cherry picked from commit d82d585f28)
Merged-In: I94fe232e10f56a69832d4a39a2e5909eac641264
2020-04-14 18:43:16 +00:00
TreeHugger Robot
d6692575b0 Merge "Support Skia's gray SkColorSpaces" 2020-04-14 17:28:11 +00:00
Leon Scroggins III
d82d585f28 Support Skia's gray SkColorSpaces
Bug: 153410582
Test: I0a280cdfdb02766f5e415408386cce49a59504ab

For gray color spaces, Skia creates a special toXYZD50 matrix which does
not have any concept of primaries. Update the Java ColorSpace to
recognize such a matrix and treat it specially. Instead of creating
primaries, use a set of dummy values.

This fixes a bug where the Java ColorSpace was invalid (NaNs in its
transforms) and applying it to a new Bitmap yielded incorrect results.

Fix up the @see links in getPrimaries and surrounding methods.

Change-Id: I94fe232e10f56a69832d4a39a2e5909eac641264
2020-04-14 10:51:31 -04:00
Leon Scroggins III
143dfeff2d Replace ImageDecoder.sApiLevel with a SystemApi helper
Bug: 152322291
Test: CtsGraphicsTestCases

ImageDecoder is moving to a mainline module, so the system can no longer
access the @hidden sApiLevel without making it @SystemApi. Instead of
promoting the existing API, provide a common class to be used by any UI
rendering class that needs to access the targetSdkVersion. Switch AVD to
use the new class, which is a SystemApi.

Change-Id: Ie7172fb93364a1e04ab844b8fa64887bf9d8b005
2020-04-01 13:18:00 -04:00
Leon Scroggins
99c1b5a1e7 Merge "Make createSource(ContentResolver, Uri, Resources) a SystemApi" 2020-04-01 14:27:00 +00:00
TreeHugger Robot
d4620f6068 Merge "BRD: Correct @NonNull annotation" 2020-03-31 21:04:28 +00:00
TreeHugger Robot
3acd16e6ec Merge "Expose ImageDecoder#createSource(byte[] (, int, int))" 2020-03-31 21:04:00 +00:00
Leon Scroggins III
8deb1d5e4a Remove UnsupportedAppUsage from AID
Bug: 152322291
Test: make

go/nonsdk-dash-per-api shows no usage. This was likely a false positive
generated by JNI calls.

Change-Id: I87f9bd0a69c6f7561a5ce3dfe371deb774307b23
2020-03-31 17:16:20 +00:00
Leon Scroggins III
97eacc36a3 Make createSource(ContentResolver, Uri, Resources) a SystemApi
Bug: 152322291
Test: make

Once ImageDecoder is in a mainline module, the system (i.e. ImageView)
needs to be able to access this method.

External clients can already use createSource(ContentResolver, Uri). If
they want density scaling, they can use
createSource(Resources, int resId).

Change-Id: I560972c1ef08ee5e610e3c2c182353a6767fd082
2020-03-30 12:29:54 -04:00
Leon Scroggins III
8060fa8328 Expose ImageDecoder#createSource(byte[] (, int, int))
Bug: 152322291
Test: Ib50eba48e3557a0147b95dd6ce3e8589ab07c127

These methods are used in various places in the system, and the system
will not be able to access them as @hidden APIs once ImageDecoder is
part of a mainline module. They were originally hidden to discourage
clients from keeping the encoded data allocated in a large buffer,
especially for animated images. But this is already possible using a
ByteBuffer.

Change-Id: If5350d4f2ff88ac634e48b9224d70954fd312d30
2020-03-30 12:26:52 -04:00
Leon Scroggins III
f00b5a580b Make ImageDecoder#getSampledSize private
Bug: 152322291
Test: make

I originally added this thinking a client might use the following
pattern:

    Size size = decoder.getSampledSize(sampleSize);
    decoder.setTargetSize(size.getWidth(), size.getHeight());

But this is unnecessary. The client can directly call:

    decoder.setTargetSampleSize(sampleSize);

OTOH, if the client wanted to use a crop, too, then it would be useful
to know the exact sampled size. That could also be satisfied by adding
accessors that return the target size.

Change-Id: Id61907a8268f424d70503598d5bf844cde469d60
2020-03-30 14:12:17 +00:00
TreeHugger Robot
e270f1452f Merge "Add mSourceDrawableId to copy constructor" into rvc-dev am: 8e32fa537b am: 4f72ff09ec am: 1450d0afd1 am: be358e3b47
Change-Id: I8b594f7fdb40bd194465412531cb9df3524347a3
2020-03-27 22:36:06 +00:00
TreeHugger Robot
918b16d55c Merge "Remove Bitmap#createAshmemBitmap(Config)" 2020-03-27 21:56:50 +00:00
TreeHugger Robot
536b6cff44 Merge "Address @hides in ImageDecoder" 2020-03-27 20:43:14 +00:00
Leon Scroggins III
f54df24a25 BRD: Correct @NonNull annotation
Bug: 140600285
Test: Ifd9e9abe3f2c89f724a0b918d99ec4e9db65ad56

After adding some tests, I confirmed that newInstance(InputStream) (and
the deprecated version that includes boolean isShareable) can return
null if the InputStream is null. Update the annotations for both - the
old one that has always been wrong, and the new one added in
I0bf8c4c72cc118d2799a59e8eb6c2cede546fceb.

Change-Id: Ib820edd1ad62665092c272a7b89b0a29b0e1bb32
2020-03-27 16:22:07 -04:00
TreeHugger Robot
793a685653 Merge "Remove UnsupportedAppUsage from ImageDecoder" 2020-03-27 20:04:52 +00:00
Leon Scroggins
c101eb6a44 Merge "Remove Bitmap#wrapHardwareBuffer(GraphicBuffer)" 2020-03-27 18:58:29 +00:00
Leon Scroggins III
35f16e81dd Address @hides in ImageDecoder
Bug: 152322291
Test: make

Once ImageDecoder is in a mainline module, the system can no longer
access @hidden methods (unless they're @SystemApi), so this
removes/documents some. The ones in Source are not used anywhere outside
ImageDecoder AFAICT, so they are unneeded. Document setOutPaddingRect,
which needs to be public/@hide so it can be accessed by the drawable
package, which will also be in the module.

Change-Id: I5cd9c0553e8d27d6679cbc431fcadc96d818687d
2020-03-27 17:59:51 +00:00
Ryan Mitchell
26ff673458 Add mSourceDrawableId to copy constructor
The copy constructor of AdaptiveIconDrawable#LayerState currently does
not copy mSourceDrawableId from the original layer state. This prevents
drawables created from preloaded AdaptiveIconDrawables from having the
correct source drawable resource id.

Bug: 148488431
Test: CtsContentTestCases:android.content.pm.cts.PackageManagerTest
Change-Id: I7795a337a2a364677e375776c7aec5bc9189e0da
2020-03-27 10:32:52 -07:00
Leon Scroggins III
0356f7b169 Remove UnsupportedAppUsage from ImageDecoder
Bug: 152322291
Test: none

go/nonsdk-dash shows no usage of postProcessAndRelease, so remove the
annotation.

Change-Id: I7c7b91bd58c30f901f98a11c9688beb0fcd7db91
2020-03-27 13:20:44 -04:00
TreeHugger Robot
85f2116091 Merge "Add public API for @hidden Bitmap#createAshmemBitmap" 2020-03-27 16:08:33 +00:00
Leon Scroggins
789b93f006 Merge "Make Bitmap#setNinePatchChunk private" 2020-03-27 14:17:26 +00:00
Leon Scroggins
2a1b63c7df Merge "Convert ScreenshotGraphicBuffer to ScreenshotHardwareBuffer" 2020-03-26 17:29:14 +00:00
Leon Scroggins III
bef9efe885 Remove Bitmap#wrapHardwareBuffer(GraphicBuffer)
Bug: 150395371
Test: make

This method is being replaced by
Bitmap#wrapHardwareBuffer(HardwareBuffer) as part of the switch to a
mainline module.

With I41cb03fb65432d208820a428783de82a9f152035, there are no more
callers of this overload.

Change-Id: Ia837d6c4019d1e8495829b606fe62a68d557119a
2020-03-25 13:45:22 -04:00
Leon Scroggins III
46c927ed33 Convert ScreenshotGraphicBuffer to ScreenshotHardwareBuffer
Bug: 150395371
Test: make && flashall

Bitmap is replacing methods that use a hidden GraphicBuffer with ones
that use the public HardwareBuffer. ScreenshotGraphicBuffer is just a
holder for GraphicBuffer and some metadata; switch it to hold a
HardwareBuffer (and rename to match).

Remove GraphicBuffer#createFromExisting, which was only called by
ScreenshotGraphicBuffer#createFromNative. Also remove JNI references to
that method, which were no longer in use.

Switch uses of GraphicBuffer that retrieve it from a
ScreenshotGraphicBuffer to HardwareBuffer.

Changes are almost entirely mechanical:
- (Screenshot)GraphicBuffer -> (Screenshot)HardwareBuffer
- GraphicBuffer#destroy -> HardwareBuffer#close
- getGraphicBuffer -> getHardwareBuffer

When creating a Snapshot in SurfaceFreezer, use the ColorSpace of the
ScreenshotHardwareBuffer.

Remove GraphicBuffer#createFromExisting. This is no longer necessary,
and although it was marked UnsupportedAppUsage, go/nonsdk-dash shows no
usage.

Change-Id: I41cb03fb65432d208820a428783de82a9f152035
2020-03-25 13:45:12 -04:00
Alec Mouri
1559ca9889 Merge "Initial boilerplate for an updatable graphics jar" 2020-03-25 17:03:51 +00:00
Leon Scroggins III
b133bbf60c Make Bitmap#setNinePatchChunk private
Bug: 150395371
Test: make

This is no longer used internally. Remove @hide so no one is tempted to
use it. Leave the method here out of caution - it is marked
@UnsupportedAppUsage and static analysis shows some usage (though
runtime analysis shows none). Though it's likely unnecessary to keep,
there is little to no burden to keeping it.

Change-Id: I2f2f7b6cec45630acde1e0d903ca5dc6a3fec349
2020-03-24 11:46:55 -04:00
Leon Scroggins III
76d32b9732 Remove Bitmap#createAshmemBitmap(Config)
Bug: 150395371
Test: make

After I359187a5c70b5e241c7f5879d50fde2a7449c818, there are no more
internal callers. go/nonsdk-dash only shows Instagram apps calling it.
We've discussed with Instagram, and they no longer use this version.

Change-Id: Ic152223f62becf3e6b3cb0006ad762bf85337db6
2020-03-23 16:09:34 -04:00
Leon Scroggins III
3eb9843a2f Add public API for @hidden Bitmap#createAshmemBitmap
Bug: 150395371
Test: I442cd0c7a849e4c6a2fe7ba21b25a6e44417bbf5

The system needs to move off of @hidden Bitmap APIs so Bitmap can move
to a mainline module. It is valuable to provide a public way for clients
to create a Bitmap backed by ashmem, and the method's usage level is
HIGH. As I understand it, ashmem is being deprecated, so make the new
name more general: #asShared(). This method calls createAshmemBitmap(),
which must continue to exist for now due to the greylist. Add a
maxTargetSdk and publicAlternatives to move clients to the new method.

Mark asShared as @NonNull. It should only fail due to a failure to
allocate the shared memory. Throw a RunTimeException in this (rare)
case.

Add a (private) native method to check whether the Bitmap is already
backed by ashmem so it can skip the copy as necessary.

Remove outdated comments in both createAshmemBitmap methods regarding
SRGB. The new Bitmap will have the same ColorSpace as the original.

Remove the Config param from DisplayContent#screenshotLocked. It is only
ever called with ARGB_8888, which matches the ScreenshotGraphicBuffer
it is copied from. This means Bitmap#createAshmemBitmap(Config) does not
need a public version. It may need to continue to exist due to
@UnsupportedAppUsage.

Change-Id: I359187a5c70b5e241c7f5879d50fde2a7449c818
2020-03-23 16:09:26 -04:00
Leon Scroggins III
0bd3a6b356 Remove UnsupportedAppUsage from nativeNewInstance([BII)
Test: make

This method is marked as UnsupportedAppUsage, but that was for the
signature prior to I0bf8c4c72cc118d2799a59e8eb6c2cede546fceb (which has
not been released). This was a false positive, anyway. No app should be
using this while there is an almost identical public method.

Change-Id: Ib71a58be6ec72cd4c52e8fca3c2cd4055df55ecf
2020-03-20 13:53:14 -04:00
Alec Mouri
ef37c24f44 Initial boilerplate for an updatable graphics jar
Bug: 149773383
Test: builds
Test: hacks to verify that @hide apis are actually two-way hidden
Change-Id: I148b54fe47560b2335e9d878ed93bf167d6c7517
2020-03-18 19:50:27 +00:00
Leon Scroggins
a9fec9eeeb Merge "Remove isShareable from BitmapRegionDecoder" 2020-03-11 18:58:18 +00:00
TreeHugger Robot
b378dc2514 Merge "Remove LargeBitmap" 2020-03-08 19:35:27 +00:00
Leon Scroggins III
37d87372b8 Remove LargeBitmap
Bug: 150395371
Test: make

This became BitmapRegionDecoder in
I3e60c7fe4abd0289e1384e69a08fd20fe6fb0e10, but we forgot to delete the
Java file. It's been unused since then.

Change-Id: Ibe4e813d448346c9b15d4e112a2062713321edc9
2020-03-06 16:47:05 -05:00
Leon Scroggins III
a72a7ffe47 Expose Bitmap#getHardwareBuffer
Bug: 148155907
Bug: 150395371
Test: I652101b6a4b3d9de4e77a316ba0436ce466f3620

Bitmap already has a method to create a Bitmap from a HardwareBuffer,
and the NDK allows doing the reverse. This updates the SDK to allow
retrieving the HardwareBuffer, too.

Update the docs to match wrapHardwareBuffer regarding modifications.

Throw an Exception if called on a non-HARDWARE Bitmap, which is
friendlier than the crash that previously happened on the hidden API
(and the one it replaced).

Change-Id: I408cff708efa76f89e0c4c6dae16f19166ffe74d
2020-03-05 17:51:56 -05:00
Leon Scroggins III
96a13885e8 Remove isShareable from BitmapRegionDecoder
Bug: 140600285
Test: CtsGraphicsTestCases:android.graphics.cts.BitmapRegionDecoderTest
Test: I684e0ed6049e146e2c1698383c73709a7163b642

Clean up BRD in preparation for mainline module changes.
isShareable has been ignored for a long time, so update the APIs to
reflect that. Deprecate the existing ones, and add replacements without
isShareable. Make newInstance(FileDescriptor, boolean) into
newInstance(ParcelFileDescriptor), as recommended by the build failure.
- newInstance(byte[], int, int, boolean) has ignored it since
I7dd545c9d52d21c226e11b8921e35a1d9bba9515 (GB)
- newInstance(FileDescriptor, boolean) has ignored it since
Id1e1c8c5938ee1a33c6fa3caabd2c28e89243eb4 (KITKAT)
- newInstance(InputStream, boolean) and newInstance(String, boolean)
have always ignored it

Document WebP and HEIF support.

Add @NonNull annotations. Remove misleading comments about
returning null on failure. My understanding is that if it either returns
an object or throws an Exception, @NonNull is the appropriate
annotation - the client does not need to check for null.

Change-Id: I0bf8c4c72cc118d2799a59e8eb6c2cede546fceb
2020-03-05 14:28:09 +00:00
Leon Scroggins
1c49a551c8 Merge "Clean up easy Bitmap dependencies" 2020-03-04 14:18:22 +00:00
Leon Scroggins III
a4b20522f3 Clean up easy Bitmap dependencies
Bug: 150395371
Test: make

- Mark mDensity as package-protected, since it is not used elsewhere.
- Document getNativeInstance, getOpticalInsets, getNinePatchInsets,
  and scaleFromDensity - where they are called, and that they should not
  be called from outside the module.
- Mark setImmutable as private. No outside callers use it.

Change-Id: I85efe4829e2914222696aa659f8a21b699c3d788
2020-03-03 12:47:48 -05:00
Leon Scroggins
fb654cf97a Revert "Better preload drawable logging"
Bug: 63136392
Bug: 150395371
Test: make

This reverts commit 1480b67635.

Bitmap moving into a new mainline module in S. These module-boundary-
crossing hidden APIs need to be either made official or removed.

We already got the information we need from this logging, so remove it
and the hidden APIs. If/when we need to investigate this in the future,
we should be able to recreate the logging without crossing the boundary.

Change-Id: I5d094a0e427d225719614745867d5b00888d8fec
2020-03-03 10:17:53 -05:00