aboutsummaryrefslogtreecommitdiff
path: root/third_party/gif_decoder
diff options
context:
space:
mode:
authorSam Judd <judds@google.com>2014-10-23 18:57:03 -0700
committerSam Judd <judds@google.com>2014-10-23 18:57:03 -0700
commit64d97bb3532525879dd90f3b246ac6060f466684 (patch)
tree7baaf04e2e2c93cbe4ac3ccd2a4b65c02a34ebc7 /third_party/gif_decoder
parent32f7a826624747bae652e4d46a52739047ed9bd0 (diff)
downloadglide-64d97bb3532525879dd90f3b246ac6060f466684.tar.gz
Document width/height values.
Fixes #145.
Diffstat (limited to 'third_party/gif_decoder')
-rw-r--r--third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifDecoder.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifDecoder.java b/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifDecoder.java
index 8af39234..161c9321 100644
--- a/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifDecoder.java
+++ b/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifDecoder.java
@@ -135,8 +135,8 @@ public class GifDecoder {
* Returns an {@link Bitmap} with exactly the given dimensions and config, or null if no such {@link Bitmap}
* could be obtained.
*
- * @param width The width of the desired {@link android.graphics.Bitmap}.
- * @param height The height of the desired {@link android.graphics.Bitmap}.
+ * @param width The width in pixels of the desired {@link android.graphics.Bitmap}.
+ * @param height The height in pixels of the desired {@link android.graphics.Bitmap}.
* @param config The {@link android.graphics.Bitmap.Config} of the desired {@link android.graphics.Bitmap}.
*/
public Bitmap obtain(int width, int height, Bitmap.Config config);