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

Unified Diff: gm/xfer4f.cpp

Issue 1721223002: simplify/unify xferproc api (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « gm/SkLinearBitmapPipelineGM.cpp ('k') | include/core/SkXfermode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/xfer4f.cpp
diff --git a/gm/xfer4f.cpp b/gm/xfer4f.cpp
deleted file mode 100644
index dc7196d399fd91c413f5513ed915f410a8e1bf92..0000000000000000000000000000000000000000
--- a/gm/xfer4f.cpp
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * Copyright 2016 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 "SkCanvas.h"
-#include "SkImageInfo.h"
-#include "SkXfermode.h"
-#include "SkPM4f.h"
-
-static void draw_rect(SkCanvas* canvas, const SkRect& r, SkColor c, SkColorProfileType profile,
- const SkAlpha aa[]) {
- const SkIRect ir = r.round();
-
- SkBitmap bm;
- bm.allocN32Pixels(ir.width(), ir.height());
- bm.eraseColor(0xFFFFFFFF);
- SkPixmap pm;
- bm.peekPixels(&pm);
-
- uint32_t flags = 0;
- if (SkColorGetA(c) == 0xFF) {
- flags |= SkXfermode::kSrcIsOpaque_PM4fFlag;
- }
- if (kSRGB_SkColorProfileType == profile) {
- flags |= SkXfermode::kDstIsSRGB_PM4fFlag;
- }
-
- const SkXfermode::PM4fState state { nullptr, flags };
-
- const SkPM4f src = SkColor4f::FromColor(c).premul();
- auto proc1 = SkXfermode::GetPM4fProc1(SkXfermode::kSrcOver_Mode, flags);
- for (int y = 0; y < ir.height()/2; ++y) {
- proc1(state, pm.writable_addr32(0, y), src, ir.width(), aa);
- }
-
- SkPM4f srcRow[1000];
- for (int i = 0; i < ir.width(); ++i) {
- srcRow[i] = src;
- }
- auto procN = SkXfermode::GetPM4fProcN(SkXfermode::kSrcOver_Mode, flags);
- // +1 to skip a row, so we can see the boundary between proc1 and procN
- for (int y = ir.height()/2 + 1; y < ir.height(); ++y) {
- procN(state, pm.writable_addr32(0, y), srcRow, ir.width(), aa);
- }
-
- canvas->drawBitmap(bm, r.left(), r.top(), nullptr);
-}
-
-/*
- * Test SkXfer4fProcs directly for src-over, comparing them to current SkColor blits.
- */
-DEF_SIMPLE_GM(xfer4f_srcover, canvas, 580, 760) {
- const int IW = 50;
- const SkScalar W = IW;
- const SkScalar H = 100;
-
- const int profiles[] = {
- -1,
- kLinear_SkColorProfileType,
- kSRGB_SkColorProfileType,
- };
- const SkColor colors[] = {
- SK_ColorBLACK, SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE,
- 0x88000000, 0x88FF0000, 0x8800FF00, 0x880000FF
- };
-
- uint8_t aa_scanline[IW];
- for (int i = 0; i < IW; ++i) {
- aa_scanline[i] = i * 255 / (IW - 1);
- }
- uint8_t const* aa_table[] = { nullptr, aa_scanline };
-
- SkBitmap mask;
- mask.installPixels(SkImageInfo::MakeA8(IW, 1), aa_scanline, IW);
-
- canvas->translate(20, 20);
-
- const SkRect r = SkRect::MakeWH(W, H);
- for (const uint8_t* aa : aa_table) {
- canvas->save();
- for (auto profile : profiles) {
- canvas->save();
- for (SkColor c : colors) {
- if (profile < 0) {
- SkPaint p;
- p.setColor(c);
- if (aa) {
- canvas->drawBitmapRect(mask, r, &p);
- } else {
- canvas->drawRect(r, p);
- }
- } else {
- draw_rect(canvas, r, c, (SkColorProfileType)profile, aa);
- }
- canvas->translate(W + 20, 0);
- }
- canvas->restore();
- canvas->translate(0, H + 20);
- }
- canvas->restore();
- canvas->translate(0, (H + 20) * SK_ARRAY_COUNT(profiles) + 20);
- }
-}
« no previous file with comments | « gm/SkLinearBitmapPipelineGM.cpp ('k') | include/core/SkXfermode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698