Merge "Rename getIntent() to getRenderIntent()" into oc-dev

This commit is contained in:
TreeHugger Robot
2017-04-06 21:34:13 +00:00
committed by Android (Google) Code Review
4 changed files with 4 additions and 4 deletions

View File

@@ -12856,7 +12856,7 @@ package android.graphics {
public static class ColorSpace.Connector { public static class ColorSpace.Connector {
method public android.graphics.ColorSpace getDestination(); method public android.graphics.ColorSpace getDestination();
method public android.graphics.ColorSpace.RenderIntent getIntent(); method public android.graphics.ColorSpace.RenderIntent getRenderIntent();
method public android.graphics.ColorSpace getSource(); method public android.graphics.ColorSpace getSource();
method public float[] transform(float, float, float); method public float[] transform(float, float, float);
method public float[] transform(float[]); method public float[] transform(float[]);

View File

@@ -13619,7 +13619,7 @@ package android.graphics {
public static class ColorSpace.Connector { public static class ColorSpace.Connector {
method public android.graphics.ColorSpace getDestination(); method public android.graphics.ColorSpace getDestination();
method public android.graphics.ColorSpace.RenderIntent getIntent(); method public android.graphics.ColorSpace.RenderIntent getRenderIntent();
method public android.graphics.ColorSpace getSource(); method public android.graphics.ColorSpace getSource();
method public float[] transform(float, float, float); method public float[] transform(float, float, float);
method public float[] transform(float[]); method public float[] transform(float[]);

View File

@@ -12906,7 +12906,7 @@ package android.graphics {
public static class ColorSpace.Connector { public static class ColorSpace.Connector {
method public android.graphics.ColorSpace getDestination(); method public android.graphics.ColorSpace getDestination();
method public android.graphics.ColorSpace.RenderIntent getIntent(); method public android.graphics.ColorSpace.RenderIntent getRenderIntent();
method public android.graphics.ColorSpace getSource(); method public android.graphics.ColorSpace getSource();
method public float[] transform(float, float, float); method public float[] transform(float, float, float);
method public float[] transform(float[]); method public float[] transform(float[]);

View File

@@ -3530,7 +3530,7 @@ public abstract class ColorSpace {
* *
* @see RenderIntent * @see RenderIntent
*/ */
public RenderIntent getIntent() { public RenderIntent getRenderIntent() {
return mIntent; return mIntent;
} }