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

Unified Diff: include/core/SkPackBits.h

Issue 1722173003: Move SkPackBits to src/effects. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix win64 warnings. Created 4 years, 10 months 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 | « gyp/effects.gypi ('k') | src/core/SkPackBits.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkPackBits.h
diff --git a/include/core/SkPackBits.h b/include/core/SkPackBits.h
deleted file mode 100644
index 1e32ee0875508fc43ff44a58e62310eb6fe8d780..0000000000000000000000000000000000000000
--- a/include/core/SkPackBits.h
+++ /dev/null
@@ -1,46 +0,0 @@
-
-/*
- * Copyright 2008 The Android Open Source Project
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-
-#ifndef SkPackBits_DEFINED
-#define SkPackBits_DEFINED
-
-#include "SkTypes.h"
-
-class SkPackBits {
-public:
- /** Given the number of 8bit values that will be passed to Pack8,
- returns the worst-case size needed for the dst[] buffer.
- */
- static size_t ComputeMaxSize8(int count);
-
- /** Write the src array into a packed format. The packing process may end
- up writing more bytes than it read, so dst[] must be large enough.
- @param src Input array of 8bit values
- @param srcSize Number of entries in src[]
- @param dst Buffer (allocated by caller) to write the packed data
- into
- @param dstSize Number of bytes in the output buffer.
- @return the number of bytes written to dst[]
- */
- static size_t Pack8(const uint8_t src[], size_t srcSize, uint8_t dst[],
- size_t dstSize);
-
- /** Unpack the data in src[], and expand it into dst[]. The src[] data was
- written by a previous call to Pack8.
- @param src Input data to unpack, previously created by Pack8.
- @param srcSize Number of bytes of src to unpack
- @param dst Buffer (allocated by caller) to expand the src[] into.
- @param dstSize Number of bytes in the output buffer.
- @return the number of bytes written into dst.
- */
- static int Unpack8(const uint8_t src[], size_t srcSize, uint8_t dst[],
- size_t dstSize);
-};
-
-#endif
« no previous file with comments | « gyp/effects.gypi ('k') | src/core/SkPackBits.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698