blob: 51e49ec1ecab0e059344d9e8488c5d610a0789fe [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * 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.comac10a2d2010-12-22 21:39:39 +00006 */
7
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@google.comac10a2d2010-12-22 21:39:39 +000010#ifndef GrGpuGL_DEFINED
11#define GrGpuGL_DEFINED
12
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000013#include "GrBinHashKey.h"
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000014#include "GrDrawState.h"
15#include "GrGpu.h"
bsalomon@google.com89ec61e2012-02-10 20:05:18 +000016#include "GrGLContextInfo.h"
bsalomon@google.com4043ae22011-08-02 14:19:11 +000017#include "GrGLIndexBuffer.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000018#include "GrGLIRect.h"
bsalomon@google.com5739d2c2012-05-31 15:07:19 +000019#include "GrGLProgram.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000020#include "GrGLStencilBuffer.h"
21#include "GrGLTexture.h"
22#include "GrGLVertexBuffer.h"
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000023#include "../GrTHashCache.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000024
25class GrGpuGL : public GrGpu {
26public:
bsalomon@google.com5739d2c2012-05-31 15:07:19 +000027 GrGpuGL(const GrGLContextInfo& ctxInfo);
reed@google.comac10a2d2010-12-22 21:39:39 +000028 virtual ~GrGpuGL();
29
bsalomon@google.com89ec61e2012-02-10 20:05:18 +000030 const GrGLInterface* glInterface() const {
31 return fGLContextInfo.interface();
32 }
tomhudson@google.comdd182cb2012-02-10 21:01:00 +000033 GrGLBinding glBinding() const { return fGLContextInfo.binding(); }
34 GrGLVersion glVersion() const { return fGLContextInfo.version(); }
35 GrGLSLGeneration glslGeneration() const {
bsalomon@google.com89ec61e2012-02-10 20:05:18 +000036 return fGLContextInfo.glslGeneration();
37 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +000038
bsalomon@google.com56d11e02011-11-30 19:59:08 +000039 // GrGpu overrides
bsalomon@google.com0a97be22011-11-08 19:20:57 +000040 virtual GrPixelConfig preferredReadPixelsConfig(GrPixelConfig config)
bsalomon@google.com56d11e02011-11-30 19:59:08 +000041 const SK_OVERRIDE;
bsalomon@google.coma85449d2011-11-19 02:36:05 +000042 virtual GrPixelConfig preferredWritePixelsConfig(GrPixelConfig config)
bsalomon@google.com56d11e02011-11-30 19:59:08 +000043 const SK_OVERRIDE;
bsalomon@google.comc4364992011-11-07 15:54:49 +000044 virtual bool readPixelsWillPayForYFlip(
45 GrRenderTarget* renderTarget,
46 int left, int top,
47 int width, int height,
48 GrPixelConfig config,
bsalomon@google.com56d11e02011-11-30 19:59:08 +000049 size_t rowBytes) const SK_OVERRIDE;
50 virtual bool fullReadPixelsIsFasterThanPartial() const SK_OVERRIDE;
bsalomon@google.com75f9f252012-01-31 13:35:56 +000051
bsalomon@google.coma91e9232012-02-23 15:39:54 +000052 virtual bool canPreserveReadWriteUnpremulPixels() SK_OVERRIDE;
53
bsalomon@google.com5739d2c2012-05-31 15:07:19 +000054 virtual void abandonResources() SK_OVERRIDE;
55
56 bool programUnitTest();
57
bsalomon@google.com49209392012-06-05 15:13:46 +000058
bsalomon@google.com88939ae2011-12-14 15:58:11 +000059protected:
bsalomon@google.com1c13c962011-02-14 16:51:21 +000060 // GrGpu overrides
bsalomon@google.com1bf1c212011-11-05 12:18:58 +000061 virtual void onResetContext() SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000062
bsalomon@google.comfea37b52011-04-25 15:51:06 +000063 virtual GrTexture* onCreateTexture(const GrTextureDesc& desc,
bsalomon@google.combcdbbe62011-04-12 15:40:00 +000064 const void* srcData,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +000065 size_t rowBytes) SK_OVERRIDE;
bsalomon@google.combcdbbe62011-04-12 15:40:00 +000066 virtual GrVertexBuffer* onCreateVertexBuffer(uint32_t size,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +000067 bool dynamic) SK_OVERRIDE;
bsalomon@google.combcdbbe62011-04-12 15:40:00 +000068 virtual GrIndexBuffer* onCreateIndexBuffer(uint32_t size,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +000069 bool dynamic) SK_OVERRIDE;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000070 virtual GrPath* onCreatePath(const SkPath&) SK_OVERRIDE;
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +000071 virtual GrTexture* onCreatePlatformTexture(
72 const GrPlatformTextureDesc& desc) SK_OVERRIDE;
73 virtual GrRenderTarget* onCreatePlatformRenderTarget(
74 const GrPlatformRenderTargetDesc& desc) SK_OVERRIDE;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000075 virtual bool createStencilBufferForRenderTarget(GrRenderTarget* rt,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +000076 int width,
77 int height) SK_OVERRIDE;
78 virtual bool attachStencilBufferToRenderTarget(
79 GrStencilBuffer* sb,
80 GrRenderTarget* rt) SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000081
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +000082 virtual void onClear(const GrIRect* rect, GrColor color) SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000083
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +000084 virtual void onForceRenderTargetFlush() SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000085
bsalomon@google.com5877ffd2011-04-11 17:58:48 +000086 virtual bool onReadPixels(GrRenderTarget* target,
bsalomon@google.comc6980972011-11-02 19:57:21 +000087 int left, int top,
88 int width, int height,
89 GrPixelConfig,
bsalomon@google.comc4364992011-11-07 15:54:49 +000090 void* buffer,
91 size_t rowBytes,
92 bool invertY) SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000093
bsalomon@google.com6f379512011-11-16 20:36:03 +000094 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.com75f9f252012-01-31 13:35:56 +000099 virtual void onResolveRenderTarget(GrRenderTarget* target) SK_OVERRIDE;
100
101
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000102 virtual void onGpuDrawIndexed(GrPrimitiveType type,
103 uint32_t startVertex,
104 uint32_t startIndex,
105 uint32_t vertexCount,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000106 uint32_t indexCount) SK_OVERRIDE;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000107 virtual void onGpuDrawNonIndexed(GrPrimitiveType type,
108 uint32_t vertexCount,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000109 uint32_t numVertices) SK_OVERRIDE;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000110 virtual void onGpuStencilPath(const GrPath&, GrPathFill) SK_OVERRIDE;
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000111 virtual void enableScissoring(const GrIRect& rect) SK_OVERRIDE;
112 virtual void disableScissor() SK_OVERRIDE;
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000113
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000114 virtual void clearStencil() SK_OVERRIDE;
115 virtual void clearStencilClip(const GrIRect& rect,
116 bool insideClip) SK_OVERRIDE;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000117 virtual bool flushGraphicsState(DrawType) SK_OVERRIDE;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000118 virtual void setupGeometry(int* startVertex,
119 int* startIndex,
120 int vertexCount,
121 int indexCount) SK_OVERRIDE;
122
bsalomon@google.com49209392012-06-05 15:13:46 +0000123private:
124
125 const GrGLCaps& glCaps() const { return fGLContextInfo.caps(); }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000126
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000127 // binds texture unit in GL
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000128 void setTextureUnit(int unitIdx);
reed@google.comac10a2d2010-12-22 21:39:39 +0000129
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000130 // binds appropriate vertex and index buffers, also returns any extra
131 // extra verts or indices to offset by.
132 void setBuffers(bool indexed,
133 int* extraVertexOffset,
134 int* extraIndexOffset);
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +0000135
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000136 // Subclasses should call this to flush the blend state.
137 // The params should be the final coeffecients to apply
138 // (after any blending optimizations or dual source blending considerations
139 // have been accounted for).
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000140 void flushBlend(bool isLines,
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000141 GrBlendCoeff srcCoeff,
142 GrBlendCoeff dstCoeff);
143
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000144 bool hasExtension(const char* ext) const {
145 return fGLContextInfo.hasExtension(ext);
bsalomon@google.com96399942012-02-13 14:39:16 +0000146 }
147
148 const GrGLContextInfo& glContextInfo() const { return fGLContextInfo; }
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000149
bsalomon@google.com99621082011-11-15 16:47:16 +0000150 // adjusts texture matrix to account for orientation
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000151 static void AdjustTextureMatrix(const GrGLTexture* texture,
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000152 GrMatrix* matrix);
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000153
154 // subclass may try to take advantage of identity tex matrices.
155 // This helper determines if matrix will be identity after all
156 // adjustments are applied.
157 static bool TextureMatrixIsIdentity(const GrGLTexture* texture,
158 const GrSamplerState& sampler);
159
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000160 static bool BlendCoeffReferencesConstant(GrBlendCoeff coeff);
bsalomon@google.com080773c2011-03-15 19:09:25 +0000161
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000162 // for readability of function impls
163 typedef GrGLProgram::ProgramDesc ProgramDesc;
164 typedef ProgramDesc::StageDesc StageDesc;
165 typedef GrGLProgram::CachedData CachedData;
166
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000167 class ProgramCache : public ::GrNoncopyable {
168 public:
169 ProgramCache(const GrGLContextInfo& gl);
170 ~ProgramCache();
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000171
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000172 void abandon();
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000173 CachedData* getProgramData(const GrGLProgram& desc,
174 GrCustomStage** stages);
175 private:
176 enum {
177 kKeySize = GrGLProgram::kProgramKeySize,
178 // We may actually have kMaxEntries+1 shaders in the GL context
179 // because we create a new shader before evicting from the cache.
180 kMaxEntries = 32
181 };
182
183 class Entry;
184 typedef GrBinHashKey<Entry, kKeySize> ProgramHashKey;
185
186 class Entry : public ::GrNoncopyable {
187 public:
188 Entry() {}
189 void copyAndTakeOwnership(Entry& entry);
190 int compare(const ProgramHashKey& key) const {
191 return fKey.compare(key);
192 }
193
194 public:
195 CachedData fProgramData;
196 ProgramHashKey fKey;
197 unsigned int fLRUStamp;
198 };
199
200 GrTHashTable<Entry, ProgramHashKey, 8> fHashCache;
201
202 Entry fEntries[kMaxEntries];
203 int fCount;
204 unsigned int fCurrLRUStamp;
205 const GrGLContextInfo& fGL;
206 };
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000207
bsalomon@google.com4c883782012-06-04 19:05:11 +0000208 // binds the texture and sets its texture params
209 void flushBoundTextureAndParams(int stage);
210
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000211 // sets the texture matrix and domain for the currently bound program
212 void flushTextureMatrixAndDomain(int stage);
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000213
214 // sets the color specified by GrDrawState::setColor()
215 void flushColor(GrColor color);
216
217 // sets the color specified by GrDrawState::setCoverage()
218 void flushCoverage(GrColor color);
219
220 // sets the MVP matrix uniform for currently bound program
221 void flushViewMatrix();
222
223 // flushes the parameters to two point radial gradient
224 void flushRadial2(int stage);
225
226 // flushes the parameters for convolution
227 void flushConvolution(int stage);
228
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000229 // flushes the color matrix
230 void flushColorMatrix();
231
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000232 // flushes dithering, color-mask, and face culling stat
233 void flushMiscFixedFunctionState();
234
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000235 static void DeleteProgram(const GrGLInterface* gl,
236 CachedData* programData);
237
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000238 void buildProgram(bool isPoints,
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000239 BlendOptFlags blendOpts,
240 GrBlendCoeff dstCoeff,
241 GrCustomStage** customStages);
242
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000243 // Inits GrDrawTarget::Caps, sublcass may enable additional caps.
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000244 void initCaps();
245
246 void initFSAASupport();
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000247
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000248 // determines valid stencil formats
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000249 void initStencilFormats();
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000250
reed@google.comac10a2d2010-12-22 21:39:39 +0000251 // notify callbacks to update state tracking when related
252 // objects are bound to GL or deleted outside of the class
253 void notifyVertexBufferBind(const GrGLVertexBuffer* buffer);
254 void notifyVertexBufferDelete(const GrGLVertexBuffer* buffer);
255 void notifyIndexBufferBind(const GrGLIndexBuffer* buffer);
256 void notifyIndexBufferDelete(const GrGLIndexBuffer* buffer);
reed@google.comac10a2d2010-12-22 21:39:39 +0000257 void notifyTextureDelete(GrGLTexture* texture);
258 void notifyRenderTargetDelete(GrRenderTarget* renderTarget);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000259
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000260 void setSpareTextureUnit();
reed@google.comac10a2d2010-12-22 21:39:39 +0000261
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000262 // bound is region that may be modified and therefore has to be resolved.
263 // NULL means whole target. Can be an empty rect.
264 void flushRenderTarget(const GrIRect* bound);
reed@google.comac10a2d2010-12-22 21:39:39 +0000265 void flushStencil();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000266 void flushAAState(bool isLines);
bsalomon@google.com0650e812011-04-08 18:07:53 +0000267
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000268 bool configToGLFormats(GrPixelConfig config,
269 bool getSizedInternal,
270 GrGLenum* internalFormat,
271 GrGLenum* externalFormat,
272 GrGLenum* externalType);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000273 // helper for onCreateTexture and writeTexturePixels
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000274 bool uploadTexData(const GrGLTexture::Desc& desc,
bsalomon@google.com1e0e6072011-11-28 18:49:37 +0000275 bool isNewTexture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000276 int left, int top, int width, int height,
277 GrPixelConfig dataConfig,
278 const void* data,
279 size_t rowBytes);
bsalomon@google.com0650e812011-04-08 18:07:53 +0000280
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000281 bool createRenderTargetObjects(int width, int height,
282 GrGLuint texID,
283 GrGLRenderTarget::Desc* desc);
284
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000285 void fillInConfigRenderableTable();
286
reed@google.comac10a2d2010-12-22 21:39:39 +0000287 friend class GrGLVertexBuffer;
288 friend class GrGLIndexBuffer;
289 friend class GrGLTexture;
290 friend class GrGLRenderTarget;
291
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000292 GrGLContextInfo fGLContextInfo;
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000293
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000294 // GL program-related state
295 ProgramCache* fProgramCache;
296 CachedData* fProgramData;
bsalomon@google.com49209392012-06-05 15:13:46 +0000297 GrGLProgram fCurrentProgram;
298
299 ///////////////////////////////////////////////////////////////////////////
300 ///@name Caching of GL State
301 ///@{
302 int fHWActiveTextureUnitIdx;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000303 GrGLuint fHWProgramID;
304 GrColor fHWConstAttribColor;
305 GrColor fHWConstAttribCoverage;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000306
bsalomon@google.com49209392012-06-05 15:13:46 +0000307 // last scissor / viewport scissor state seen by the GL.
308 struct {
309 bool fScissorEnabled;
310 GrGLIRect fScissorRect;
311 GrGLIRect fViewportRect;
312 } fHWBounds;
313
314 enum TriState {
315 kNo_TriState,
316 kYes_TriState,
317 kUnknown_TriState
318 };
319
320 struct {
321 size_t fVertexOffset;
322 GrVertexLayout fVertexLayout;
323 const GrVertexBuffer* fVertexBuffer;
324 const GrIndexBuffer* fIndexBuffer;
325 bool fArrayPtrsDirty;
326 } fHWGeometryState;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000327
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +0000328 struct {
329 GrBlendCoeff fSrcCoeff;
330 GrBlendCoeff fDstCoeff;
331 GrColor fConstColor;
332 bool fConstColorValid;
333 TriState fEnabled;
334
335 void invalidate() {
bsalomon@google.com47059542012-06-06 20:51:20 +0000336 fSrcCoeff = kInvalid_GrBlendCoeff;
337 fDstCoeff = kInvalid_GrBlendCoeff;
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +0000338 fConstColorValid = false;
339 fEnabled = kUnknown_TriState;
340 }
341 } fHWBlendState;
342
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +0000343 struct {
344 TriState fMSAAEnabled;
345 TriState fSmoothLineEnabled;
346 void invalidate() {
347 fMSAAEnabled = kUnknown_TriState;
348 fSmoothLineEnabled = kUnknown_TriState;
349 }
350 } fHWAAState;
351
bsalomon@google.com411dad02012-06-05 20:24:20 +0000352 GrClipMaskManager::StencilClipMode fHWStencilClipMode;
353 GrStencilSettings fHWStencilSettings;
bsalomon@google.com457b8a32012-05-21 21:19:58 +0000354
bsalomon@google.comc811ea32012-05-21 15:33:09 +0000355 GrDrawState::DrawFace fHWDrawFace;
356 TriState fHWWriteToColor;
357 TriState fHWDitherEnabled;
358 GrRenderTarget* fHWBoundRenderTarget;
359 GrTexture* fHWBoundTextures[GrDrawState::kNumStages];
bsalomon@google.com49209392012-06-05 15:13:46 +0000360 ///@}
bsalomon@google.com978c8c62012-05-21 14:45:49 +0000361
bsalomon@google.comfe676522011-06-17 18:12:21 +0000362 // we record what stencil format worked last time to hopefully exit early
363 // from our loop that tries stencil formats and calls check fb status.
364 int fLastSuccessfulStencilFmtIdx;
365
bsalomon@google.com49209392012-06-05 15:13:46 +0000366 enum UnpremulConversion {
367 kUpOnWrite_DownOnRead_UnpremulConversion,
368 kDownOnWrite_UpOnRead_UnpremulConversion
369 } fUnpremulConversion;
370
bsalomon@google.coma91e9232012-02-23 15:39:54 +0000371 enum CanPreserveUnpremulRoundtrip {
372 kUnknown_CanPreserveUnpremulRoundtrip,
373 kNo_CanPreserveUnpremulRoundtrip,
374 kYes_CanPreserveUnpremulRoundtrip,
375 } fCanPreserveUnpremulRoundtrip;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000376
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000377 bool fPrintedCaps;
378
reed@google.comac10a2d2010-12-22 21:39:39 +0000379 typedef GrGpu INHERITED;
380};
381
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000382#endif
bsalomon@google.comfe676522011-06-17 18:12:21 +0000383