junov@google.com | f93e717 | 2011-03-31 21:26:24 +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. |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 8 | #include "GrGpuGL.h" |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
bsalomon@google.com | a469c28 | 2012-10-24 18:28:34 +0000 | [diff] [blame] | 10 | #include "GrEffect.h" |
bsalomon@google.com | d698f77 | 2012-10-25 13:22:00 +0000 | [diff] [blame] | 11 | #include "GrGLEffect.h" |
jvanverth@google.com | 5c9b6fa | 2013-09-16 19:40:31 +0000 | [diff] [blame] | 12 | #include "SkRTConf.h" |
cdalton | 5119234 | 2014-06-09 11:16:58 -0700 | [diff] [blame] | 13 | #include "GrGLNameAllocator.h" |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 14 | #include "SkTSearch.h" |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 15 | |
jvanverth@google.com | a2f4b15 | 2013-09-16 20:00:46 +0000 | [diff] [blame] | 16 | #ifdef PROGRAM_CACHE_STATS |
jvanverth@google.com | 5c9b6fa | 2013-09-16 19:40:31 +0000 | [diff] [blame] | 17 | SK_CONF_DECLARE(bool, c_DisplayCache, "gpu.displayCache", false, |
| 18 | "Display program cache usage."); |
jvanverth@google.com | a2f4b15 | 2013-09-16 20:00:46 +0000 | [diff] [blame] | 19 | #endif |
jvanverth@google.com | 5c9b6fa | 2013-09-16 19:40:31 +0000 | [diff] [blame] | 20 | |
bsalomon@google.com | dbbc4e2 | 2012-07-25 17:48:39 +0000 | [diff] [blame] | 21 | typedef GrGLUniformManager::UniformHandle UniformHandle; |
bsalomon@google.com | dbbc4e2 | 2012-07-25 17:48:39 +0000 | [diff] [blame] | 22 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 23 | struct GrGpuGL::ProgramCache::Entry { |
| 24 | SK_DECLARE_INST_COUNT_ROOT(Entry); |
| 25 | Entry() : fProgram(NULL), fLRUStamp(0) {} |
| 26 | |
| 27 | SkAutoTUnref<GrGLProgram> fProgram; |
| 28 | unsigned int fLRUStamp; |
| 29 | }; |
| 30 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 31 | struct GrGpuGL::ProgramCache::ProgDescLess { |
| 32 | bool operator() (const GrGLProgramDesc& desc, const Entry* entry) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 33 | SkASSERT(NULL != entry->fProgram.get()); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 34 | return GrGLProgramDesc::Less(desc, entry->fProgram->getDesc()); |
| 35 | } |
| 36 | |
| 37 | bool operator() (const Entry* entry, const GrGLProgramDesc& desc) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 38 | SkASSERT(NULL != entry->fProgram.get()); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 39 | return GrGLProgramDesc::Less(entry->fProgram->getDesc(), desc); |
| 40 | } |
| 41 | }; |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 42 | |
commit-bot@chromium.org | 9188a15 | 2013-09-05 18:28:24 +0000 | [diff] [blame] | 43 | GrGpuGL::ProgramCache::ProgramCache(GrGpuGL* gpu) |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 44 | : fCount(0) |
| 45 | , fCurrLRUStamp(0) |
commit-bot@chromium.org | 9188a15 | 2013-09-05 18:28:24 +0000 | [diff] [blame] | 46 | , fGpu(gpu) |
jvanverth@google.com | 9487877 | 2013-03-12 16:00:54 +0000 | [diff] [blame] | 47 | #ifdef PROGRAM_CACHE_STATS |
| 48 | , fTotalRequests(0) |
| 49 | , fCacheMisses(0) |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 50 | , fHashMisses(0) |
jvanverth@google.com | 9487877 | 2013-03-12 16:00:54 +0000 | [diff] [blame] | 51 | #endif |
| 52 | { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 53 | for (int i = 0; i < 1 << kHashBits; ++i) { |
| 54 | fHashTable[i] = NULL; |
| 55 | } |
jvanverth@google.com | 9487877 | 2013-03-12 16:00:54 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | GrGpuGL::ProgramCache::~ProgramCache() { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 59 | for (int i = 0; i < fCount; ++i){ |
| 60 | SkDELETE(fEntries[i]); |
| 61 | } |
jvanverth@google.com | 9487877 | 2013-03-12 16:00:54 +0000 | [diff] [blame] | 62 | // dump stats |
| 63 | #ifdef PROGRAM_CACHE_STATS |
jvanverth@google.com | 5c9b6fa | 2013-09-16 19:40:31 +0000 | [diff] [blame] | 64 | if (c_DisplayCache) { |
| 65 | SkDebugf("--- Program Cache ---\n"); |
| 66 | SkDebugf("Total requests: %d\n", fTotalRequests); |
| 67 | SkDebugf("Cache misses: %d\n", fCacheMisses); |
| 68 | SkDebugf("Cache miss %%: %f\n", (fTotalRequests > 0) ? |
| 69 | 100.f * fCacheMisses / fTotalRequests : |
| 70 | 0.f); |
| 71 | int cacheHits = fTotalRequests - fCacheMisses; |
| 72 | SkDebugf("Hash miss %%: %f\n", (cacheHits > 0) ? 100.f * fHashMisses / cacheHits : 0.f); |
| 73 | SkDebugf("---------------------\n"); |
| 74 | } |
jvanverth@google.com | 9487877 | 2013-03-12 16:00:54 +0000 | [diff] [blame] | 75 | #endif |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 76 | } |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 77 | |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 78 | void GrGpuGL::ProgramCache::abandon() { |
bsalomon@google.com | ecb60aa | 2012-07-18 13:20:29 +0000 | [diff] [blame] | 79 | for (int i = 0; i < fCount; ++i) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 80 | SkASSERT(NULL != fEntries[i]->fProgram.get()); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 81 | fEntries[i]->fProgram->abandon(); |
| 82 | fEntries[i]->fProgram.reset(NULL); |
bsalomon@google.com | ecb60aa | 2012-07-18 13:20:29 +0000 | [diff] [blame] | 83 | } |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 84 | fCount = 0; |
| 85 | } |
| 86 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 87 | int GrGpuGL::ProgramCache::search(const GrGLProgramDesc& desc) const { |
| 88 | ProgDescLess less; |
| 89 | return SkTSearch(fEntries, fCount, desc, sizeof(Entry*), less); |
| 90 | } |
| 91 | |
bsalomon@google.com | 31ec798 | 2013-03-27 18:14:57 +0000 | [diff] [blame] | 92 | GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrGLProgramDesc& desc, |
bsalomon@google.com | 2c84aa3 | 2013-06-06 20:28:57 +0000 | [diff] [blame] | 93 | const GrEffectStage* colorStages[], |
| 94 | const GrEffectStage* coverageStages[]) { |
jvanverth@google.com | 9487877 | 2013-03-12 16:00:54 +0000 | [diff] [blame] | 95 | #ifdef PROGRAM_CACHE_STATS |
| 96 | ++fTotalRequests; |
| 97 | #endif |
bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame] | 98 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 99 | Entry* entry = NULL; |
| 100 | |
| 101 | uint32_t hashIdx = desc.getChecksum(); |
| 102 | hashIdx ^= hashIdx >> 16; |
| 103 | if (kHashBits <= 8) { |
| 104 | hashIdx ^= hashIdx >> 8; |
| 105 | } |
| 106 | hashIdx &=((1 << kHashBits) - 1); |
| 107 | Entry* hashedEntry = fHashTable[hashIdx]; |
| 108 | if (NULL != hashedEntry && hashedEntry->fProgram->getDesc() == desc) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 109 | SkASSERT(NULL != hashedEntry->fProgram); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 110 | entry = hashedEntry; |
| 111 | } |
| 112 | |
| 113 | int entryIdx; |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 114 | if (NULL == entry) { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 115 | entryIdx = this->search(desc); |
| 116 | if (entryIdx >= 0) { |
| 117 | entry = fEntries[entryIdx]; |
| 118 | #ifdef PROGRAM_CACHE_STATS |
| 119 | ++fHashMisses; |
| 120 | #endif |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | if (NULL == entry) { |
| 125 | // We have a cache miss |
jvanverth@google.com | 9487877 | 2013-03-12 16:00:54 +0000 | [diff] [blame] | 126 | #ifdef PROGRAM_CACHE_STATS |
| 127 | ++fCacheMisses; |
| 128 | #endif |
commit-bot@chromium.org | 9188a15 | 2013-09-05 18:28:24 +0000 | [diff] [blame] | 129 | GrGLProgram* program = GrGLProgram::Create(fGpu, desc, colorStages, coverageStages); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 130 | if (NULL == program) { |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 131 | return NULL; |
| 132 | } |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 133 | int purgeIdx = 0; |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 134 | if (fCount < kMaxEntries) { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 135 | entry = SkNEW(Entry); |
| 136 | purgeIdx = fCount++; |
| 137 | fEntries[purgeIdx] = entry; |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 138 | } else { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 139 | SkASSERT(fCount == kMaxEntries); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 140 | purgeIdx = 0; |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 141 | for (int i = 1; i < kMaxEntries; ++i) { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 142 | if (fEntries[i]->fLRUStamp < fEntries[purgeIdx]->fLRUStamp) { |
| 143 | purgeIdx = i; |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 144 | } |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 145 | } |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 146 | entry = fEntries[purgeIdx]; |
| 147 | int purgedHashIdx = entry->fProgram->getDesc().getChecksum() & ((1 << kHashBits) - 1); |
| 148 | if (fHashTable[purgedHashIdx] == entry) { |
| 149 | fHashTable[purgedHashIdx] = NULL; |
| 150 | } |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 151 | } |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 152 | SkASSERT(fEntries[purgeIdx] == entry); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 153 | entry->fProgram.reset(program); |
skia.committer@gmail.com | 2d816ad | 2013-05-23 07:01:22 +0000 | [diff] [blame] | 154 | // We need to shift fEntries around so that the entry currently at purgeIdx is placed |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 155 | // just before the entry at ~entryIdx (in order to keep fEntries sorted by descriptor). |
| 156 | entryIdx = ~entryIdx; |
| 157 | if (entryIdx < purgeIdx) { |
| 158 | // Let E and P be the entries at index entryIdx and purgeIdx, respectively. |
| 159 | // If the entries array looks like this: |
| 160 | // aaaaEbbbbbPccccc |
| 161 | // we rearrange it to look like this: |
| 162 | // aaaaPEbbbbbccccc |
| 163 | size_t copySize = (purgeIdx - entryIdx) * sizeof(Entry*); |
| 164 | memmove(fEntries + entryIdx + 1, fEntries + entryIdx, copySize); |
| 165 | fEntries[entryIdx] = entry; |
| 166 | } else if (purgeIdx < entryIdx) { |
| 167 | // If the entries array looks like this: |
| 168 | // aaaaPbbbbbEccccc |
| 169 | // we rearrange it to look like this: |
| 170 | // aaaabbbbbPEccccc |
| 171 | size_t copySize = (entryIdx - purgeIdx - 1) * sizeof(Entry*); |
| 172 | memmove(fEntries + purgeIdx, fEntries + purgeIdx + 1, copySize); |
| 173 | fEntries[entryIdx - 1] = entry; |
| 174 | } |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 175 | #ifdef SK_DEBUG |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 176 | SkASSERT(NULL != fEntries[0]->fProgram.get()); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 177 | for (int i = 0; i < fCount - 1; ++i) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 178 | SkASSERT(NULL != fEntries[i + 1]->fProgram.get()); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 179 | const GrGLProgramDesc& a = fEntries[i]->fProgram->getDesc(); |
| 180 | const GrGLProgramDesc& b = fEntries[i + 1]->fProgram->getDesc(); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 181 | SkASSERT(GrGLProgramDesc::Less(a, b)); |
| 182 | SkASSERT(!GrGLProgramDesc::Less(b, a)); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 183 | } |
| 184 | #endif |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 185 | } |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 186 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 187 | fHashTable[hashIdx] = entry; |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 188 | entry->fLRUStamp = fCurrLRUStamp; |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 189 | |
| 190 | if (SK_MaxU32 == fCurrLRUStamp) { |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 191 | // wrap around! just trash our LRU, one time hit. |
| 192 | for (int i = 0; i < fCount; ++i) { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 193 | fEntries[i]->fLRUStamp = 0; |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | ++fCurrLRUStamp; |
bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame] | 197 | return entry->fProgram; |
bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 198 | } |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 199 | |
bsalomon@google.com | 1e257a5 | 2011-07-06 19:52:16 +0000 | [diff] [blame] | 200 | //////////////////////////////////////////////////////////////////////////////// |
| 201 | |
bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 202 | void GrGpuGL::abandonResources(){ |
| 203 | INHERITED::abandonResources(); |
| 204 | fProgramCache->abandon(); |
| 205 | fHWProgramID = 0; |
cdalton | 5119234 | 2014-06-09 11:16:58 -0700 | [diff] [blame] | 206 | fPathNameAllocator.reset(NULL); |
bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | //////////////////////////////////////////////////////////////////////////////// |
| 210 | |
bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 211 | #define GL_CALL(X) GR_GL_CALL(this->glInterface(), X) |
| 212 | |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 213 | bool GrGpuGL::flushGraphicsState(DrawType type, const GrDeviceCoordTexture* dstCopy) { |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 214 | const GrDrawState& drawState = this->getDrawState(); |
| 215 | |
bsalomon@google.com | 6a51dcb | 2013-02-13 16:03:51 +0000 | [diff] [blame] | 216 | // GrGpu::setupClipAndFlushState should have already checked this and bailed if not true. |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 217 | SkASSERT(NULL != drawState.getRenderTarget()); |
bsalomon@google.com | c96cb3a | 2012-06-04 19:31:00 +0000 | [diff] [blame] | 218 | |
bsalomon@google.com | 6a51dcb | 2013-02-13 16:03:51 +0000 | [diff] [blame] | 219 | if (kStencilPath_DrawType == type) { |
commit-bot@chromium.org | 6b30e45 | 2013-10-04 20:02:53 +0000 | [diff] [blame] | 220 | const GrRenderTarget* rt = this->getDrawState().getRenderTarget(); |
| 221 | SkISize size; |
| 222 | size.set(rt->width(), rt->height()); |
| 223 | this->setProjectionMatrix(drawState.getViewMatrix(), size, rt->origin()); |
bsalomon@google.com | 6a51dcb | 2013-02-13 16:03:51 +0000 | [diff] [blame] | 224 | } else { |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 225 | this->flushMiscFixedFunctionState(); |
bsalomon@google.com | c96cb3a | 2012-06-04 19:31:00 +0000 | [diff] [blame] | 226 | |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 227 | GrBlendCoeff srcCoeff; |
| 228 | GrBlendCoeff dstCoeff; |
bsalomon@google.com | 2b44673 | 2013-02-12 16:47:41 +0000 | [diff] [blame] | 229 | GrDrawState::BlendOptFlags blendOpts = drawState.getBlendOpts(false, &srcCoeff, &dstCoeff); |
| 230 | if (GrDrawState::kSkipDraw_BlendOptFlag & blendOpts) { |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 231 | return false; |
| 232 | } |
bsalomon@google.com | 86c1f71 | 2011-10-12 14:54:26 +0000 | [diff] [blame] | 233 | |
bsalomon@google.com | 2c84aa3 | 2013-06-06 20:28:57 +0000 | [diff] [blame] | 234 | SkSTArray<8, const GrEffectStage*, true> colorStages; |
| 235 | SkSTArray<8, const GrEffectStage*, true> coverageStages; |
bsalomon@google.com | 31ec798 | 2013-03-27 18:14:57 +0000 | [diff] [blame] | 236 | GrGLProgramDesc desc; |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame^] | 237 | if (!GrGLProgramDesc::Build(this->getDrawState(), |
commit-bot@chromium.org | 0a6fe71 | 2014-04-23 19:26:26 +0000 | [diff] [blame] | 238 | type, |
bsalomon@google.com | 9120748 | 2013-02-12 21:45:24 +0000 | [diff] [blame] | 239 | blendOpts, |
| 240 | srcCoeff, |
| 241 | dstCoeff, |
| 242 | this, |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 243 | dstCopy, |
bsalomon@google.com | 2c84aa3 | 2013-06-06 20:28:57 +0000 | [diff] [blame] | 244 | &colorStages, |
| 245 | &coverageStages, |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame^] | 246 | &desc)) { |
| 247 | SkDEBUGFAIL("Failed to generate GL program descriptor"); |
| 248 | return false; |
| 249 | } |
bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame] | 250 | |
bsalomon@google.com | 2c84aa3 | 2013-06-06 20:28:57 +0000 | [diff] [blame] | 251 | fCurrentProgram.reset(fProgramCache->getProgram(desc, |
| 252 | colorStages.begin(), |
| 253 | coverageStages.begin())); |
bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame] | 254 | if (NULL == fCurrentProgram.get()) { |
mtklein@google.com | 330313a | 2013-08-22 15:37:26 +0000 | [diff] [blame] | 255 | SkDEBUGFAIL("Failed to create program!"); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 256 | return false; |
| 257 | } |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 258 | |
commit-bot@chromium.org | 9b62aa1 | 2014-03-25 11:59:40 +0000 | [diff] [blame] | 259 | SkASSERT((kDrawPath_DrawType != type && kDrawPaths_DrawType != type) |
| 260 | || !fCurrentProgram->hasVertexShader()); |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 261 | |
bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame] | 262 | fCurrentProgram.get()->ref(); |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 263 | |
bsalomon@google.com | 6a51dcb | 2013-02-13 16:03:51 +0000 | [diff] [blame] | 264 | GrGLuint programID = fCurrentProgram->programID(); |
| 265 | if (fHWProgramID != programID) { |
| 266 | GL_CALL(UseProgram(programID)); |
| 267 | fHWProgramID = programID; |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 268 | } |
bsalomon@google.com | 6a51dcb | 2013-02-13 16:03:51 +0000 | [diff] [blame] | 269 | |
bsalomon@google.com | 9ba4fa6 | 2012-07-16 17:36:28 +0000 | [diff] [blame] | 270 | fCurrentProgram->overrideBlend(&srcCoeff, &dstCoeff); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 271 | this->flushBlend(kDrawLines_DrawType == type, srcCoeff, dstCoeff); |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 272 | |
commit-bot@chromium.org | 9188a15 | 2013-09-05 18:28:24 +0000 | [diff] [blame] | 273 | fCurrentProgram->setData(blendOpts, |
bsalomon@google.com | 2c84aa3 | 2013-06-06 20:28:57 +0000 | [diff] [blame] | 274 | colorStages.begin(), |
| 275 | coverageStages.begin(), |
| 276 | dstCopy, |
| 277 | &fSharedGLProgramState); |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 278 | } |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 279 | this->flushStencil(type); |
bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 280 | this->flushScissor(); |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 281 | this->flushAAState(type); |
bsalomon@google.com | 4c88378 | 2012-06-04 19:05:11 +0000 | [diff] [blame] | 282 | |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 283 | SkIRect* devRect = NULL; |
| 284 | SkIRect devClipBounds; |
robertphillips@google.com | 3e11c0b | 2012-07-11 18:20:35 +0000 | [diff] [blame] | 285 | if (drawState.isClipState()) { |
bsalomon@google.com | 02ddc8b | 2013-01-28 15:35:28 +0000 | [diff] [blame] | 286 | this->getClip()->getConservativeBounds(drawState.getRenderTarget(), &devClipBounds); |
robertphillips@google.com | 7b11289 | 2012-07-31 15:18:21 +0000 | [diff] [blame] | 287 | devRect = &devClipBounds; |
bsalomon@google.com | 4c88378 | 2012-06-04 19:05:11 +0000 | [diff] [blame] | 288 | } |
| 289 | // This must come after textures are flushed because a texture may need |
| 290 | // to be msaa-resolved (which will modify bound FBO state). |
robertphillips@google.com | 7b11289 | 2012-07-31 15:18:21 +0000 | [diff] [blame] | 291 | this->flushRenderTarget(devRect); |
bsalomon@google.com | 4c88378 | 2012-06-04 19:05:11 +0000 | [diff] [blame] | 292 | |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 293 | return true; |
| 294 | } |
| 295 | |
bsalomon@google.com | 880b8fc | 2013-02-19 20:17:28 +0000 | [diff] [blame] | 296 | void GrGpuGL::setupGeometry(const DrawInfo& info, size_t* indexOffsetInBytes) { |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 297 | |
robertphillips@google.com | a466286 | 2013-11-21 14:24:16 +0000 | [diff] [blame] | 298 | GrGLsizei stride = static_cast<GrGLsizei>(this->getDrawState().getVertexSize()); |
bsalomon@google.com | aeb2160 | 2011-08-30 18:13:44 +0000 | [diff] [blame] | 299 | |
bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 300 | size_t vertexOffsetInBytes = stride * info.startVertex(); |
| 301 | |
| 302 | const GeometryPoolState& geoPoolState = this->getGeomPoolState(); |
| 303 | |
| 304 | GrGLVertexBuffer* vbuf; |
| 305 | switch (this->getGeomSrc().fVertexSrc) { |
| 306 | case kBuffer_GeometrySrcType: |
| 307 | vbuf = (GrGLVertexBuffer*) this->getGeomSrc().fVertexBuffer; |
| 308 | break; |
| 309 | case kArray_GeometrySrcType: |
| 310 | case kReserved_GeometrySrcType: |
| 311 | this->finalizeReservedVertices(); |
| 312 | vertexOffsetInBytes += geoPoolState.fPoolStartVertex * this->getGeomSrc().fVertexSize; |
| 313 | vbuf = (GrGLVertexBuffer*) geoPoolState.fPoolVertexBuffer; |
| 314 | break; |
| 315 | default: |
| 316 | vbuf = NULL; // suppress warning |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 317 | SkFAIL("Unknown geometry src type!"); |
bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 318 | } |
| 319 | |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 320 | SkASSERT(NULL != vbuf); |
commit-bot@chromium.org | 8341eb7 | 2014-05-07 20:51:05 +0000 | [diff] [blame] | 321 | SkASSERT(!vbuf->isMapped()); |
bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 322 | vertexOffsetInBytes += vbuf->baseOffset(); |
| 323 | |
| 324 | GrGLIndexBuffer* ibuf = NULL; |
| 325 | if (info.isIndexed()) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 326 | SkASSERT(NULL != indexOffsetInBytes); |
bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 327 | |
| 328 | switch (this->getGeomSrc().fIndexSrc) { |
| 329 | case kBuffer_GeometrySrcType: |
| 330 | *indexOffsetInBytes = 0; |
| 331 | ibuf = (GrGLIndexBuffer*)this->getGeomSrc().fIndexBuffer; |
| 332 | break; |
| 333 | case kArray_GeometrySrcType: |
| 334 | case kReserved_GeometrySrcType: |
| 335 | this->finalizeReservedIndices(); |
| 336 | *indexOffsetInBytes = geoPoolState.fPoolStartIndex * sizeof(GrGLushort); |
| 337 | ibuf = (GrGLIndexBuffer*) geoPoolState.fPoolIndexBuffer; |
| 338 | break; |
| 339 | default: |
| 340 | ibuf = NULL; // suppress warning |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 341 | SkFAIL("Unknown geometry src type!"); |
bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 342 | } |
| 343 | |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 344 | SkASSERT(NULL != ibuf); |
commit-bot@chromium.org | 8341eb7 | 2014-05-07 20:51:05 +0000 | [diff] [blame] | 345 | SkASSERT(!ibuf->isMapped()); |
bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 346 | *indexOffsetInBytes += ibuf->baseOffset(); |
| 347 | } |
| 348 | GrGLAttribArrayState* attribState = |
| 349 | fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf); |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 350 | |
commit-bot@chromium.org | 0a6fe71 | 2014-04-23 19:26:26 +0000 | [diff] [blame] | 351 | if (fCurrentProgram->hasVertexShader()) { |
commit-bot@chromium.org | 6ebfbf9 | 2014-02-24 12:05:02 +0000 | [diff] [blame] | 352 | int vertexAttribCount = this->getDrawState().getVertexAttribCount(); |
commit-bot@chromium.org | 6b30e45 | 2013-10-04 20:02:53 +0000 | [diff] [blame] | 353 | uint32_t usedAttribArraysMask = 0; |
| 354 | const GrVertexAttrib* vertexAttrib = this->getDrawState().getVertexAttribs(); |
commit-bot@chromium.org | 6ebfbf9 | 2014-02-24 12:05:02 +0000 | [diff] [blame] | 355 | |
commit-bot@chromium.org | 6b30e45 | 2013-10-04 20:02:53 +0000 | [diff] [blame] | 356 | for (int vertexAttribIndex = 0; vertexAttribIndex < vertexAttribCount; |
| 357 | ++vertexAttribIndex, ++vertexAttrib) { |
robertphillips@google.com | af3a3b9 | 2013-02-28 23:08:28 +0000 | [diff] [blame] | 358 | |
commit-bot@chromium.org | 6b30e45 | 2013-10-04 20:02:53 +0000 | [diff] [blame] | 359 | usedAttribArraysMask |= (1 << vertexAttribIndex); |
| 360 | GrVertexAttribType attribType = vertexAttrib->fType; |
| 361 | attribState->set(this, |
| 362 | vertexAttribIndex, |
| 363 | vbuf, |
| 364 | GrGLAttribTypeToLayout(attribType).fCount, |
| 365 | GrGLAttribTypeToLayout(attribType).fType, |
| 366 | GrGLAttribTypeToLayout(attribType).fNormalized, |
| 367 | stride, |
| 368 | reinterpret_cast<GrGLvoid*>( |
commit-bot@chromium.org | 6ebfbf9 | 2014-02-24 12:05:02 +0000 | [diff] [blame] | 369 | vertexOffsetInBytes + vertexAttrib->fOffset)); |
commit-bot@chromium.org | 6b30e45 | 2013-10-04 20:02:53 +0000 | [diff] [blame] | 370 | } |
commit-bot@chromium.org | 6ebfbf9 | 2014-02-24 12:05:02 +0000 | [diff] [blame] | 371 | attribState->disableUnusedArrays(this, usedAttribArraysMask); |
bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 372 | } |
junov@google.com | f93e717 | 2011-03-31 21:26:24 +0000 | [diff] [blame] | 373 | } |