bd8b25a7b4
R=reed@google.com,robertphillips@google.com Bug: skia:7644 Change-Id: I469c537a649e4d8d05a78cedb26caa3057d824c1 Reviewed-on: https://skia-review.googlesource.com/108961 Reviewed-by: Robert Phillips <robertphillips@google.com> Commit-Queue: Cary Clark <caryclark@google.com>
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "gm.h"
|
|
#include "sk_tool_utils.h"
|
|
|
|
#include "Resources.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkOSFile.h"
|
|
|
|
namespace skiagm {
|
|
|
|
/**
|
|
* Test copying an image from 8888 to 4444.
|
|
*/
|
|
class CopyTo4444GM : public GM {
|
|
public:
|
|
CopyTo4444GM() {}
|
|
|
|
protected:
|
|
virtual SkString onShortName() {
|
|
return SkString("copyTo4444");
|
|
}
|
|
|
|
virtual SkISize onISize() {
|
|
return SkISize::Make(360, 180);
|
|
}
|
|
|
|
virtual void onDraw(SkCanvas* canvas) {
|
|
SkBitmap bm, bm4444;
|
|
if (!GetResourceAsBitmap("images/dog.jpg", &bm)) {
|
|
SkDebugf("Could not decode the file. Did you forget to set the "
|
|
"resourcePath?\n");
|
|
return;
|
|
}
|
|
canvas->drawBitmap(bm, 0, 0);
|
|
|
|
// This should dither or we will see artifacts in the background of the image.
|
|
SkAssertResult(sk_tool_utils::copy_to(&bm4444, kARGB_4444_SkColorType, bm));
|
|
canvas->drawBitmap(bm4444, SkIntToScalar(bm.width()), 0);
|
|
}
|
|
|
|
private:
|
|
typedef GM INHERITED;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
static GM* MyFactory(void*) { return new CopyTo4444GM; }
|
|
static GMRegistry reg(MyFactory);
|
|
|
|
}
|
|
|
|
DEF_SIMPLE_GM(format4444, canvas, 64, 64) {
|
|
canvas->scale(16, 16);
|
|
SkBitmap bitmap;
|
|
SkImageInfo imageInfo = SkImageInfo::Make(1, 1, kARGB_4444_SkColorType, kPremul_SkAlphaType);
|
|
bitmap.allocPixels(imageInfo);
|
|
SkCanvas offscreen(bitmap);
|
|
offscreen.clear(SK_ColorRED);
|
|
canvas->drawBitmap(bitmap, 0, 0);
|
|
offscreen.clear(SK_ColorBLUE);
|
|
canvas->drawBitmap(bitmap, 1, 1);
|
|
auto pack4444 = [](unsigned a, unsigned r, unsigned g, unsigned b) -> uint16_t {
|
|
return (a << 0) | (b << 4) | (g << 8) | (r << 12);
|
|
};
|
|
uint16_t red4444 = pack4444(0xF, 0xF, 0x0, 0x0);
|
|
uint16_t blue4444 = pack4444(0xF, 0x0, 0x0, 0x0F);
|
|
SkPixmap redPixmap(imageInfo, &red4444, 2);
|
|
if (bitmap.writePixels(redPixmap, 0, 0)) {
|
|
canvas->drawBitmap(bitmap, 2, 2);
|
|
}
|
|
SkPixmap bluePixmap(imageInfo, &blue4444, 2);
|
|
if (bitmap.writePixels(bluePixmap, 0, 0)) {
|
|
canvas->drawBitmap(bitmap, 3, 3);
|
|
}
|
|
}
|