aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrSimpleTextureEffect.h
blob: 8e0e4b0fb163755198bb62c69df79e91f85622aa (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * Copyright 2013 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrSimpleTextureEffect_DEFINED
#define GrSimpleTextureEffect_DEFINED

#include "GrSingleTextureEffect.h"
#include "GrTextureProxy.h"

class GrInvariantOutput;

/**
 * The output color of this effect is a modulation of the input color and a sample from a texture.
 * It allows explicit specification of the filtering and wrap modes (GrSamplerParams) and accepts
 * a matrix that is used to compute texture coordinates from local coordinates.
 */
class GrSimpleTextureEffect : public GrSingleTextureEffect {
public:
    /* unfiltered, clamp mode */
    static sk_sp<GrFragmentProcessor> Make(GrResourceProvider* resourceProvider,
                                           sk_sp<GrTextureProxy> proxy,
                                           sk_sp<GrColorSpaceXform> colorSpaceXform,
                                           const SkMatrix& matrix) {
        // MDB TODO: remove this instantiation once instantiation is pushed past the
        // TextureSamplers. Instantiation failure in the TextureSampler is difficult to
        // recover from.
        GrTexture* temp = proxy->instantiateTexture(resourceProvider);
        if (!temp) {
            return nullptr;
        }

        return sk_sp<GrFragmentProcessor>(
            new GrSimpleTextureEffect(resourceProvider, std::move(proxy),
                                      std::move(colorSpaceXform), matrix,
                                      GrSamplerParams::kNone_FilterMode));
    }

    /* clamp mode */
    static sk_sp<GrFragmentProcessor> Make(GrResourceProvider* resourceProvider,
                                           sk_sp<GrTextureProxy> proxy,
                                           sk_sp<GrColorSpaceXform> colorSpaceXform,
                                           const SkMatrix& matrix,
                                           GrSamplerParams::FilterMode filterMode) {
        // MDB TODO: remove this instantiation once instantiation is pushed past the
        // TextureSamplers. Instantiation failure in the TextureSampler is difficult to
        // recover from.
        GrTexture* temp = proxy->instantiateTexture(resourceProvider);
        if (!temp) {
            return nullptr;
        }

        return sk_sp<GrFragmentProcessor>(
            new GrSimpleTextureEffect(resourceProvider, std::move(proxy),
                                      std::move(colorSpaceXform),
                                      matrix, filterMode));
    }

    static sk_sp<GrFragmentProcessor> Make(GrResourceProvider* resourceProvider,
                                           sk_sp<GrTextureProxy> proxy,
                                           sk_sp<GrColorSpaceXform> colorSpaceXform,
                                           const SkMatrix& matrix,
                                           const GrSamplerParams& p) {
        // MDB TODO: remove this instantiation once instantiation is pushed past the
        // TextureSamplers. Instantiation failure in the TextureSampler is difficult to
        // recover from.
        GrTexture* temp = proxy->instantiateTexture(resourceProvider);
        if (!temp) {
            return nullptr;
        }

        return sk_sp<GrFragmentProcessor>(new GrSimpleTextureEffect(resourceProvider,
                                                                    std::move(proxy),
                                                                    std::move(colorSpaceXform),
                                                                    matrix, p));
    }

    ~GrSimpleTextureEffect() override {}

    const char* name() const override { return "SimpleTexture"; }

private:
    GrSimpleTextureEffect(GrResourceProvider*, sk_sp<GrTextureProxy>,
                          sk_sp<GrColorSpaceXform>, const SkMatrix& matrix,
                          GrSamplerParams::FilterMode);

    GrSimpleTextureEffect(GrResourceProvider*, sk_sp<GrTextureProxy>,
                          sk_sp<GrColorSpaceXform>, const SkMatrix& matrix,
                          const GrSamplerParams&);

    GrGLSLFragmentProcessor* onCreateGLSLInstance() const override;

    void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override;

    bool onIsEqual(const GrFragmentProcessor& other) const override { return true; }

    GR_DECLARE_FRAGMENT_PROCESSOR_TEST;

    typedef GrSingleTextureEffect INHERITED;
};

#endif