ec3ed6a5eb
I have manually examined all of these diffs and restored a few files that seem to require manual adjustment. The following files still need to be modified manually, in a separate CL: android_sample/SampleApp/AndroidManifest.xml android_sample/SampleApp/res/layout/layout.xml android_sample/SampleApp/res/menu/sample.xml android_sample/SampleApp/res/values/strings.xml android_sample/SampleApp/src/com/skia/sampleapp/SampleApp.java android_sample/SampleApp/src/com/skia/sampleapp/SampleView.java experimental/CiCarbonSampleMain.c experimental/CocoaDebugger/main.m experimental/FileReaderApp/main.m experimental/SimpleCocoaApp/main.m experimental/iOSSampleApp/Shared/SkAlertPrompt.h experimental/iOSSampleApp/Shared/SkAlertPrompt.m experimental/iOSSampleApp/SkiOSSampleApp-Base.xcconfig experimental/iOSSampleApp/SkiOSSampleApp-Debug.xcconfig experimental/iOSSampleApp/SkiOSSampleApp-Release.xcconfig gpu/src/android/GrGLDefaultInterface_android.cpp gyp/common.gypi gyp_skia include/ports/SkHarfBuzzFont.h include/views/SkOSWindow_wxwidgets.h make.bat make.py src/opts/memset.arm.S src/opts/memset16_neon.S src/opts/memset32_neon.S src/opts/opts_check_arm.cpp src/ports/SkDebug_brew.cpp src/ports/SkMemory_brew.cpp src/ports/SkOSFile_brew.cpp src/ports/SkXMLParser_empty.cpp src/utils/ios/SkImageDecoder_iOS.mm src/utils/ios/SkOSFile_iOS.mm src/utils/ios/SkStream_NSData.mm tests/FillPathTest.cpp Review URL: http://codereview.appspot.com/4816058 git-svn-id: http://skia.googlecode.com/svn/trunk@1982 2bbb7eff-a529-9590-31e7-b0007b416f81
135 lines
4.7 KiB
C++
135 lines
4.7 KiB
C++
|
|
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#include "Test.h"
|
|
#include "SkPackBits.h"
|
|
|
|
static const uint16_t gTest0[] = { 0, 0, 1, 1 };
|
|
static const uint16_t gTest1[] = { 1, 2, 3, 4, 5, 6 };
|
|
static const uint16_t gTest2[] = { 0, 0, 0, 1, 2, 3, 3, 3 };
|
|
static const uint16_t gTest3[] = { 0, 0, 0, 0, 0, 0, 1, 2, 3, 3, 3, 0, 0, 1 };
|
|
|
|
#include "SkRandom.h"
|
|
static SkRandom gRand;
|
|
static void rand_fill(uint16_t buffer[], int count) {
|
|
for (int i = 0; i < count; i++)
|
|
buffer[i] = (uint16_t)gRand.nextU();
|
|
}
|
|
|
|
static void test_pack16(skiatest::Reporter* reporter) {
|
|
static const struct {
|
|
const uint16_t* fSrc;
|
|
int fCount;
|
|
} gTests[] = {
|
|
{ gTest0, SK_ARRAY_COUNT(gTest0) },
|
|
{ gTest1, SK_ARRAY_COUNT(gTest1) },
|
|
{ gTest2, SK_ARRAY_COUNT(gTest2) },
|
|
{ gTest3, SK_ARRAY_COUNT(gTest3) }
|
|
};
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(gTests); i++) {
|
|
uint8_t dst[100];
|
|
size_t dstSize = SkPackBits::Pack16(gTests[i].fSrc,
|
|
gTests[i].fCount, dst);
|
|
uint16_t src[100];
|
|
int srcCount = SkPackBits::Unpack16(dst, dstSize, src);
|
|
bool match = gTests[i].fCount == srcCount && memcmp(gTests[i].fSrc, src,
|
|
gTests[i].fCount * sizeof(uint16_t)) == 0;
|
|
REPORTER_ASSERT(reporter, match);
|
|
}
|
|
|
|
for (int n = 1000; n; n--) {
|
|
size_t size = 50;
|
|
uint16_t src[100], src2[100];
|
|
uint8_t dst[200];
|
|
rand_fill(src, size);
|
|
|
|
size_t dstSize = SkPackBits::Pack16(src, size, dst);
|
|
size_t maxSize = SkPackBits::ComputeMaxSize16(size);
|
|
REPORTER_ASSERT(reporter, maxSize >= dstSize);
|
|
|
|
size_t srcCount = SkPackBits::Unpack16(dst, dstSize, src2);
|
|
REPORTER_ASSERT(reporter, size == srcCount);
|
|
bool match = memcmp(src, src2, size * sizeof(uint16_t)) == 0;
|
|
REPORTER_ASSERT(reporter, match);
|
|
}
|
|
}
|
|
|
|
static const uint8_t gTest80[] = { 0, 0, 1, 1 };
|
|
static const uint8_t gTest81[] = { 1, 2, 3, 4, 5, 6 };
|
|
static const uint8_t gTest82[] = { 0, 0, 0, 1, 2, 3, 3, 3 };
|
|
static const uint8_t gTest83[] = { 0, 0, 0, 0, 0, 0, 1, 2, 3, 3, 3, 0, 0, 1 };
|
|
static const uint8_t gTest84[] = { 1, 0, 3, 0, 0, 0, 2, 1, 1, 2 };
|
|
|
|
static void rand_fill(uint8_t buffer[], int count) {
|
|
for (int i = 0; i < count; i++)
|
|
buffer[i] = (uint8_t)((gRand.nextU() >> 8) & 0x3);
|
|
}
|
|
|
|
static void test_pack8(skiatest::Reporter* reporter) {
|
|
static const struct {
|
|
const uint8_t* fSrc;
|
|
int fCount;
|
|
} gTests[] = {
|
|
{ gTest80, SK_ARRAY_COUNT(gTest80) },
|
|
{ gTest81, SK_ARRAY_COUNT(gTest81) },
|
|
{ gTest82, SK_ARRAY_COUNT(gTest82) },
|
|
{ gTest83, SK_ARRAY_COUNT(gTest83) },
|
|
{ gTest84, SK_ARRAY_COUNT(gTest84) }
|
|
};
|
|
|
|
for (size_t i = 4; i < SK_ARRAY_COUNT(gTests); i++) {
|
|
uint8_t dst[100];
|
|
size_t maxSize = SkPackBits::ComputeMaxSize8(gTests[i].fCount);
|
|
size_t dstSize = SkPackBits::Pack8(gTests[i].fSrc,
|
|
gTests[i].fCount, dst);
|
|
REPORTER_ASSERT(reporter, dstSize <= maxSize);
|
|
uint8_t src[100];
|
|
int srcCount = SkPackBits::Unpack8(dst, dstSize, src);
|
|
bool match = gTests[i].fCount == srcCount &&
|
|
memcmp(gTests[i].fSrc, src,
|
|
gTests[i].fCount * sizeof(uint8_t)) == 0;
|
|
REPORTER_ASSERT(reporter, match);
|
|
}
|
|
|
|
for (size_t size = 1; size <= 512; size += 1) {
|
|
for (int n = 100; n; n--) {
|
|
uint8_t src[600], src2[600];
|
|
uint8_t dst[600];
|
|
rand_fill(src, size);
|
|
|
|
size_t dstSize = SkPackBits::Pack8(src, size, dst);
|
|
size_t maxSize = SkPackBits::ComputeMaxSize8(size);
|
|
REPORTER_ASSERT(reporter, maxSize >= dstSize);
|
|
|
|
size_t srcCount = SkPackBits::Unpack8(dst, dstSize, src2);
|
|
REPORTER_ASSERT(reporter, size == srcCount);
|
|
bool match = memcmp(src, src2, size * sizeof(uint8_t)) == 0;
|
|
REPORTER_ASSERT(reporter, match);
|
|
|
|
for (int j = 0; j < 100; j++) {
|
|
size_t skip = gRand.nextU() % size;
|
|
size_t write = gRand.nextU() % size;
|
|
if (skip + write > size) {
|
|
write = size - skip;
|
|
}
|
|
SkPackBits::Unpack8(src, skip, write, dst);
|
|
bool match = memcmp(src, src2 + skip, write) == 0;
|
|
REPORTER_ASSERT(reporter, match);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static void TestPackBits(skiatest::Reporter* reporter) {
|
|
test_pack8(reporter);
|
|
test_pack16(reporter);
|
|
}
|
|
|
|
#include "TestClassDef.h"
|
|
DEFINE_TESTCLASS("PackBits", PackBitsTestClass, TestPackBits)
|