blob: 54309ddafc39dc20b108ebb1d6d6546f9729b75a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrCustomXfermode_DEFINED
#define GrCustomXfermode_DEFINED
#include "SkBlendMode.h"
#include "SkRefCnt.h"
class GrTexture;
class GrXPFactory;
/**
* Custom Xfer modes are used for blending when the blend mode cannot be represented using blend
* coefficients.
*/
namespace GrCustomXfermode {
bool IsSupportedMode(SkBlendMode mode);
const GrXPFactory* Get(SkBlendMode mode);
};
#endif
|