blob: d3c49d11cf76d4af80ef19cd01764e910a53df68 [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
bsalomon@google.com422e81a2012-10-25 14:11:03 +00008#ifndef GrGLEffect_DEFINED
9#define GrGLEffect_DEFINED
tomhudson@google.com168e6342012-04-18 17:49:20 +000010
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +000011#include "GrBackendEffectFactory.h"
tomhudson@google.com9c639a42012-05-14 19:58:06 +000012#include "GrGLShaderBuilder.h"
tomhudson@google.com168e6342012-04-18 17:49:20 +000013#include "GrGLShaderVar.h"
14#include "GrGLSL.h"
tomhudson@google.com168e6342012-04-18 17:49:20 +000015
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000016class GrGLTexture;
tomhudson@google.com168e6342012-04-18 17:49:20 +000017
18/** @file
bsalomon@google.com374e7592012-10-23 17:30:45 +000019 This file contains specializations for OpenGL of the shader stages declared in
bsalomon@google.comd698f772012-10-25 13:22:00 +000020 include/gpu/GrEffect.h. Objects of type GrGLEffect are responsible for emitting the
bsalomon@google.com77af6802013-10-02 13:04:56 +000021 GLSL code that implements a GrEffect and for uploading uniforms at draw time. If they don't
22 always emit the same GLSL code, they must have a function:
bsalomon@google.comc7818882013-03-20 19:19:53 +000023 static inline EffectKey GenKey(const GrDrawEffect&, const GrGLCaps&)
bsalomon@google.com8ea78d82012-10-24 20:11:30 +000024 that is used to implement a program cache. When two GrEffects produce the same key this means
bsalomon@google.com422e81a2012-10-25 14:11:03 +000025 that their GrGLEffects would emit the same GLSL code.
tomhudson@google.com168e6342012-04-18 17:49:20 +000026
bsalomon@google.comc7818882013-03-20 19:19:53 +000027 The GrGLEffect subclass must also have a constructor of the form:
28 EffectSubclass::EffectSubclass(const GrBackendEffectFactory&, const GrDrawEffect&)
29 The effect held by the GrDrawEffect is guaranteed to be of the type that generated the
30 GrGLEffect subclass instance.
31
bsalomon@google.coma469c282012-10-24 18:28:34 +000032 These objects are created by the factory object returned by the GrEffect::getFactory().
tomhudson@google.com168e6342012-04-18 17:49:20 +000033*/
34
bsalomon@google.comc7818882013-03-20 19:19:53 +000035class GrDrawEffect;
36
bsalomon@google.comd698f772012-10-25 13:22:00 +000037class GrGLEffect {
tomhudson@google.com168e6342012-04-18 17:49:20 +000038
39public:
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +000040 typedef GrBackendEffectFactory::EffectKey EffectKey;
41
bsalomon@google.comb505a122012-05-31 18:40:36 +000042 enum {
bsalomon@google.comdbe49f72012-11-05 16:36:02 +000043 kNoEffectKey = GrBackendEffectFactory::kNoEffectKey,
bsalomon@google.com46fba0d2012-10-25 21:42:05 +000044 // the number of bits in EffectKey available to GenKey
45 kEffectKeyBits = GrBackendEffectFactory::kEffectKeyBits,
bsalomon@google.comb505a122012-05-31 18:40:36 +000046 };
47
bsalomon@google.com77af6802013-10-02 13:04:56 +000048 typedef GrGLShaderBuilder::TransformedCoordsArray TransformedCoordsArray;
bsalomon@google.comf06df1b2012-09-06 20:22:31 +000049 typedef GrGLShaderBuilder::TextureSamplerArray TextureSamplerArray;
50
bsalomon@google.com396e61f2012-10-25 19:00:29 +000051 GrGLEffect(const GrBackendEffectFactory&);
bsalomon@google.com289efe02012-05-21 20:57:59 +000052
bsalomon@google.comd698f772012-10-25 13:22:00 +000053 virtual ~GrGLEffect();
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000054
bsalomon@google.com374e7592012-10-23 17:30:45 +000055 /** Called when the program stage should insert its code into the shaders. The code in each
56 shader will be in its own block ({}) and so locally scoped names will not collide across
57 stages.
tomhudson@google.com6a820b62012-05-24 15:10:14 +000058
bsalomon@google.com374e7592012-10-23 17:30:45 +000059 @param builder Interface used to emit code in the shaders.
bsalomon@google.comc7818882013-03-20 19:19:53 +000060 @param drawEffect A wrapper on the effect that generated this program stage.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +000061 @param key The key that was computed by GenKey() from the generating GrEffect.
62 Only the bits indicated by GrBackendEffectFactory::kEffectKeyBits are
63 guaranteed to match the value produced by GenKey();
bsalomon@google.com374e7592012-10-23 17:30:45 +000064 @param outputColor A predefined vec4 in the FS in which the stage should place its output
65 color (or coverage).
66 @param inputColor A vec4 that holds the input color to the stage in the FS. This may be
67 NULL in which case the implied input is solid white (all ones).
68 TODO: Better system for communicating optimization info (e.g. input
69 color is solid white, trans black, known to be opaque, etc.) that allows
bsalomon@google.comf271cc72012-10-24 19:35:13 +000070 the effect to communicate back similar known info about its output.
bsalomon@google.coma469c282012-10-24 18:28:34 +000071 @param samplers One entry for each GrTextureAccess of the GrEffect that generated the
bsalomon@google.comd698f772012-10-25 13:22:00 +000072 GrGLEffect. These can be passed to the builder to emit texture
bsalomon@google.com374e7592012-10-23 17:30:45 +000073 reads in the generated code.
bsalomon@google.comd4726202012-08-03 14:34:46 +000074 */
bsalomon@google.com374e7592012-10-23 17:30:45 +000075 virtual void emitCode(GrGLShaderBuilder* builder,
bsalomon@google.comc7818882013-03-20 19:19:53 +000076 const GrDrawEffect& drawEffect,
bsalomon@google.com46fba0d2012-10-25 21:42:05 +000077 EffectKey key,
bsalomon@google.com374e7592012-10-23 17:30:45 +000078 const char* outputColor,
79 const char* inputColor,
bsalomon@google.com77af6802013-10-02 13:04:56 +000080 const TransformedCoordsArray& coords,
bsalomon@google.com374e7592012-10-23 17:30:45 +000081 const TextureSamplerArray& samplers) = 0;
tomhudson@google.com168e6342012-04-18 17:49:20 +000082
bsalomon@google.comd698f772012-10-25 13:22:00 +000083 /** A GrGLEffect instance can be reused with any GrEffect that produces the same stage
bsalomon@google.coma469c282012-10-24 18:28:34 +000084 key; this function reads data from a stage and uploads any uniform variables required
bsalomon@google.com28a15fb2012-10-26 17:53:18 +000085 by the shaders created in emitCode(). The GrEffect installed in the GrEffectStage is
86 guaranteed to be of the same type that created this GrGLEffect and to have an identical
bsalomon@google.comc7818882013-03-20 19:19:53 +000087 EffectKey as the one that created this GrGLEffect. Effects that use local coords have
88 to consider whether the GrEffectStage's coord change matrix should be used. When explicit
89 local coordinates are used it can be ignored. */
90 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&);
tomhudson@google.com168e6342012-04-18 17:49:20 +000091
bsalomon@google.com289efe02012-05-21 20:57:59 +000092 const char* name() const { return fFactory.name(); }
93
bsalomon@google.com77af6802013-10-02 13:04:56 +000094 static inline EffectKey GenKey(const GrDrawEffect&, const GrGLCaps&) { return 0; }
95
bsalomon@google.comc7818882013-03-20 19:19:53 +000096 static EffectKey GenTextureKey(const GrDrawEffect&, const GrGLCaps&);
bsalomon@google.com77af6802013-10-02 13:04:56 +000097 static EffectKey GenTransformKey(const GrDrawEffect&);
bsalomon@google.comc7818882013-03-20 19:19:53 +000098 static EffectKey GenAttribKey(const GrDrawEffect& stage);
twiz@google.coma5e65ec2012-08-02 15:15:16 +000099
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000100protected:
bsalomon@google.com396e61f2012-10-25 19:00:29 +0000101 const GrBackendEffectFactory& fFactory;
tomhudson@google.com168e6342012-04-18 17:49:20 +0000102};
103
tomhudson@google.com168e6342012-04-18 17:49:20 +0000104#endif