blob: 4ea4e1210ba02fdd622f0adb1d73049d72efcd17 [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
robertphillips@google.com37ebe3f2013-03-04 20:03:44 +000013
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000014#include "GrBinHashKey.h"
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000015#include "GrDrawState.h"
16#include "GrGpu.h"
robertphillips@google.com6177e692013-02-28 20:16:25 +000017#include "GrGLContext.h"
bsalomon@google.com4043ae22011-08-02 14:19:11 +000018#include "GrGLIndexBuffer.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000019#include "GrGLIRect.h"
bsalomon@google.com5739d2c2012-05-31 15:07:19 +000020#include "GrGLProgram.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000021#include "GrGLStencilBuffer.h"
22#include "GrGLTexture.h"
bsalomon@google.com6918d482013-03-07 19:09:11 +000023#include "GrGLVertexArray.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000024#include "GrGLVertexBuffer.h"
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000025#include "../GrTHashCache.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000026
commit-bot@chromium.org174db772013-03-21 12:46:01 +000027#ifdef SK_DEVELOPER
jvanverth@google.com94878772013-03-12 16:00:54 +000028#define PROGRAM_CACHE_STATS
29#endif
30
reed@google.comac10a2d2010-12-22 21:39:39 +000031class GrGpuGL : public GrGpu {
32public:
robertphillips@google.com6177e692013-02-28 20:16:25 +000033 GrGpuGL(const GrGLContext& ctx, GrContext* context);
reed@google.comac10a2d2010-12-22 21:39:39 +000034 virtual ~GrGpuGL();
35
robertphillips@google.com6177e692013-02-28 20:16:25 +000036 const GrGLInterface* glInterface() const { return fGLContext.interface(); }
37 GrGLBinding glBinding() const { return fGLContext.info().binding(); }
38 GrGLVersion glVersion() const { return fGLContext.info().version(); }
39 GrGLSLGeneration glslGeneration() const { return fGLContext.info().glslGeneration(); }
bsalomon@google.com0b77d682011-08-19 13:28:54 +000040
bsalomon@google.com34cccde2013-01-04 18:34:30 +000041 // Used by GrGLProgram to bind necessary textures for GrGLEffects.
42 void bindTexture(int unitIdx, const GrTextureParams& params, GrGLTexture* texture);
43
bsalomon@google.coma45afcf2013-02-04 18:46:49 +000044 bool programUnitTest(int maxStages);
bsalomon@google.com34cccde2013-01-04 18:34:30 +000045
bsalomon@google.com56d11e02011-11-30 19:59:08 +000046 // GrGpu overrides
bsalomon@google.com9c680582013-02-06 18:17:50 +000047 virtual GrPixelConfig preferredReadPixelsConfig(GrPixelConfig config) const SK_OVERRIDE;
48 virtual GrPixelConfig preferredWritePixelsConfig(GrPixelConfig config) const SK_OVERRIDE;
49 virtual bool canWriteTexturePixels(const GrTexture*, GrPixelConfig srcConfig) const SK_OVERRIDE;
bsalomon@google.comc4364992011-11-07 15:54:49 +000050 virtual bool readPixelsWillPayForYFlip(
51 GrRenderTarget* renderTarget,
52 int left, int top,
53 int width, int height,
54 GrPixelConfig config,
bsalomon@google.com56d11e02011-11-30 19:59:08 +000055 size_t rowBytes) const SK_OVERRIDE;
56 virtual bool fullReadPixelsIsFasterThanPartial() const SK_OVERRIDE;
bsalomon@google.com75f9f252012-01-31 13:35:56 +000057
bsalomon@google.com5739d2c2012-05-31 15:07:19 +000058 virtual void abandonResources() SK_OVERRIDE;
59
bsalomon@google.combcce8922013-03-25 15:38:39 +000060 const GrGLCaps& glCaps() const { return *fGLContext.info().caps(); }
bsalomon@google.com91207482013-02-12 21:45:24 +000061
bsalomon@google.com6918d482013-03-07 19:09:11 +000062 // These functions should be used to bind GL objects. They track the GL state and skip redundant
skia.committer@gmail.com754a3eb2013-03-08 07:01:25 +000063 // bindings. Making the equivalent glBind calls directly will confuse the state tracking.
bsalomon@google.com6918d482013-03-07 19:09:11 +000064 void bindVertexArray(GrGLuint id) {
65 fHWGeometryState.setVertexArrayID(this, id);
66 }
67 void bindIndexBufferAndDefaultVertexArray(GrGLuint id) {
68 fHWGeometryState.setIndexBufferIDOnDefaultVertexArray(this, id);
69 }
70 void bindVertexBuffer(GrGLuint id) {
71 fHWGeometryState.setVertexBufferID(this, id);
72 }
73
74 // These callbacks update state tracking when GL objects are deleted. They are called from
75 // GrGLResource onRelease functions.
76 void notifyVertexArrayDelete(GrGLuint id) {
77 fHWGeometryState.notifyVertexArrayDelete(id);
78 }
79 void notifyVertexBufferDelete(GrGLuint id) {
80 fHWGeometryState.notifyVertexBufferDelete(id);
81 }
82 void notifyIndexBufferDelete(GrGLuint id) {
83 fHWGeometryState.notifyIndexBufferDelete(id);
84 }
bsalomon@google.com880b8fc2013-02-19 20:17:28 +000085 void notifyTextureDelete(GrGLTexture* texture);
86 void notifyRenderTargetDelete(GrRenderTarget* renderTarget);
87
commit-bot@chromium.org63150af2013-04-11 22:00:22 +000088protected:
89 virtual bool onCopySurface(GrSurface* dst,
90 GrSurface* src,
91 const SkIRect& srcRect,
92 const SkIPoint& dstPoint) SK_OVERRIDE;
93
94 virtual bool onCanCopySurface(GrSurface* dst,
95 GrSurface* src,
96 const SkIRect& srcRect,
97 const SkIPoint& dstPoint) SK_OVERRIDE;
98
99
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000100private:
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000101 // GrGpu overrides
bsalomon@google.com1bf1c212011-11-05 12:18:58 +0000102 virtual void onResetContext() SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000103
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000104 virtual GrTexture* onCreateTexture(const GrTextureDesc& desc,
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000105 const void* srcData,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000106 size_t rowBytes) SK_OVERRIDE;
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000107 virtual GrVertexBuffer* onCreateVertexBuffer(uint32_t size,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000108 bool dynamic) SK_OVERRIDE;
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000109 virtual GrIndexBuffer* onCreateIndexBuffer(uint32_t size,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000110 bool dynamic) SK_OVERRIDE;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000111 virtual GrPath* onCreatePath(const SkPath&) SK_OVERRIDE;
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000112 virtual GrTexture* onWrapBackendTexture(const GrBackendTextureDesc&) SK_OVERRIDE;
113 virtual GrRenderTarget* onWrapBackendRenderTarget(const GrBackendRenderTargetDesc&) SK_OVERRIDE;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000114 virtual bool createStencilBufferForRenderTarget(GrRenderTarget* rt,
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000115 int width,
116 int height) SK_OVERRIDE;
117 virtual bool attachStencilBufferToRenderTarget(
118 GrStencilBuffer* sb,
119 GrRenderTarget* rt) SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000120
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000121 virtual void onClear(const GrIRect* rect, GrColor color) SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000122
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000123 virtual void onForceRenderTargetFlush() SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000124
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000125 virtual bool onReadPixels(GrRenderTarget* target,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000126 int left, int top,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000127 int width, int height,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000128 GrPixelConfig,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000129 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000130 size_t rowBytes) SK_OVERRIDE;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000131
bsalomon@google.com9c680582013-02-06 18:17:50 +0000132 virtual bool onWriteTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000133 int left, int top, int width, int height,
134 GrPixelConfig config, const void* buffer,
135 size_t rowBytes) SK_OVERRIDE;
136
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000137 virtual void onResolveRenderTarget(GrRenderTarget* target) SK_OVERRIDE;
138
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000139 virtual void onGpuDraw(const DrawInfo&) SK_OVERRIDE;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000140
141 virtual void setStencilPathSettings(const GrPath&,
sugoi@google.com12b4e272012-12-06 20:13:11 +0000142 SkPath::FillType,
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000143 GrStencilSettings* settings)
144 SK_OVERRIDE;
sugoi@google.com12b4e272012-12-06 20:13:11 +0000145 virtual void onGpuStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000146
bsalomon@google.com13f1b6f2012-05-31 12:52:43 +0000147 virtual void clearStencil() SK_OVERRIDE;
148 virtual void clearStencilClip(const GrIRect& rect,
149 bool insideClip) SK_OVERRIDE;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000150 virtual bool flushGraphicsState(DrawType, const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000151
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000152 // binds texture unit in GL
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000153 void setTextureUnit(int unitIdx);
reed@google.comac10a2d2010-12-22 21:39:39 +0000154
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000155 // Sets up vertex attribute pointers and strides. On return indexOffsetInBytes gives the offset
156 // an into the index buffer. It does not account for drawInfo.startIndex() but rather the start
157 // index is relative to the returned offset.
158 void setupGeometry(const DrawInfo& info, size_t* indexOffsetInBytes);
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +0000159
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000160 // Subclasses should call this to flush the blend state.
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000161 // The params should be the final coefficients to apply
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000162 // (after any blending optimizations or dual source blending considerations
163 // have been accounted for).
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000164 void flushBlend(bool isLines, GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000165
robertphillips@google.com6177e692013-02-28 20:16:25 +0000166 bool hasExtension(const char* ext) const { return fGLContext.info().hasExtension(ext); }
bsalomon@google.com96399942012-02-13 14:39:16 +0000167
robertphillips@google.com6177e692013-02-28 20:16:25 +0000168 const GrGLContext& glContext() const { return fGLContext; }
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000169
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000170 static bool BlendCoeffReferencesConstant(GrBlendCoeff coeff);
bsalomon@google.com080773c2011-03-15 19:09:25 +0000171
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000172 class ProgramCache : public ::GrNoncopyable {
173 public:
robertphillips@google.com6177e692013-02-28 20:16:25 +0000174 ProgramCache(const GrGLContext& gl);
jvanverth@google.com94878772013-03-12 16:00:54 +0000175 ~ProgramCache();
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000176
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000177 void abandon();
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000178 GrGLProgram* getProgram(const GrGLProgramDesc& desc, const GrEffectStage* stages[]);
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000179 private:
180 enum {
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000181 kKeySize = sizeof(GrGLProgramDesc),
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000182 // We may actually have kMaxEntries+1 shaders in the GL context because we create a new
183 // shader before evicting from the cache.
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000184 kMaxEntries = 32
185 };
186
187 class Entry;
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000188 // The value of the hash key is based on the ProgramDesc.
189 typedef GrTBinHashKey<Entry, kKeySize> ProgramHashKey;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000190
191 class Entry : public ::GrNoncopyable {
192 public:
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000193 Entry() : fProgram(NULL), fLRUStamp(0) {}
194 Entry& operator = (const Entry& entry) {
195 GrSafeRef(entry.fProgram.get());
196 fProgram.reset(entry.fProgram.get());
197 fKey = entry.fKey;
198 fLRUStamp = entry.fLRUStamp;
199 return *this;
200 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000201 int compare(const ProgramHashKey& key) const {
202 return fKey.compare(key);
203 }
204
205 public:
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000206 SkAutoTUnref<GrGLProgram> fProgram;
207 ProgramHashKey fKey;
208 unsigned int fLRUStamp; // Move outside entry?
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000209 };
210
211 GrTHashTable<Entry, ProgramHashKey, 8> fHashCache;
212
213 Entry fEntries[kMaxEntries];
214 int fCount;
215 unsigned int fCurrLRUStamp;
robertphillips@google.com6177e692013-02-28 20:16:25 +0000216 const GrGLContext& fGL;
jvanverth@google.com94878772013-03-12 16:00:54 +0000217#ifdef PROGRAM_CACHE_STATS
218 int fTotalRequests;
219 int fCacheMisses;
220#endif
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000221 };
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000222
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000223 // sets the matrix for path stenciling (uses the GL fixed pipe matrices)
224 void flushPathStencilMatrix();
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000225
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000226 // flushes dithering, color-mask, and face culling stat
227 void flushMiscFixedFunctionState();
228
bsalomon@google.coma3201942012-06-21 19:58:20 +0000229 // flushes the scissor. see the note on flushBoundTextureAndParams about
230 // flushing the scissor after that function is called.
231 void flushScissor();
232
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000233 void initFSAASupport();
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000234
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000235 // determines valid stencil formats
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000236 void initStencilFormats();
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000237
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000238 void setSpareTextureUnit();
reed@google.comac10a2d2010-12-22 21:39:39 +0000239
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000240 // bound is region that may be modified and therefore has to be resolved.
241 // NULL means whole target. Can be an empty rect.
242 void flushRenderTarget(const GrIRect* bound);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000243 void flushStencil(DrawType);
244 void flushAAState(DrawType);
bsalomon@google.com0650e812011-04-08 18:07:53 +0000245
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000246 bool configToGLFormats(GrPixelConfig config,
247 bool getSizedInternal,
248 GrGLenum* internalFormat,
249 GrGLenum* externalFormat,
250 GrGLenum* externalType);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000251 // helper for onCreateTexture and writeTexturePixels
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000252 bool uploadTexData(const GrGLTexture::Desc& desc,
bsalomon@google.com1e0e6072011-11-28 18:49:37 +0000253 bool isNewTexture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000254 int left, int top, int width, int height,
255 GrPixelConfig dataConfig,
256 const void* data,
257 size_t rowBytes);
bsalomon@google.com0650e812011-04-08 18:07:53 +0000258
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000259 bool createRenderTargetObjects(int width, int height,
260 GrGLuint texID,
261 GrGLRenderTarget::Desc* desc);
262
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000263 void fillInConfigRenderableTable();
264
robertphillips@google.com6177e692013-02-28 20:16:25 +0000265 GrGLContext fGLContext;
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000266
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000267 // GL program-related state
268 ProgramCache* fProgramCache;
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000269 SkAutoTUnref<GrGLProgram> fCurrentProgram;
bsalomon@google.com49209392012-06-05 15:13:46 +0000270
271 ///////////////////////////////////////////////////////////////////////////
272 ///@name Caching of GL State
273 ///@{
274 int fHWActiveTextureUnitIdx;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000275 GrGLuint fHWProgramID;
bsalomon@google.com91207482013-02-12 21:45:24 +0000276
277 GrGLProgram::SharedGLState fSharedGLProgramState;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000278
bsalomon@google.com49209392012-06-05 15:13:46 +0000279 enum TriState {
280 kNo_TriState,
281 kYes_TriState,
282 kUnknown_TriState
283 };
284
bsalomon@google.coma3201942012-06-21 19:58:20 +0000285 // last scissor / viewport scissor state seen by the GL.
286 struct {
287 TriState fEnabled;
288 GrGLIRect fRect;
289 void invalidate() {
290 fEnabled = kUnknown_TriState;
291 fRect.invalidate();
292 }
293 } fHWScissorSettings;
294
295 GrGLIRect fHWViewport;
296
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000297 /**
298 * Tracks bound vertex and index buffers and vertex attrib array state.
299 */
300 class HWGeometryState {
301 public:
bsalomon@google.com6918d482013-03-07 19:09:11 +0000302 HWGeometryState() { fVBOVertexArray = NULL; this->invalidate(); }
skia.committer@gmail.com754a3eb2013-03-08 07:01:25 +0000303
bsalomon@google.com6918d482013-03-07 19:09:11 +0000304 ~HWGeometryState() { SkSafeUnref(fVBOVertexArray); }
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000305
bsalomon@google.com6918d482013-03-07 19:09:11 +0000306 void invalidate() {
307 fBoundVertexArrayIDIsValid = false;
308 fBoundVertexBufferIDIsValid = false;
309 fDefaultVertexArrayBoundIndexBufferID = false;
310 fDefaultVertexArrayBoundIndexBufferIDIsValid = false;
311 fDefaultVertexArrayAttribState.invalidate();
312 }
313
314 void notifyVertexArrayDelete(GrGLuint id) {
315 if (fBoundVertexArrayIDIsValid && fBoundVertexArrayID == id) {
316 // Does implicit bind to 0
317 fBoundVertexArrayID = 0;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000318 }
319 }
320
bsalomon@google.com6918d482013-03-07 19:09:11 +0000321 void setVertexArrayID(GrGpuGL* gpu, GrGLuint arrayID) {
322 if (!gpu->glCaps().vertexArrayObjectSupport()) {
323 GrAssert(0 == arrayID);
324 return;
325 }
326 if (!fBoundVertexArrayIDIsValid || arrayID != fBoundVertexArrayID) {
327 GR_GL_CALL(gpu->glInterface(), BindVertexArray(arrayID));
328 fBoundVertexArrayIDIsValid = true;
329 fBoundVertexArrayID = arrayID;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000330 }
331 }
332
bsalomon@google.come49ad452013-02-20 19:33:20 +0000333 void notifyVertexBufferDelete(GrGLuint id) {
bsalomon@google.com6918d482013-03-07 19:09:11 +0000334 if (fBoundVertexBufferIDIsValid && id == fBoundVertexBufferID) {
335 fBoundVertexBufferID = 0;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000336 }
bsalomon@google.com6918d482013-03-07 19:09:11 +0000337 if (NULL != fVBOVertexArray) {
338 fVBOVertexArray->notifyVertexBufferDelete(id);
339 }
340 fDefaultVertexArrayAttribState.notifyVertexBufferDelete(id);
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000341 }
342
bsalomon@google.come49ad452013-02-20 19:33:20 +0000343 void notifyIndexBufferDelete(GrGLuint id) {
bsalomon@google.com6918d482013-03-07 19:09:11 +0000344 if (fDefaultVertexArrayBoundIndexBufferIDIsValid &&
345 id == fDefaultVertexArrayBoundIndexBufferID) {
346 fDefaultVertexArrayBoundIndexBufferID = 0;
347 }
348 if (NULL != fVBOVertexArray) {
349 fVBOVertexArray->notifyIndexBufferDelete(id);
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000350 }
351 }
352
bsalomon@google.com6918d482013-03-07 19:09:11 +0000353 void setVertexBufferID(GrGpuGL* gpu, GrGLuint id) {
354 if (!fBoundVertexBufferIDIsValid || id != fBoundVertexBufferID) {
355 GR_GL_CALL(gpu->glInterface(), BindBuffer(GR_GL_ARRAY_BUFFER, id));
356 fBoundVertexBufferIDIsValid = true;
357 fBoundVertexBufferID = id;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000358 }
359 }
360
bsalomon@google.com6918d482013-03-07 19:09:11 +0000361 /**
362 * Binds the default vertex array and binds the index buffer. This is used when binding
363 * an index buffer in order to update it.
364 */
365 void setIndexBufferIDOnDefaultVertexArray(GrGpuGL* gpu, GrGLuint id) {
366 this->setVertexArrayID(gpu, 0);
367 if (!fDefaultVertexArrayBoundIndexBufferIDIsValid ||
368 id != fDefaultVertexArrayBoundIndexBufferID) {
369 GR_GL_CALL(gpu->glInterface(), BindBuffer(GR_GL_ELEMENT_ARRAY_BUFFER, id));
370 fDefaultVertexArrayBoundIndexBufferIDIsValid = true;
371 fDefaultVertexArrayBoundIndexBufferID = id;
372 }
373 }
374
375 /**
376 * Binds the vertex array object that should be used to render from the vertex buffer.
377 * The vertex array is bound and its attrib array state object is returned. The vertex
378 * buffer is bound. The index buffer (if non-NULL) is bound to the vertex array. The
skia.committer@gmail.com754a3eb2013-03-08 07:01:25 +0000379 * returned GrGLAttribArrayState should be used to set vertex attribute arrays.
bsalomon@google.com6918d482013-03-07 19:09:11 +0000380 */
381 GrGLAttribArrayState* bindArrayAndBuffersToDraw(GrGpuGL* gpu,
382 const GrGLVertexBuffer* vbuffer,
383 const GrGLIndexBuffer* ibuffer);
384
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000385 private:
bsalomon@google.com6918d482013-03-07 19:09:11 +0000386 GrGLuint fBoundVertexArrayID;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000387 GrGLuint fBoundVertexBufferID;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000388 bool fBoundVertexArrayIDIsValid;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000389 bool fBoundVertexBufferIDIsValid;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000390
bsalomon@google.com6918d482013-03-07 19:09:11 +0000391 GrGLuint fDefaultVertexArrayBoundIndexBufferID;
392 bool fDefaultVertexArrayBoundIndexBufferIDIsValid;
393 // We return a non-const pointer to this from bindArrayAndBuffersToDraw when vertex array 0
394 // is bound. However, this class is internal to GrGpuGL and this object never leaks out of
395 // GrGpuGL.
396 GrGLAttribArrayState fDefaultVertexArrayAttribState;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000397
bsalomon@google.com6918d482013-03-07 19:09:11 +0000398 // This is used when we're using a core profile and the vertices are in a VBO.
399 GrGLVertexArray* fVBOVertexArray;
bsalomon@google.com49209392012-06-05 15:13:46 +0000400 } fHWGeometryState;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000401
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +0000402 struct {
403 GrBlendCoeff fSrcCoeff;
404 GrBlendCoeff fDstCoeff;
405 GrColor fConstColor;
406 bool fConstColorValid;
407 TriState fEnabled;
408
409 void invalidate() {
bsalomon@google.com47059542012-06-06 20:51:20 +0000410 fSrcCoeff = kInvalid_GrBlendCoeff;
411 fDstCoeff = kInvalid_GrBlendCoeff;
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +0000412 fConstColorValid = false;
413 fEnabled = kUnknown_TriState;
414 }
415 } fHWBlendState;
416
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +0000417 struct {
418 TriState fMSAAEnabled;
419 TriState fSmoothLineEnabled;
420 void invalidate() {
421 fMSAAEnabled = kUnknown_TriState;
422 fSmoothLineEnabled = kUnknown_TriState;
423 }
424 } fHWAAState;
425
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000426
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000427 GrGLProgram::MatrixState fHWPathStencilMatrixState;
bsalomon@google.com457b8a32012-05-21 21:19:58 +0000428
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000429 GrStencilSettings fHWStencilSettings;
430 TriState fHWStencilTestEnabled;
431
432 GrDrawState::DrawFace fHWDrawFace;
433 TriState fHWWriteToColor;
434 TriState fHWDitherEnabled;
435 GrRenderTarget* fHWBoundRenderTarget;
436 GrTexture* fHWBoundTextures[GrDrawState::kNumStages];
bsalomon@google.com49209392012-06-05 15:13:46 +0000437 ///@}
bsalomon@google.com978c8c62012-05-21 14:45:49 +0000438
bsalomon@google.comfe676522011-06-17 18:12:21 +0000439 // we record what stencil format worked last time to hopefully exit early
440 // from our loop that tries stencil formats and calls check fb status.
441 int fLastSuccessfulStencilFmtIdx;
442
reed@google.comac10a2d2010-12-22 21:39:39 +0000443 typedef GrGpu INHERITED;
444};
445
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000446#endif