blob: ef9e436401d72466f64603c1e4b1672b95646ef8 [file] [log] [blame]
bsalomon@google.comae4f96a2012-05-18 19:54:48 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
bsalomon@google.com396e61f2012-10-25 19:00:29 +00008#ifndef GrBackendEffectFactory_DEFINED
9#define GrBackendEffectFactory_DEFINED
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000010
11#include "GrTypes.h"
bsalomon@google.com8e520fc2012-05-18 20:06:45 +000012#include "SkTemplates.h"
commit-bot@chromium.org86b0de42014-05-28 20:02:17 +000013#include "SkThread.h"
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000014#include "SkTypes.h"
bsalomon848faf02014-07-11 10:01:02 -070015#include "SkTArray.h"
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000016
bsalomon@google.comd698f772012-10-25 13:22:00 +000017class GrGLEffect;
twiz@google.coma5e65ec2012-08-02 15:15:16 +000018class GrGLCaps;
bsalomon@google.comc7818882013-03-20 19:19:53 +000019class GrDrawEffect;
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000020
bsalomon848faf02014-07-11 10:01:02 -070021/**
bsalomon929f29a2014-07-17 07:55:11 -070022 * Used by effects to build their keys. It incorporates each per-effect key into a larger shader key.
bsalomon848faf02014-07-11 10:01:02 -070023 */
24class GrEffectKeyBuilder {
25public:
26 GrEffectKeyBuilder(SkTArray<unsigned char, true>* data) : fData(data), fCount(0) {
27 SkASSERT(0 == fData->count() % sizeof(uint32_t));
28 }
29
30 void add32(uint32_t v) {
31 ++fCount;
32 fData->push_back_n(4, reinterpret_cast<uint8_t*>(&v));
33 }
34
bsalomon929f29a2014-07-17 07:55:11 -070035 /** Inserts count uint32_ts into the key. The returned pointer is only valid until the next
36 add*() call. */
37 uint32_t* SK_WARN_UNUSED_RESULT add32n(int count) {
38 SkASSERT(count > 0);
39 fCount += count;
40 return reinterpret_cast<uint32_t*>(fData->push_back_n(4 * count));
41 }
42
bsalomon848faf02014-07-11 10:01:02 -070043 size_t size() const { return sizeof(uint32_t) * fCount; }
44
45private:
46 SkTArray<uint8_t, true>* fData; // unowned ptr to the larger key.
47 int fCount; // number of uint32_ts added to fData by the effect.
48};
49
bsalomon929f29a2014-07-17 07:55:11 -070050/**
51 * Given a GrEffect of a particular type, creates the corresponding graphics-backend-specific
52 * effect object. It also tracks equivalence of shaders generated via a key. The factory for an
53 * effect is accessed via GrEffect::getFactory(). Each factory instance is assigned an ID at
54 * construction. The ID of GrEffect::getFactory() is used as a type identifier. Thus, a GrEffect
55 * subclass must always return the same object from getFactory() and that factory object must be
56 * unique to the GrEffect subclass (and unique from any further derived subclasses).
57 *
58 * Rather than subclassing this class themselves, it is recommended that GrEffect authors use
59 * the templated subclass GrTBackendEffectFactory by writing their getFactory() method as:
60 *
61 * const GrBackendEffectFactory& MyEffect::getFactory() const {
62 * return GrTBackendEffectFactory<MyEffect>::getInstance();
63 * }
64 *
65 * Using GrTBackendEffectFactory places a few constraints on the effect. See that class's comments.
66 */
commit-bot@chromium.orge3beb6b2014-04-07 19:34:38 +000067class GrBackendEffectFactory : SkNoncopyable {
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000068public:
bsalomon@google.com46fba0d2012-10-25 21:42:05 +000069 typedef uint32_t EffectKey;
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000070
bsalomon929f29a2014-07-17 07:55:11 -070071 /**
72 * Generates an effect's key. The key is based on the aspects of the GrEffect object's
73 * configuration that affect GLSL code generation. Two GrEffect instances that would cause
74 * this->createGLInstance()->emitCode() to produce different code must produce different keys.
75 */
76 virtual void getGLEffectKey(const GrDrawEffect&, const GrGLCaps&, GrEffectKeyBuilder*) const = 0;
77
78 /**
79 * Creates a GrGLEffect instance that is used both to generate code for the GrEffect in a GLSL
80 * program and to manage updating uniforms for the program when it is used.
81 */
bsalomon@google.comc7818882013-03-20 19:19:53 +000082 virtual GrGLEffect* createGLInstance(const GrDrawEffect&) const = 0;
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000083
bsalomon929f29a2014-07-17 07:55:11 -070084 /**
85 * Produces a human-reable name for the effect.
86 */
bsalomon@google.com289efe02012-05-21 20:57:59 +000087 virtual const char* name() const = 0;
88
bsalomon929f29a2014-07-17 07:55:11 -070089 /**
90 * A unique value for every instance of this factory. It is automatically incorporated into the
91 * effect's key. This allows keys generated by getGLEffectKey() to only be unique within a
92 * GrEffect subclass and not necessarily across subclasses.
93 */
94 uint32_t effectClassID() const { return fEffectClassID; }
95
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000096protected:
bsalomon929f29a2014-07-17 07:55:11 -070097 GrBackendEffectFactory() : fEffectClassID(GenID()) {}
98 virtual ~GrBackendEffectFactory() {}
99
100private:
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000101 enum {
bsalomon@google.com021fc732012-10-25 12:47:42 +0000102 kIllegalEffectClassID = 0,
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000103 };
104
bsalomon929f29a2014-07-17 07:55:11 -0700105 static uint32_t GenID() {
bsalomon@google.com021fc732012-10-25 12:47:42 +0000106 // fCurrEffectClassID has been initialized to kIllegalEffectClassID. The
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000107 // atomic inc returns the old value not the incremented value. So we add
108 // 1 to the returned value.
bsalomon929f29a2014-07-17 07:55:11 -0700109 uint32_t id = static_cast<uint32_t>(sk_atomic_inc(&fCurrEffectClassID)) + 1;
110 if (!id) {
111 SkFAIL("This should never wrap as it should only be called once for each GrEffect "
112 "subclass.");
113 }
bsalomon848faf02014-07-11 10:01:02 -0700114 return id;
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000115 }
116
bsalomon929f29a2014-07-17 07:55:11 -0700117 const uint32_t fEffectClassID;
bsalomon@google.com021fc732012-10-25 12:47:42 +0000118 static int32_t fCurrEffectClassID;
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000119};
120
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000121#endif