aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar scroggo <scroggo@google.com>2014-12-01 11:35:19 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-12-01 11:35:19 -0800
commitca92fbd029518c1fb0f568d21e5a58008923e14f (patch)
tree8e4bbb9d0d9f46eedd37cf7e29b795cae0c5476f /include
parentaf57903f330a0afd0c10244d4a66f64fdbef5d1e (diff)
Remove orphaned SkImageDecoder::Target.
This was used by an experimental method on SkImageDecoder, which no longer exists. Review URL: https://codereview.chromium.org/760923003
Diffstat (limited to 'include')
-rw-r--r--include/core/SkImageDecoder.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/core/SkImageDecoder.h b/include/core/SkImageDecoder.h
index b384708d30..d720f4e5ed 100644
--- a/include/core/SkImageDecoder.h
+++ b/include/core/SkImageDecoder.h
@@ -313,21 +313,6 @@ public:
return DecodeMemory(buffer, size, bitmap, kUnknown_SkColorType, kDecodePixels_Mode, NULL);
}
- /**
- * Struct containing information about a pixel destination.
- */
- struct Target {
- /**
- * Pre-allocated memory.
- */
- void* fAddr;
-
- /**
- * Rowbytes of the allocated memory.
- */
- size_t fRowBytes;
- };
-
/** Decode the image stored in the specified SkStreamRewindable, and store the result
in bitmap. Return true for success or false on failure.