| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
| epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2011 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. |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | |
| epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 10 | #ifndef GrGpuGL_DEFINED |
| 11 | #define GrGpuGL_DEFINED |
| 12 | |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 13 | #include "GrBinHashKey.h" |
| tomhudson@google.com | d8f856c | 2012-05-10 12:13:36 +0000 | [diff] [blame] | 14 | #include "GrDrawState.h" |
| 15 | #include "GrGpu.h" |
| bsalomon@google.com | 89ec61e | 2012-02-10 20:05:18 +0000 | [diff] [blame] | 16 | #include "GrGLContextInfo.h" |
| bsalomon@google.com | 4043ae2 | 2011-08-02 14:19:11 +0000 | [diff] [blame] | 17 | #include "GrGLIndexBuffer.h" |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 18 | #include "GrGLIRect.h" |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 19 | #include "GrGLProgram.h" |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 20 | #include "GrGLStencilBuffer.h" |
| 21 | #include "GrGLTexture.h" |
| 22 | #include "GrGLVertexBuffer.h" |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 23 | #include "../GrTHashCache.h" |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 24 | |
| 25 | class GrGpuGL : public GrGpu { |
| 26 | public: |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 27 | GrGpuGL(const GrGLContextInfo& ctxInfo); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 28 | virtual ~GrGpuGL(); |
| 29 | |
| bsalomon@google.com | 89ec61e | 2012-02-10 20:05:18 +0000 | [diff] [blame] | 30 | const GrGLInterface* glInterface() const { |
| 31 | return fGLContextInfo.interface(); |
| 32 | } |
| tomhudson@google.com | dd182cb | 2012-02-10 21:01:00 +0000 | [diff] [blame] | 33 | GrGLBinding glBinding() const { return fGLContextInfo.binding(); } |
| 34 | GrGLVersion glVersion() const { return fGLContextInfo.version(); } |
| 35 | GrGLSLGeneration glslGeneration() const { |
| bsalomon@google.com | 89ec61e | 2012-02-10 20:05:18 +0000 | [diff] [blame] | 36 | return fGLContextInfo.glslGeneration(); |
| 37 | } |
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 38 | |
| bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 39 | // GrGpu overrides |
| bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 40 | virtual GrPixelConfig preferredReadPixelsConfig(GrPixelConfig config) |
| bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 41 | const SK_OVERRIDE; |
| bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 42 | virtual GrPixelConfig preferredWritePixelsConfig(GrPixelConfig config) |
| bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 43 | const SK_OVERRIDE; |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 44 | virtual bool readPixelsWillPayForYFlip( |
| 45 | GrRenderTarget* renderTarget, |
| 46 | int left, int top, |
| 47 | int width, int height, |
| 48 | GrPixelConfig config, |
| bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 49 | size_t rowBytes) const SK_OVERRIDE; |
| 50 | virtual bool fullReadPixelsIsFasterThanPartial() const SK_OVERRIDE; |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 51 | |
| bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 52 | virtual bool canPreserveReadWriteUnpremulPixels() SK_OVERRIDE; |
| 53 | |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 54 | virtual void abandonResources() SK_OVERRIDE; |
| 55 | |
| 56 | bool programUnitTest(); |
| 57 | |
| bsalomon@google.com | 4920939 | 2012-06-05 15:13:46 +0000 | [diff] [blame] | 58 | |
| bsalomon@google.com | 88939ae | 2011-12-14 15:58:11 +0000 | [diff] [blame] | 59 | protected: |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 60 | // GrGpu overrides |
| bsalomon@google.com | 1bf1c21 | 2011-11-05 12:18:58 +0000 | [diff] [blame] | 61 | virtual void onResetContext() SK_OVERRIDE; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 62 | |
| bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 63 | virtual GrTexture* onCreateTexture(const GrTextureDesc& desc, |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 64 | const void* srcData, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 65 | size_t rowBytes) SK_OVERRIDE; |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 66 | virtual GrVertexBuffer* onCreateVertexBuffer(uint32_t size, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 67 | bool dynamic) SK_OVERRIDE; |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 68 | virtual GrIndexBuffer* onCreateIndexBuffer(uint32_t size, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 69 | bool dynamic) SK_OVERRIDE; |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 70 | virtual GrPath* onCreatePath(const SkPath&) SK_OVERRIDE; |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 71 | virtual GrTexture* onCreatePlatformTexture( |
| 72 | const GrPlatformTextureDesc& desc) SK_OVERRIDE; |
| 73 | virtual GrRenderTarget* onCreatePlatformRenderTarget( |
| 74 | const GrPlatformRenderTargetDesc& desc) SK_OVERRIDE; |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 75 | virtual bool createStencilBufferForRenderTarget(GrRenderTarget* rt, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 76 | int width, |
| 77 | int height) SK_OVERRIDE; |
| 78 | virtual bool attachStencilBufferToRenderTarget( |
| 79 | GrStencilBuffer* sb, |
| 80 | GrRenderTarget* rt) SK_OVERRIDE; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 81 | |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 82 | virtual void onClear(const GrIRect* rect, GrColor color) SK_OVERRIDE; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 83 | |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 84 | virtual void onForceRenderTargetFlush() SK_OVERRIDE; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 85 | |
| bsalomon@google.com | 5877ffd | 2011-04-11 17:58:48 +0000 | [diff] [blame] | 86 | virtual bool onReadPixels(GrRenderTarget* target, |
| bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 87 | int left, int top, |
| 88 | int width, int height, |
| 89 | GrPixelConfig, |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 90 | void* buffer, |
| 91 | size_t rowBytes, |
| 92 | bool invertY) SK_OVERRIDE; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 93 | |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 94 | virtual void onWriteTexturePixels(GrTexture* texture, |
| 95 | int left, int top, int width, int height, |
| 96 | GrPixelConfig config, const void* buffer, |
| 97 | size_t rowBytes) SK_OVERRIDE; |
| 98 | |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 99 | virtual void onResolveRenderTarget(GrRenderTarget* target) SK_OVERRIDE; |
| 100 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 101 | virtual void onGpuDrawIndexed(GrPrimitiveType type, |
| 102 | uint32_t startVertex, |
| 103 | uint32_t startIndex, |
| 104 | uint32_t vertexCount, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 105 | uint32_t indexCount) SK_OVERRIDE; |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 106 | virtual void onGpuDrawNonIndexed(GrPrimitiveType type, |
| 107 | uint32_t vertexCount, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 108 | uint32_t numVertices) SK_OVERRIDE; |
| bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 109 | |
| 110 | virtual void setStencilPathSettings(const GrPath&, |
| 111 | GrPathFill, |
| 112 | GrStencilSettings* settings) |
| 113 | SK_OVERRIDE; |
| 114 | virtual void onGpuStencilPath(const GrPath*, GrPathFill) SK_OVERRIDE; |
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 115 | |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 116 | virtual void clearStencil() SK_OVERRIDE; |
| 117 | virtual void clearStencilClip(const GrIRect& rect, |
| 118 | bool insideClip) SK_OVERRIDE; |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 119 | virtual bool flushGraphicsState(DrawType) SK_OVERRIDE; |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 120 | virtual void setupGeometry(int* startVertex, |
| 121 | int* startIndex, |
| 122 | int vertexCount, |
| 123 | int indexCount) SK_OVERRIDE; |
| 124 | |
| bsalomon@google.com | 4920939 | 2012-06-05 15:13:46 +0000 | [diff] [blame] | 125 | private: |
| 126 | |
| 127 | const GrGLCaps& glCaps() const { return fGLContextInfo.caps(); } |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 128 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 129 | // binds texture unit in GL |
| bsalomon@google.com | 8531c1c | 2011-01-13 19:52:45 +0000 | [diff] [blame] | 130 | void setTextureUnit(int unitIdx); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 131 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 132 | // binds appropriate vertex and index buffers, also returns any extra |
| 133 | // extra verts or indices to offset by. |
| 134 | void setBuffers(bool indexed, |
| 135 | int* extraVertexOffset, |
| 136 | int* extraIndexOffset); |
| bsalomon@google.com | 7acdb8e | 2011-02-11 14:07:02 +0000 | [diff] [blame] | 137 | |
| bsalomon@google.com | 86c1f71 | 2011-10-12 14:54:26 +0000 | [diff] [blame] | 138 | // Subclasses should call this to flush the blend state. |
| 139 | // The params should be the final coeffecients to apply |
| 140 | // (after any blending optimizations or dual source blending considerations |
| 141 | // have been accounted for). |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 142 | void flushBlend(bool isLines, |
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 143 | GrBlendCoeff srcCoeff, |
| 144 | GrBlendCoeff dstCoeff); |
| 145 | |
| bsalomon@google.com | 89ec61e | 2012-02-10 20:05:18 +0000 | [diff] [blame] | 146 | bool hasExtension(const char* ext) const { |
| 147 | return fGLContextInfo.hasExtension(ext); |
| bsalomon@google.com | 9639994 | 2012-02-13 14:39:16 +0000 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | const GrGLContextInfo& glContextInfo() const { return fGLContextInfo; } |
| bsalomon@google.com | 2c17fcd | 2011-07-06 17:47:02 +0000 | [diff] [blame] | 151 | |
| bsalomon@google.com | 9962108 | 2011-11-15 16:47:16 +0000 | [diff] [blame] | 152 | // adjusts texture matrix to account for orientation |
| bsalomon@google.com | c6cf723 | 2011-02-17 16:43:10 +0000 | [diff] [blame] | 153 | static void AdjustTextureMatrix(const GrGLTexture* texture, |
| bsalomon@google.com | c6cf723 | 2011-02-17 16:43:10 +0000 | [diff] [blame] | 154 | GrMatrix* matrix); |
| bsalomon@google.com | 88939ae | 2011-12-14 15:58:11 +0000 | [diff] [blame] | 155 | |
| 156 | // subclass may try to take advantage of identity tex matrices. |
| 157 | // This helper determines if matrix will be identity after all |
| 158 | // adjustments are applied. |
| 159 | static bool TextureMatrixIsIdentity(const GrGLTexture* texture, |
| 160 | const GrSamplerState& sampler); |
| 161 | |
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 162 | static bool BlendCoeffReferencesConstant(GrBlendCoeff coeff); |
| bsalomon@google.com | 080773c | 2011-03-15 19:09:25 +0000 | [diff] [blame] | 163 | |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 164 | // for readability of function impls |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 165 | typedef GrGLProgram::Desc ProgramDesc; |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 166 | typedef ProgramDesc::StageDesc StageDesc; |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 167 | |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 168 | class ProgramCache : public ::GrNoncopyable { |
| 169 | public: |
| 170 | ProgramCache(const GrGLContextInfo& gl); |
| 171 | ~ProgramCache(); |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 172 | |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 173 | void abandon(); |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 174 | GrGLProgram* getProgram(const GrGLProgram::Desc& desc, GrCustomStage** stages); |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 175 | private: |
| 176 | enum { |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 177 | kKeySize = sizeof(ProgramDesc), |
| 178 | // We may actually have kMaxEntries+1 shaders in the GL context because we create a new |
| 179 | // shader before evicting from the cache. |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 180 | kMaxEntries = 32 |
| 181 | }; |
| 182 | |
| 183 | class Entry; |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 184 | // The value of the hash key is based on the ProgramDesc. |
| 185 | typedef GrTBinHashKey<Entry, kKeySize> ProgramHashKey; |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 186 | |
| 187 | class Entry : public ::GrNoncopyable { |
| 188 | public: |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 189 | Entry() : fProgram(NULL), fLRUStamp(0) {} |
| 190 | Entry& operator = (const Entry& entry) { |
| 191 | GrSafeRef(entry.fProgram.get()); |
| 192 | fProgram.reset(entry.fProgram.get()); |
| 193 | fKey = entry.fKey; |
| 194 | fLRUStamp = entry.fLRUStamp; |
| 195 | return *this; |
| 196 | } |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 197 | int compare(const ProgramHashKey& key) const { |
| 198 | return fKey.compare(key); |
| 199 | } |
| 200 | |
| 201 | public: |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 202 | SkAutoTUnref<GrGLProgram> fProgram; |
| 203 | ProgramHashKey fKey; |
| 204 | unsigned int fLRUStamp; // Move outside entry? |
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 205 | }; |
| 206 | |
| 207 | GrTHashTable<Entry, ProgramHashKey, 8> fHashCache; |
| 208 | |
| 209 | Entry fEntries[kMaxEntries]; |
| 210 | int fCount; |
| 211 | unsigned int fCurrLRUStamp; |
| 212 | const GrGLContextInfo& fGL; |
| 213 | }; |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 214 | |
| bsalomon@google.com | 4c88378 | 2012-06-04 19:05:11 +0000 | [diff] [blame] | 215 | // binds the texture and sets its texture params |
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 216 | // This may also perform a downsample on the src texture which may or may |
| 217 | // not modify the scissor test and rect. So in flushGraphicsState a |
| 218 | // call to flushScissor must occur after all textures have been flushed via |
| 219 | // this function. |
| bsalomon@google.com | 4c88378 | 2012-06-04 19:05:11 +0000 | [diff] [blame] | 220 | void flushBoundTextureAndParams(int stage); |
| tomhudson@google.com | d0c1a06 | 2012-07-12 17:23:52 +0000 | [diff] [blame] | 221 | void flushBoundTextureAndParams(int stage, GrGLTexture* nextTexture); |
| bsalomon@google.com | 4c88378 | 2012-06-04 19:05:11 +0000 | [diff] [blame] | 222 | |
| bsalomon@google.com | 890e3b5 | 2012-06-01 19:01:37 +0000 | [diff] [blame] | 223 | // sets the texture matrix and domain for the currently bound program |
| 224 | void flushTextureMatrixAndDomain(int stage); |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 225 | |
| 226 | // sets the color specified by GrDrawState::setColor() |
| 227 | void flushColor(GrColor color); |
| 228 | |
| 229 | // sets the color specified by GrDrawState::setCoverage() |
| 230 | void flushCoverage(GrColor color); |
| 231 | |
| 232 | // sets the MVP matrix uniform for currently bound program |
| bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 233 | void flushViewMatrix(DrawType type); |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 234 | |
| 235 | // flushes the parameters to two point radial gradient |
| 236 | void flushRadial2(int stage); |
| 237 | |
| 238 | // flushes the parameters for convolution |
| 239 | void flushConvolution(int stage); |
| 240 | |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 241 | // flushes the color matrix |
| 242 | void flushColorMatrix(); |
| 243 | |
| bsalomon@google.com | c96cb3a | 2012-06-04 19:31:00 +0000 | [diff] [blame] | 244 | // flushes dithering, color-mask, and face culling stat |
| 245 | void flushMiscFixedFunctionState(); |
| 246 | |
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 247 | // flushes the scissor. see the note on flushBoundTextureAndParams about |
| 248 | // flushing the scissor after that function is called. |
| 249 | void flushScissor(); |
| 250 | |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 251 | static void DeleteProgram(const GrGLInterface* gl, GrGLProgram* programData); |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 252 | |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 253 | void buildProgram(bool isPoints, |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 254 | BlendOptFlags blendOpts, |
| 255 | GrBlendCoeff dstCoeff, |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 256 | GrCustomStage** customStages, |
| 257 | ProgramDesc* desc); |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 258 | |
| bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 259 | // Inits GrDrawTarget::Caps, sublcass may enable additional caps. |
| bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 260 | void initCaps(); |
| 261 | |
| 262 | void initFSAASupport(); |
| bsalomon@google.com | 6aa25c3 | 2011-04-27 19:55:29 +0000 | [diff] [blame] | 263 | |
| bsalomon@google.com | 2c17fcd | 2011-07-06 17:47:02 +0000 | [diff] [blame] | 264 | // determines valid stencil formats |
| bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 265 | void initStencilFormats(); |
| bsalomon@google.com | 2c17fcd | 2011-07-06 17:47:02 +0000 | [diff] [blame] | 266 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 267 | // notify callbacks to update state tracking when related |
| 268 | // objects are bound to GL or deleted outside of the class |
| 269 | void notifyVertexBufferBind(const GrGLVertexBuffer* buffer); |
| 270 | void notifyVertexBufferDelete(const GrGLVertexBuffer* buffer); |
| 271 | void notifyIndexBufferBind(const GrGLIndexBuffer* buffer); |
| 272 | void notifyIndexBufferDelete(const GrGLIndexBuffer* buffer); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 273 | void notifyTextureDelete(GrGLTexture* texture); |
| 274 | void notifyRenderTargetDelete(GrRenderTarget* renderTarget); |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 275 | |
| bsalomon@google.com | 8531c1c | 2011-01-13 19:52:45 +0000 | [diff] [blame] | 276 | void setSpareTextureUnit(); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 277 | |
| bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 278 | // bound is region that may be modified and therefore has to be resolved. |
| 279 | // NULL means whole target. Can be an empty rect. |
| 280 | void flushRenderTarget(const GrIRect* bound); |
| bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 281 | void flushStencil(DrawType); |
| 282 | void flushAAState(DrawType); |
| bsalomon@google.com | 0650e81 | 2011-04-08 18:07:53 +0000 | [diff] [blame] | 283 | |
| bsalomon@google.com | 280e99f | 2012-01-05 16:17:38 +0000 | [diff] [blame] | 284 | bool configToGLFormats(GrPixelConfig config, |
| 285 | bool getSizedInternal, |
| 286 | GrGLenum* internalFormat, |
| 287 | GrGLenum* externalFormat, |
| 288 | GrGLenum* externalType); |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 289 | // helper for onCreateTexture and writeTexturePixels |
| bsalomon@google.com | 136f55b | 2011-11-28 18:34:44 +0000 | [diff] [blame] | 290 | bool uploadTexData(const GrGLTexture::Desc& desc, |
| bsalomon@google.com | 1e0e607 | 2011-11-28 18:49:37 +0000 | [diff] [blame] | 291 | bool isNewTexture, |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 292 | int left, int top, int width, int height, |
| 293 | GrPixelConfig dataConfig, |
| 294 | const void* data, |
| 295 | size_t rowBytes); |
| bsalomon@google.com | 0650e81 | 2011-04-08 18:07:53 +0000 | [diff] [blame] | 296 | |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 297 | bool createRenderTargetObjects(int width, int height, |
| 298 | GrGLuint texID, |
| 299 | GrGLRenderTarget::Desc* desc); |
| 300 | |
| robertphillips@google.com | 99a5ac0 | 2012-04-10 19:26:38 +0000 | [diff] [blame] | 301 | void fillInConfigRenderableTable(); |
| 302 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 303 | friend class GrGLVertexBuffer; |
| 304 | friend class GrGLIndexBuffer; |
| 305 | friend class GrGLTexture; |
| 306 | friend class GrGLRenderTarget; |
| 307 | |
| bsalomon@google.com | 89ec61e | 2012-02-10 20:05:18 +0000 | [diff] [blame] | 308 | GrGLContextInfo fGLContextInfo; |
| bsalomon@google.com | 2c17fcd | 2011-07-06 17:47:02 +0000 | [diff] [blame] | 309 | |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 310 | // GL program-related state |
| 311 | ProgramCache* fProgramCache; |
| bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame^] | 312 | SkAutoTUnref<GrGLProgram> fCurrentProgram; |
| bsalomon@google.com | 4920939 | 2012-06-05 15:13:46 +0000 | [diff] [blame] | 313 | |
| 314 | /////////////////////////////////////////////////////////////////////////// |
| 315 | ///@name Caching of GL State |
| 316 | ///@{ |
| 317 | int fHWActiveTextureUnitIdx; |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 318 | GrGLuint fHWProgramID; |
| 319 | GrColor fHWConstAttribColor; |
| 320 | GrColor fHWConstAttribCoverage; |
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 321 | |
| bsalomon@google.com | 4920939 | 2012-06-05 15:13:46 +0000 | [diff] [blame] | 322 | enum TriState { |
| 323 | kNo_TriState, |
| 324 | kYes_TriState, |
| 325 | kUnknown_TriState |
| 326 | }; |
| 327 | |
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 328 | // last scissor / viewport scissor state seen by the GL. |
| 329 | struct { |
| 330 | TriState fEnabled; |
| 331 | GrGLIRect fRect; |
| 332 | void invalidate() { |
| 333 | fEnabled = kUnknown_TriState; |
| 334 | fRect.invalidate(); |
| 335 | } |
| 336 | } fHWScissorSettings; |
| 337 | |
| 338 | GrGLIRect fHWViewport; |
| 339 | |
| bsalomon@google.com | 4920939 | 2012-06-05 15:13:46 +0000 | [diff] [blame] | 340 | struct { |
| 341 | size_t fVertexOffset; |
| 342 | GrVertexLayout fVertexLayout; |
| 343 | const GrVertexBuffer* fVertexBuffer; |
| 344 | const GrIndexBuffer* fIndexBuffer; |
| 345 | bool fArrayPtrsDirty; |
| 346 | } fHWGeometryState; |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 347 | |
| bsalomon@google.com | a4d8fc2 | 2012-05-21 13:21:46 +0000 | [diff] [blame] | 348 | struct { |
| 349 | GrBlendCoeff fSrcCoeff; |
| 350 | GrBlendCoeff fDstCoeff; |
| 351 | GrColor fConstColor; |
| 352 | bool fConstColorValid; |
| 353 | TriState fEnabled; |
| 354 | |
| 355 | void invalidate() { |
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 356 | fSrcCoeff = kInvalid_GrBlendCoeff; |
| 357 | fDstCoeff = kInvalid_GrBlendCoeff; |
| bsalomon@google.com | a4d8fc2 | 2012-05-21 13:21:46 +0000 | [diff] [blame] | 358 | fConstColorValid = false; |
| 359 | fEnabled = kUnknown_TriState; |
| 360 | } |
| 361 | } fHWBlendState; |
| 362 | |
| bsalomon@google.com | 4d5f3fe | 2012-05-21 17:11:44 +0000 | [diff] [blame] | 363 | struct { |
| 364 | TriState fMSAAEnabled; |
| 365 | TriState fSmoothLineEnabled; |
| 366 | void invalidate() { |
| 367 | fMSAAEnabled = kUnknown_TriState; |
| 368 | fSmoothLineEnabled = kUnknown_TriState; |
| 369 | } |
| 370 | } fHWAAState; |
| 371 | |
| bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 372 | struct { |
| 373 | GrMatrix fViewMatrix; |
| 374 | SkISize fRTSize; |
| 375 | void invalidate() { |
| 376 | fViewMatrix = GrMatrix::InvalidMatrix(); |
| 377 | fRTSize.fWidth = -1; // just make the first value compared illegal. |
| 378 | } |
| 379 | } fHWPathMatrixState; |
| 380 | |
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 381 | GrStencilSettings fHWStencilSettings; |
| 382 | TriState fHWStencilTestEnabled; |
| bsalomon@google.com | 457b8a3 | 2012-05-21 21:19:58 +0000 | [diff] [blame] | 383 | |
| bsalomon@google.com | c811ea3 | 2012-05-21 15:33:09 +0000 | [diff] [blame] | 384 | GrDrawState::DrawFace fHWDrawFace; |
| 385 | TriState fHWWriteToColor; |
| 386 | TriState fHWDitherEnabled; |
| 387 | GrRenderTarget* fHWBoundRenderTarget; |
| 388 | GrTexture* fHWBoundTextures[GrDrawState::kNumStages]; |
| bsalomon@google.com | 4920939 | 2012-06-05 15:13:46 +0000 | [diff] [blame] | 389 | ///@} |
| bsalomon@google.com | 978c8c6 | 2012-05-21 14:45:49 +0000 | [diff] [blame] | 390 | |
| bsalomon@google.com | fe67652 | 2011-06-17 18:12:21 +0000 | [diff] [blame] | 391 | // we record what stencil format worked last time to hopefully exit early |
| 392 | // from our loop that tries stencil formats and calls check fb status. |
| 393 | int fLastSuccessfulStencilFmtIdx; |
| 394 | |
| bsalomon@google.com | 4920939 | 2012-06-05 15:13:46 +0000 | [diff] [blame] | 395 | enum UnpremulConversion { |
| 396 | kUpOnWrite_DownOnRead_UnpremulConversion, |
| 397 | kDownOnWrite_UpOnRead_UnpremulConversion |
| 398 | } fUnpremulConversion; |
| 399 | |
| bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 400 | enum CanPreserveUnpremulRoundtrip { |
| 401 | kUnknown_CanPreserveUnpremulRoundtrip, |
| 402 | kNo_CanPreserveUnpremulRoundtrip, |
| 403 | kYes_CanPreserveUnpremulRoundtrip, |
| 404 | } fCanPreserveUnpremulRoundtrip; |
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 405 | |
| bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 406 | bool fPrintedCaps; |
| 407 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 408 | typedef GrGpu INHERITED; |
| 409 | }; |
| 410 | |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 411 | #endif |
| bsalomon@google.com | fe67652 | 2011-06-17 18:12:21 +0000 | [diff] [blame] | 412 | |