Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: include/core/SkImageDecoder.h

Issue 99473004: Remove deprecated setPrefConfigTable. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/images/SkImageDecoder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkImageDecoder.h
diff --git a/include/core/SkImageDecoder.h b/include/core/SkImageDecoder.h
index 5745dbd5ba255032321bba0454d033684b15a21f..b255e2ad254b39cf70980870c8f4249d073b8daa 100644
--- a/include/core/SkImageDecoder.h
+++ b/include/core/SkImageDecoder.h
@@ -159,36 +159,6 @@ public:
Chooser* setChooser(Chooser*);
/**
- @Deprecated. Use the struct version instead.
-
- This optional table describes the caller's preferred config based on
- information about the src data. For this table, the src attributes are
- described in terms of depth (index (8), 16, 32/24) and if there is
- per-pixel alpha. These inputs combine to create an index into the
- pref[] table, which contains the caller's preferred config for that
- input, or kNo_Config if there is no preference.
-
- To specify no preference, call setPrefConfigTable(NULL), which is
- the default.
-
- Note, it is still at the discretion of the codec as to what output
- config is actually returned, as it may not be able to support the
- caller's preference.
-
- Here is how the index into the table is computed from the src:
- depth [8, 16, 32/24] -> 0, 2, 4
- alpha [no, yes] -> 0, 1
- The two index values are OR'd together.
- src: 8-index, no-alpha -> 0
- src: 8-index, yes-alpha -> 1
- src: 16bit, no-alpha -> 2 // e.g. 565
- src: 16bit, yes-alpha -> 3 // e.g. 1555
- src: 32/24, no-alpha -> 4
- src: 32/24, yes-alpha -> 5
- */
- void setPrefConfigTable(const SkBitmap::Config pref[5]);
-
- /**
* Optional table describing the caller's preferred config based on
* information about the src data. Each field should be set to the
* preferred config for a src described in the name of the field. The
« no previous file with comments | « no previous file | src/images/SkImageDecoder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698