Skip to content
Snippets Groups Projects
  1. Nov 04, 2020
    • Mathew Inwood's avatar
      Add maxTargetSdk restriction to unused APIs. · 5d123b67
      Mathew Inwood authored
      These are APIs that have @UnsupportedAppUsage but for which we don't
      have any evidence of them currently being used, so should be safe to
      remove from the unsupported list.
      
      Bug: 170729553
      Test: Treehugger
      Merged-In: I626caf7c1fe46c5ab1f39c2895b42a34319f771a
      Change-Id: I54e5ecd11e76ca1de3c5893e3a98b0108e735413
      5d123b67
  2. Jul 02, 2020
  3. Feb 21, 2020
    • Derek Sollenberger's avatar
      Cleanup header and build targets for libhwui clients. · ee538a3a
      Derek Sollenberger authored
      Targets that will also be contained within the UI module
      are allowed to access internal headers.  All other targets
      that depend on libhwui are restricted to using the APEX headers.
      
      Bug: 137655431
      Test: CtsUiRenderingTestCases
      Change-Id: Id92e9874dafb98bd79839d45ab8f22ab999689de
      ee538a3a
  4. Jan 14, 2020
    • Artur Satayev's avatar
      Use new UnsupportedAppUsage annotation. · 53ada2ab
      Artur Satayev authored
      Existing annotations in libcore/ and frameworks/ will deleted after the migration. This also means that any java library that compiles @UnsupportedAppUsage requires a direct dependency on "unsupportedappusage" java_library.
      
      Bug: 145132366
      Test: m && diff unsupportedappusage_index.csv \
            git diff HEAD^ HEAD | grep '^[+-][^+-]' | grep -v '.import'
      Merged-In: I853372f3c6fef905553bb31be4f1bb48df735f7a
      Change-Id: I853372f3c6fef905553bb31be4f1bb48df735f7a
      53ada2ab
  5. Jan 08, 2020
    • Derek Sollenberger's avatar
      Update renderscript to use stable graphics APIs · db98b528
      Derek Sollenberger authored
      This change removes usage of skia data structures and replaces
      them with stable C APIs. It also removes two unused java APIs
      that were missing their native components.
      
      Test: CTS presubmit tests
      Bug: 137655431
      Change-Id: I18cbe0cf9dc731c4c6c1f645be0df2f462764118
      db98b528
    • Artur Satayev's avatar
      Use new UnsupportedAppUsage annotation. · 2ebb31c0
      Artur Satayev authored
      Existing annotations in libcore/ and frameworks/ will deleted after the migration. This also means that any java library that compiles @UnsupportedAppUsage requires a direct dependency on "unsupportedappusage" java_library.
      
      Bug: 145132366
      Test: m && diff unsupportedappusage_index.csv \
            git diff HEAD^ HEAD | grep '^[+-][^+-]' | grep -v '.import'
      
      Change-Id: I853372f3c6fef905553bb31be4f1bb48df735f7a
      2ebb31c0
  6. Dec 19, 2019
  7. Dec 18, 2019
    • Artur Satayev's avatar
      Use new UnsupportedAppUsage annotation. · a5264903
      Artur Satayev authored
      Existing annotations in libcore/ and frameworks/ will deleted after the migration. This also means that any java library that compiles @UnsupportedAppUsage requires a direct dependency on "unsupportedappusage" java_library.
      
      Bug: 145132366
      Test: m && diff unsupportedappusage_index.csv \
            git diff HEAD^ HEAD | grep '^[+-][^+-]' | grep -v '.import'
      Change-Id: I087bb1cecbe59f1cf0c2e770c735d7a433722c6f
      a5264903
  8. Mar 27, 2019
    • Leon Scroggins III's avatar
      Pass Bitmap's native instance to JNI where feasible · 71fae62f
      Leon Scroggins III authored
      Test: CtsGraphicsTestCases, CtsUiRenderingTestCases,
            CtsRenderscriptTestCases
      
      This is significantly faster than passing the Java object down and then
      calling a JNI method to retrieve the pointer. See
      https://buganizer.corp.google.com/issues/16656908#comment19
      
      In some cases this changes what used to be native crashes (due to
      android::BitmapWrapper:assertValid's LOG_ALWAYS_FATAL_IF) into
      NullPointerExceptions (if a caller used a null Bitmap).
      
      In addition:
      - Remove unnecessary JNIEnv param from toBitmap(jlong)
      - Change instances of toBitmap(JNIEnv*, jobject) to the above
      - Replace calls to GraphicsJNI::getSkBitmap() to inline calls to
        toBitmap/getSkBitmap
      - make Canvas#nInitRaster @FastNative (FIXME: Could these be
        @CriticalNative?)
      
      Change-Id: I6194097be1b6e6952eba70e1e7052a5a250eed93
      71fae62f
  9. Mar 06, 2019
  10. Feb 11, 2019
    • Hans Boehm's avatar
      Correct registerNativeAllocation type · da3cee60
      Hans Boehm authored
      We're changing the argument type to long, since it should be roughly
      large enough to hold a size_t everywhere.
      
      Make style checker happy by reordering imports.
      
      Test: Treehugger
      Change-Id: Iccdc5fa592f56d448817f7762af1cff27b4fc2a8
      da3cee60
  11. Aug 06, 2018
    • Mathew Inwood's avatar
      Add @UnsupportedAppUsage annotations · 1532447a
      Mathew Inwood authored
      For packages:
        android.renderscript
      
      This is an automatically generated CL. See go/UnsupportedAppUsage
      for more details.
      
      Exempted-From-Owner-Approval: Mechanical changes to the codebase
      which have been approved by Android API council and announced on
      android-eng@
      
      Bug: 110868826
      Test: m
      Change-Id: I016f6e720e79c48afe44f4690b5dd99fc81ae780
      Merged-In: I1aa8ebca448547031b426a7b305c5c3d6fcf2652
      1532447a
  12. Aug 02, 2018
    • Mathew Inwood's avatar
      Add @UnsupportedAppUsage annotations · f0c90b1f
      Mathew Inwood authored
      For packages:
        android.renderscript
      
      This is an automatically generated CL. See go/UnsupportedAppUsage
      for more details.
      
      Exempted-From-Owner-Approval: Mechanical changes to the codebase
      which have been approved by Android API council and announced on
      android-eng@
      
      Bug: 110868826
      Test: m
      Change-Id: I1aa8ebca448547031b426a7b305c5c3d6fcf2652
      f0c90b1f
  13. Mar 21, 2018
  14. Mar 01, 2018
    • Adam Lesinski's avatar
      Refactor AssetManager · bebfcc46
      Adam Lesinski authored
      Bug: 64071469
      Test: atest CtsContentTestCases
      Change-Id: Ia6856157e8813856268fba003e1e591d690cb26e
      bebfcc46
  15. Feb 15, 2018
  16. Feb 09, 2018
  17. Feb 06, 2018
  18. Jan 27, 2018
  19. Jan 26, 2018
  20. Jan 24, 2018
  21. Jan 23, 2018
  22. Jan 10, 2018
  23. Oct 06, 2017
  24. Jul 24, 2017
  25. Jul 19, 2017
    • Steven Moreland's avatar
      frameworks/base: use proper nativehelper headers · 2279b253
      Steven Moreland authored
      libnativehelper exports headers under nativehelper. These were
      available before incorrectly as global headers in order to give
      access to jni.h.
      
      Test: modules using frameworks/base find headers
      Bug: 63762847
      Change-Id: I0f9f231acdebe460f279135462f43d3e32eff64d
      2279b253
  26. Jun 13, 2017
    • Yang Ni's avatar
      Do not CloseGuard KernelID or FieldID · 3a84a23f
      Yang Ni authored
      Bug: 28053584
      
      Stop CloseGuarding for two reasons:
      
      1) KernelID and FieldID objects are constructed in auto-generated
      (RenderScript reflected) Java code. It would be impossible for a user to
      explicitly call destroy() on them. Guarding them would leave a lot of
      noisy warnings in logcat.
      
      2) These KernelID and FieldID objects are not big compared to other
      RenderScript objects, e.g. Allocations. They occupy almost no native
      resources except for a native pointer. Leaving their destruction to Java
      GC would be completely acceptable, since any delay in reclaiming them is
      unlikely to cause memory pressure.
      
      Test: CTS on x86_64 emulator
      Change-Id: I587b5561a0b2bdbf0b2e95bf2995c20d5f5faf9d
      3a84a23f
  27. May 05, 2017
  28. May 04, 2017
    • Yang Ni's avatar
      Destroy Allocation with ScriptIntrinsicLut · 8b8f75a7
      Yang Ni authored
      Bug: 28053584
      
      On destroying the intrinsic, destroy its contained Allocation right away.
      
      Test: CTS on x86_64 emulator
      Change-Id: I5ca0da33b620c3291b7cafda31a6cc83eb7461a0
      8b8f75a7
  29. May 02, 2017
    • Steven Moreland's avatar
      RenderScript: IWYU · c941fb0f
      Steven Moreland authored
      Renderscript was depending on macros from android-base that were
      transitively included from MQDescriptor.h
      
      Test: links
      Bug: 37791060
      Change-Id: Ie34ddef67328c5fcc6b0122a32725b980615ff43
      (cherry picked from commit dc01e938)
      c941fb0f
  30. May 01, 2017
    • Steven Moreland's avatar
      RenderScript: IWYU · dc01e938
      Steven Moreland authored
      Renderscript was depending on macros from android-base that were
      transitively included from MQDescriptor.h
      
      Test: links
      Bug: 37791060
      Change-Id: Ie34ddef67328c5fcc6b0122a32725b980615ff43
      dc01e938
  31. Apr 20, 2017
  32. Apr 18, 2017
  33. Apr 04, 2017
  34. Mar 15, 2017
    • Pawin Vongmasa's avatar
      Make IGraphicBufferProducer a hybrid interface. · 34cca21e
      Pawin Vongmasa authored
      android::IGraphicBufferProducer will now become a hybrid
      interface on
      top of the HIDL interface
      android::hardware::graphics::bufferqueue::V1_0::IGraphicBufferProducer.
      
      Test: With CtsMediaTestCases.apk installed,
      adb shell am instrument -e size small -w
      'android.media.cts/android.support.test.runner.AndroidJUnitRunner'
      
      Bug: 33854657
      Change-Id: Ia8914ea49d2acf3d43682982a164d7e10f7b8542
      34cca21e
Loading