Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0cf42ffb authored by Jason Sams's avatar Jason Sams Committed by Android (Google) Code Review
Browse files

Merge "Fix API name based on API review" into mnc-dev

parents 51cfdd62 f7642306
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27736,7 +27736,7 @@ package android.renderscript {
    method public final android.content.Context getApplicationContext();
    method public android.renderscript.RenderScript.RSErrorHandler getErrorHandler();
    method public android.renderscript.RenderScript.RSMessageHandler getMessageHandler();
    method public static long getMinorID();
    method public static long getMinorVersion();
    method public static void releaseAllContexts();
    method public void sendMessage(int, int[]);
    method public void setErrorHandler(android.renderscript.RenderScript.RSErrorHandler);
+1 −1
Original line number Diff line number Diff line
@@ -29759,7 +29759,7 @@ package android.renderscript {
    method public final android.content.Context getApplicationContext();
    method public android.renderscript.RenderScript.RSErrorHandler getErrorHandler();
    method public android.renderscript.RenderScript.RSMessageHandler getMessageHandler();
    method public static long getMinorID();
    method public static long getMinorVersion();
    method public static void releaseAllContexts();
    method public void sendMessage(int, int[]);
    method public void setErrorHandler(android.renderscript.RenderScript.RSErrorHandler);
+3 −3
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ public class RenderScript {

    // this should be a monotonically increasing ID
    // used in conjunction with the API version of a device
    static final long sMinorID = 1;
    static final long sMinorVersion = 1;

    /**
     * Returns an identifier that can be used to identify a particular
@@ -140,8 +140,8 @@ public class RenderScript {
     * @return The minor RenderScript version number
     *
     */
    public static long getMinorID() {
        return sMinorID;
    public static long getMinorVersion() {
        return sMinorVersion;
    }

    /**