blob: 8a8d685e518afe598a0c0e94cac45ba077c492a0 [file] [log] [blame]
tomhudson@google.com168e6342012-04-18 17:49:20 +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
joshualittb0a8a372014-09-23 09:50:21 -07008#ifndef GrProcessor_DEFINED
9#define GrProcessor_DEFINED
tomhudson@google.com168e6342012-04-18 17:49:20 +000010
bsalomon@google.com371e1052013-01-11 21:08:55 +000011#include "GrColor.h"
joshualittb0a8a372014-09-23 09:50:21 -070012#include "GrProcessorUnitTest.h"
bsalomon95740982014-09-04 13:12:37 -070013#include "GrProgramElement.h"
bsalomon@google.com047696c2012-09-11 13:29:29 +000014#include "GrTextureAccess.h"
egdaniel9e4d6d12014-10-15 13:49:02 -070015#include "SkMath.h"
tomhudson@google.com07eecdc2012-04-20 18:35:38 +000016
tomhudson@google.com168e6342012-04-18 17:49:20 +000017class GrContext;
bsalomon@google.com77af6802013-10-02 13:04:56 +000018class GrCoordTransform;
egdaniel605dd0f2014-11-12 08:35:25 -080019class GrInvariantOutput;
bsalomon95740982014-09-04 13:12:37 -070020
joshualitteb2a6762014-12-04 11:35:33 -080021/**
22 * Used by processors to build their keys. It incorporates each per-processor key into a larger
23 * shader key.
24 */
25class GrProcessorKeyBuilder {
26public:
27 GrProcessorKeyBuilder(SkTArray<unsigned char, true>* data) : fData(data), fCount(0) {
28 SkASSERT(0 == fData->count() % sizeof(uint32_t));
29 }
30
31 void add32(uint32_t v) {
32 ++fCount;
33 fData->push_back_n(4, reinterpret_cast<uint8_t*>(&v));
34 }
35
36 /** Inserts count uint32_ts into the key. The returned pointer is only valid until the next
37 add*() call. */
38 uint32_t* SK_WARN_UNUSED_RESULT add32n(int count) {
39 SkASSERT(count > 0);
40 fCount += count;
41 return reinterpret_cast<uint32_t*>(fData->push_back_n(4 * count));
42 }
43
44 size_t size() const { return sizeof(uint32_t) * fCount; }
45
46private:
47 SkTArray<uint8_t, true>* fData; // unowned ptr to the larger key.
48 int fCount; // number of uint32_ts added to fData by the processor.
49};
50
bsalomon98b33eb2014-10-15 11:05:26 -070051/** Provides custom shader code to the Ganesh shading pipeline. GrProcessor objects *must* be
52 immutable: after being constructed, their fields may not change.
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000053
joshualittb0a8a372014-09-23 09:50:21 -070054 Dynamically allocated GrProcessors are managed by a per-thread memory pool. The ref count of an
bsalomon98b33eb2014-10-15 11:05:26 -070055 processor must reach 0 before the thread terminates and the pool is destroyed. To create a
56 static processor use the helper macro GR_CREATE_STATIC_PROCESSOR declared below.
57 */
joshualittb0a8a372014-09-23 09:50:21 -070058class GrProcessor : public GrProgramElement {
tomhudson@google.com168e6342012-04-18 17:49:20 +000059public:
joshualittb0a8a372014-09-23 09:50:21 -070060 SK_DECLARE_INST_COUNT(GrProcessor)
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000061
joshualittb0a8a372014-09-23 09:50:21 -070062 virtual ~GrProcessor();
tomhudson@google.com168e6342012-04-18 17:49:20 +000063
bsalomon98b33eb2014-10-15 11:05:26 -070064 /** Human-meaningful string to identify this prcoessor; may be embedded
twiz@google.coma5e65ec2012-08-02 15:15:16 +000065 in generated shader code. */
joshualitteb2a6762014-12-04 11:35:33 -080066 virtual const char* name() const = 0;
bsalomon@google.com289efe02012-05-21 20:57:59 +000067
bsalomon@google.com50db75c2013-01-11 13:54:30 +000068 int numTextures() const { return fTextureAccesses.count(); }
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000069
bsalomon@google.com6d003d12012-09-11 15:45:20 +000070 /** Returns the access pattern for the texture at index. index must be valid according to
71 numTextures(). */
bsalomon@google.com50db75c2013-01-11 13:54:30 +000072 const GrTextureAccess& textureAccess(int index) const { return *fTextureAccesses[index]; }
bsalomon@google.com6d003d12012-09-11 15:45:20 +000073
74 /** Shortcut for textureAccess(index).texture(); */
75 GrTexture* texture(int index) const { return this->textureAccess(index).getTexture(); }
twiz@google.coma5e65ec2012-08-02 15:15:16 +000076
bsalomon98b33eb2014-10-15 11:05:26 -070077 /** Will this processor read the fragment position? */
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +000078 bool willReadFragmentPosition() const { return fWillReadFragmentPosition; }
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +000079
tomhudson@google.comdcba4c22012-07-24 21:36:16 +000080 void* operator new(size_t size);
81 void operator delete(void* target);
82
bsalomon@google.comd42aca32013-04-23 15:37:27 +000083 void* operator new(size_t size, void* placement) {
84 return ::operator new(size, placement);
85 }
86 void operator delete(void* target, void* placement) {
87 ::operator delete(target, placement);
88 }
89
joshualitt49586be2014-09-16 08:21:41 -070090 /**
joshualittb0a8a372014-09-23 09:50:21 -070091 * Helper for down-casting to a GrProcessor subclass
joshualitt49586be2014-09-16 08:21:41 -070092 */
93 template <typename T> const T& cast() const { return *static_cast<const T*>(this); }
94
joshualitteb2a6762014-12-04 11:35:33 -080095 uint32_t classID() const { SkASSERT(kIllegalProcessorClassID != fClassID); return fClassID; }
96
bsalomon@google.com50db75c2013-01-11 13:54:30 +000097protected:
joshualitteb2a6762014-12-04 11:35:33 -080098 GrProcessor() : fClassID(kIllegalProcessorClassID), fWillReadFragmentPosition(false) {}
bsalomon420d7e92014-10-16 09:18:09 -070099
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000100 /**
bsalomon98b33eb2014-10-15 11:05:26 -0700101 * Subclasses call this from their constructor to register GrTextureAccesses. The processor
commit-bot@chromium.org91a798f2013-09-06 15:31:06 +0000102 * subclass manages the lifetime of the accesses (this function only stores a pointer). The
joshualittb0a8a372014-09-23 09:50:21 -0700103 * GrTextureAccess is typically a member field of the GrProcessor subclass. This must only be
104 * called from the constructor because GrProcessors are immutable.
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000105 */
106 void addTextureAccess(const GrTextureAccess* textureAccess);
107
bsalomon420d7e92014-10-16 09:18:09 -0700108 bool hasSameTextureAccesses(const GrProcessor&) const;
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +0000109
110 /**
bsalomon98b33eb2014-10-15 11:05:26 -0700111 * If the prcoessor will generate a backend-specific processor that will read the fragment
112 * position in the FS then it must call this method from its constructor. Otherwise, the
113 * request to access the fragment position will be denied.
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +0000114 */
115 void setWillReadFragmentPosition() { fWillReadFragmentPosition = true; }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000116
joshualitteb2a6762014-12-04 11:35:33 -0800117 template <typename PROC_SUBCLASS> void initClassID() {
118 static uint32_t kClassID = GenClassID();
119 fClassID = kClassID;
120 }
121
122 uint32_t fClassID;
123
bsalomon0e08fc12014-10-15 08:19:04 -0700124private:
joshualitteb2a6762014-12-04 11:35:33 -0800125 static uint32_t GenClassID() {
126 // fCurrProcessorClassID has been initialized to kIllegalProcessorClassID. The
127 // atomic inc returns the old value not the incremented value. So we add
128 // 1 to the returned value.
129 uint32_t id = static_cast<uint32_t>(sk_atomic_inc(&gCurrProcessorClassID)) + 1;
130 if (!id) {
131 SkFAIL("This should never wrap as it should only be called once for each GrProcessor "
132 "subclass.");
133 }
134 return id;
135 }
136
137 enum {
138 kIllegalProcessorClassID = 0,
139 };
140 static int32_t gCurrProcessorClassID;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000141
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000142 SkSTArray<4, const GrTextureAccess*, true> fTextureAccesses;
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +0000143 bool fWillReadFragmentPosition;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000144
bsalomon95740982014-09-04 13:12:37 -0700145 typedef GrProgramElement INHERITED;
tomhudson@google.com168e6342012-04-18 17:49:20 +0000146};
147
bsalomon98b33eb2014-10-15 11:05:26 -0700148/**
149 * This creates a processor outside of the memory pool. The processor's destructor will be called
150 * at global destruction time. NAME will be the name of the created instance.
151 */
152#define GR_CREATE_STATIC_PROCESSOR(NAME, PROC_CLASS, ARGS) \
153static SkAlignedSStorage<sizeof(PROC_CLASS)> g_##NAME##_Storage; \
154static PROC_CLASS* NAME SkNEW_PLACEMENT_ARGS(g_##NAME##_Storage.get(), PROC_CLASS, ARGS); \
155static SkAutoTDestroy<GrProcessor> NAME##_ad(NAME);
156
tomhudson@google.com168e6342012-04-18 17:49:20 +0000157#endif