2015-04-14 13:25:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkColorFilter.h"
|
|
|
|
#include "include/core/SkImageFilter.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
2019-08-02 19:21:23 +00:00
|
|
|
#include "include/effects/SkImageFilters.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
|
|
|
|
#include <utility>
|
2015-04-14 13:25:19 +00:00
|
|
|
|
|
|
|
// This GM renders correctly in 8888, but fails in PDF
|
|
|
|
DEF_SIMPLE_GM(fadefilter, canvas, 256, 256) {
|
2019-04-30 16:18:54 +00:00
|
|
|
float matrix[20] = { 1, 0, 0, 0, 0.5f,
|
|
|
|
0, 1, 0, 0, 0.5f,
|
|
|
|
0, 0, 1, 0, 0.5f,
|
|
|
|
0, 0, 0, 1, 0 };
|
|
|
|
sk_sp<SkColorFilter> colorFilter(SkColorFilters::Matrix(matrix));
|
2015-04-14 13:25:19 +00:00
|
|
|
SkPaint layerPaint;
|
2019-08-02 19:21:23 +00:00
|
|
|
layerPaint.setImageFilter(SkImageFilters::ColorFilter(std::move(colorFilter), nullptr));
|
2015-04-14 13:25:19 +00:00
|
|
|
canvas->drawRect(SkRect::MakeLTRB(64, 64, 192, 192), layerPaint);
|
|
|
|
}
|