Rename getIntent() to getRenderIntent()

Bug: 37077433
Test: compile and ColorSpaceTests
Change-Id: I8eb1fa6136582eaac1d509ebfef7f67b0fffe1aa
This commit is contained in:
Romain Guy
2017-04-06 12:37:03 -07:00
parent 8d84e4cd1c
commit 1cf7b4fcb3
4 changed files with 4 additions and 4 deletions

View File

@@ -12849,7 +12849,7 @@ package android.graphics {
public static class ColorSpace.Connector {
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 float[] transform(float, float, float);
method public float[] transform(float[]);

View File

@@ -13582,7 +13582,7 @@ package android.graphics {
public static class ColorSpace.Connector {
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 float[] transform(float, float, float);
method public float[] transform(float[]);

View File

@@ -12899,7 +12899,7 @@ package android.graphics {
public static class ColorSpace.Connector {
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 float[] transform(float, float, float);
method public float[] transform(float[]);

View File

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