diff options
author | Leon Scroggins III <scroggo@google.com> | 2013-12-03 15:06:30 -0500 |
---|---|---|
committer | Leon Scroggins III <scroggo@google.com> | 2013-12-03 15:23:11 -0500 |
commit | 4b9a19a8f865970e0079f431c8c2c2a8e4333ae9 (patch) | |
tree | 8133e88dfa631ab30311375f3751f7b7ff09e58b /cmds | |
parent | 8af04d8b85183978aa6182c281325394bf47a593 (diff) | |
download | frameworks_base-4b9a19a8f865970e0079f431c8c2c2a8e4333ae9.zip frameworks_base-4b9a19a8f865970e0079f431c8c2c2a8e4333ae9.tar.gz frameworks_base-4b9a19a8f865970e0079f431c8c2c2a8e4333ae9.tar.bz2 |
Call SkBitmap::config() instead of ::getConfig()
getConfig() has been deprecated.
Change-Id: I32066256ab82ac4760c752c80856d1b56d291fae
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/bootanimation/BootAnimation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp index 0f610e9..8c2931f 100644 --- a/cmds/bootanimation/BootAnimation.cpp +++ b/cmds/bootanimation/BootAnimation.cpp @@ -123,7 +123,7 @@ status_t BootAnimation::initTexture(Texture* texture, AssetManager& assets, glGenTextures(1, &texture->name); glBindTexture(GL_TEXTURE_2D, texture->name); - switch (bitmap.getConfig()) { + switch (bitmap.config()) { case SkBitmap::kA8_Config: glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, w, h, 0, GL_ALPHA, GL_UNSIGNED_BYTE, p); @@ -181,7 +181,7 @@ status_t BootAnimation::initTexture(void* buffer, size_t len) if (tw < w) tw <<= 1; if (th < h) th <<= 1; - switch (bitmap.getConfig()) { + switch (bitmap.config()) { case SkBitmap::kARGB_8888_Config: if (tw != w || th != h) { glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA, |