summaryrefslogtreecommitdiffstats
path: root/libs/hwui/Texture.h
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2010-07-02 11:20:34 -0700
committerRomain Guy <romainguy@android.com>2010-07-02 11:20:34 -0700
commit7d139ba2c331f11e9b485753cc727a0ff202f2a4 (patch)
tree7d61a0d1cacc78c0d3053d31d85c13a5aa3e3326 /libs/hwui/Texture.h
parentd73ddd2c9d459e363c07a8f5e47995b52b4ae049 (diff)
downloadframeworks_base-7d139ba2c331f11e9b485753cc727a0ff202f2a4.zip
frameworks_base-7d139ba2c331f11e9b485753cc727a0ff202f2a4.tar.gz
frameworks_base-7d139ba2c331f11e9b485753cc727a0ff202f2a4.tar.bz2
Remove extra leftover logs and use uint32_t instead of unsigned int.
Change-Id: I944f82fe3255de38dc04048cc8bd861f578f01a7
Diffstat (limited to 'libs/hwui/Texture.h')
-rw-r--r--libs/hwui/Texture.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/Texture.h b/libs/hwui/Texture.h
index 6802c59..d37013d 100644
--- a/libs/hwui/Texture.h
+++ b/libs/hwui/Texture.h
@@ -41,11 +41,11 @@ struct Texture {
/**
* Width of the backing bitmap.
*/
- unsigned int width;
+ uint32_t width;
/**
* Height of the backing bitmap.
*/
- unsigned int height;
+ uint32_t height;
}; // struct Texture
}; // namespace uirenderer