aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrSRGBEffect.h
blob: f91224e56d67b7fefd8e457d231b1feb60b1d586 (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
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrSRGBEffect_DEFINED
#define GrSRGBEffect_DEFINED

#include "GrFragmentProcessor.h"

class GrSRGBEffect : public GrFragmentProcessor {
public:
    enum class Mode {
        kLinearToSRGB,
        kSRGBToLinear,
    };

    /**
     * Creates an effect that applies the sRGB transfer function (or its inverse)
     */
    static sk_sp<GrFragmentProcessor> Make(Mode mode) {
        return sk_sp<GrFragmentProcessor>(new GrSRGBEffect(mode));
    }

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

    Mode mode() const { return fMode; }

private:
    GrSRGBEffect(Mode mode);

    GrGLSLFragmentProcessor* onCreateGLSLInstance() const override;
    void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override;
    bool onIsEqual(const GrFragmentProcessor&) const override;

    GrColor4f constantOutputForConstantInput(GrColor4f input) const override;

    Mode fMode;

    GR_DECLARE_FRAGMENT_PROCESSOR_TEST

    typedef GrFragmentProcessor INHERITED;
};

#endif