aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/glsl/GrGLSLBlend.h
blob: fb0fb0b9353ea077dc0371238e0f5b18ab6a322a (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
27
28
/*
 * 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 GrGLBlend_DEFINED
#define GrGLBlend_DEFINED

#include "SkBlendMode.h"
#include "SkRegion.h"

class GrGLSLFragmentBuilder;

namespace GrGLSLBlend {
    /*
     * Appends GLSL code to fsBuilder that assigns a specified blend of the srcColor and dstColor
     * variables to the outColor variable.
     */
    void AppendMode(GrGLSLFragmentBuilder* fsBuilder, const char* srcColor,
                    const char* dstColor, const char* outColor, SkBlendMode mode);

    void AppendRegionOp(GrGLSLFragmentBuilder* fsBuilder, const char* srcColor,
                        const char* dstColor, const char* outColor, SkRegion::Op regionOp);
};

#endif