blob: 8c0373ac283d61413721faa9d26d4e538701eb23 [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
jvanverth39edf762014-12-22 11:44:19 -08008#include "GrGLGpu.h"
cdalton397536c2016-03-25 12:15:03 -07009#include "GrGLBuffer.h"
jvanverthcba99b82015-06-24 06:59:57 -070010#include "GrGLGLSL.h"
egdaniel066df7c2016-06-08 14:02:27 -070011#include "GrGLGpuCommandBuffer.h"
egdaniel8dc7c3a2015-04-16 11:22:42 -070012#include "GrGLStencilAttachment.h"
bsalomon37dd3312014-11-03 08:47:23 -080013#include "GrGLTextureRenderTarget.h"
csmartdalton29df7602016-08-31 11:55:52 -070014#include "GrFixedClip.h"
bsalomon3582d3e2015-02-13 14:20:05 -080015#include "GrGpuResourcePriv.h"
egdaniel0e1853c2016-03-17 11:35:45 -070016#include "GrMesh.h"
egdaniel8dd688b2015-01-22 10:16:09 -080017#include "GrPipeline.h"
ethannicholas22793252016-01-30 09:59:10 -080018#include "GrPLSGeometryProcessor.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080019#include "GrRenderTargetPriv.h"
bsalomonafbf2d62014-09-30 12:18:44 -070020#include "GrSurfacePriv.h"
bsalomonafbf2d62014-09-30 12:18:44 -070021#include "GrTexturePriv.h"
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +000022#include "GrTypes.h"
bsalomon6df86402015-06-01 10:41:49 -070023#include "builders/GrGLShaderStringBuilder.h"
egdanielcb7ba1e2015-10-26 08:38:25 -070024#include "glsl/GrGLSL.h"
jvanverthcba99b82015-06-24 06:59:57 -070025#include "glsl/GrGLSLCaps.h"
ethannicholas22793252016-01-30 09:59:10 -080026#include "glsl/GrGLSLPLSPathRendering.h"
csmartdaltona7f29642016-07-07 08:49:11 -070027#include "instanced/GLInstancedRendering.h"
cblume55f2d2d2016-02-26 13:20:48 -080028#include "SkMipMap.h"
29#include "SkPixmap.h"
commit-bot@chromium.org32184d82013-10-09 15:14:18 +000030#include "SkStrokeRec.h"
bsalomon@google.com3582bf92011-06-30 21:32:31 +000031#include "SkTemplates.h"
cblume55f2d2d2016-02-26 13:20:48 -080032#include "SkTypes.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000033
bsalomon@google.com0b77d682011-08-19 13:28:54 +000034#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +000035#define GL_CALL_RET(RET, X) GR_GL_CALL_RET(this->glInterface(), RET, X)
bsalomon@google.com0b77d682011-08-19 13:28:54 +000036
reed@google.comac10a2d2010-12-22 21:39:39 +000037#define SKIP_CACHE_CHECK true
38
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000039#if GR_GL_CHECK_ALLOC_WITH_GET_ERROR
40 #define CLEAR_ERROR_BEFORE_ALLOC(iface) GrGLClearErr(iface)
41 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL_NOERRCHECK(iface, call)
42 #define CHECK_ALLOC_ERROR(iface) GR_GL_GET_ERROR(iface)
rmistry@google.comfbfcd562012-08-23 18:09:54 +000043#else
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000044 #define CLEAR_ERROR_BEFORE_ALLOC(iface)
45 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL(iface, call)
46 #define CHECK_ALLOC_ERROR(iface) GR_GL_NO_ERROR
47#endif
48
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +000049///////////////////////////////////////////////////////////////////////////////
50
csmartdaltona7f29642016-07-07 08:49:11 -070051using gr_instanced::InstancedRendering;
52using gr_instanced::GLInstancedRendering;
cdaltonb85a0aa2014-07-21 15:32:44 -070053
cdalton8917d622015-05-06 13:40:21 -070054static const GrGLenum gXfermodeEquation2Blend[] = {
55 // Basic OpenGL blend equations.
56 GR_GL_FUNC_ADD,
57 GR_GL_FUNC_SUBTRACT,
58 GR_GL_FUNC_REVERSE_SUBTRACT,
59
60 // GL_KHR_blend_equation_advanced.
61 GR_GL_SCREEN,
62 GR_GL_OVERLAY,
63 GR_GL_DARKEN,
64 GR_GL_LIGHTEN,
65 GR_GL_COLORDODGE,
66 GR_GL_COLORBURN,
67 GR_GL_HARDLIGHT,
68 GR_GL_SOFTLIGHT,
69 GR_GL_DIFFERENCE,
70 GR_GL_EXCLUSION,
71 GR_GL_MULTIPLY,
72 GR_GL_HSL_HUE,
73 GR_GL_HSL_SATURATION,
74 GR_GL_HSL_COLOR,
75 GR_GL_HSL_LUMINOSITY
76};
77GR_STATIC_ASSERT(0 == kAdd_GrBlendEquation);
78GR_STATIC_ASSERT(1 == kSubtract_GrBlendEquation);
79GR_STATIC_ASSERT(2 == kReverseSubtract_GrBlendEquation);
80GR_STATIC_ASSERT(3 == kScreen_GrBlendEquation);
81GR_STATIC_ASSERT(4 == kOverlay_GrBlendEquation);
82GR_STATIC_ASSERT(5 == kDarken_GrBlendEquation);
83GR_STATIC_ASSERT(6 == kLighten_GrBlendEquation);
84GR_STATIC_ASSERT(7 == kColorDodge_GrBlendEquation);
85GR_STATIC_ASSERT(8 == kColorBurn_GrBlendEquation);
86GR_STATIC_ASSERT(9 == kHardLight_GrBlendEquation);
87GR_STATIC_ASSERT(10 == kSoftLight_GrBlendEquation);
88GR_STATIC_ASSERT(11 == kDifference_GrBlendEquation);
89GR_STATIC_ASSERT(12 == kExclusion_GrBlendEquation);
90GR_STATIC_ASSERT(13 == kMultiply_GrBlendEquation);
91GR_STATIC_ASSERT(14 == kHSLHue_GrBlendEquation);
92GR_STATIC_ASSERT(15 == kHSLSaturation_GrBlendEquation);
93GR_STATIC_ASSERT(16 == kHSLColor_GrBlendEquation);
94GR_STATIC_ASSERT(17 == kHSLLuminosity_GrBlendEquation);
bsalomonf7cc8772015-05-11 11:21:14 -070095GR_STATIC_ASSERT(SK_ARRAY_COUNT(gXfermodeEquation2Blend) == kGrBlendEquationCnt);
cdalton8917d622015-05-06 13:40:21 -070096
twiz@google.com0f31ca72011-03-18 17:38:11 +000097static const GrGLenum gXfermodeCoeff2Blend[] = {
98 GR_GL_ZERO,
99 GR_GL_ONE,
100 GR_GL_SRC_COLOR,
101 GR_GL_ONE_MINUS_SRC_COLOR,
102 GR_GL_DST_COLOR,
103 GR_GL_ONE_MINUS_DST_COLOR,
104 GR_GL_SRC_ALPHA,
105 GR_GL_ONE_MINUS_SRC_ALPHA,
106 GR_GL_DST_ALPHA,
107 GR_GL_ONE_MINUS_DST_ALPHA,
108 GR_GL_CONSTANT_COLOR,
109 GR_GL_ONE_MINUS_CONSTANT_COLOR,
110 GR_GL_CONSTANT_ALPHA,
111 GR_GL_ONE_MINUS_CONSTANT_ALPHA,
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000112
113 // extended blend coeffs
114 GR_GL_SRC1_COLOR,
115 GR_GL_ONE_MINUS_SRC1_COLOR,
116 GR_GL_SRC1_ALPHA,
117 GR_GL_ONE_MINUS_SRC1_ALPHA,
reed@google.comac10a2d2010-12-22 21:39:39 +0000118};
119
bsalomon861e1032014-12-16 07:33:49 -0800120bool GrGLGpu::BlendCoeffReferencesConstant(GrBlendCoeff coeff) {
bsalomon@google.com080773c2011-03-15 19:09:25 +0000121 static const bool gCoeffReferencesBlendConst[] = {
122 false,
123 false,
124 false,
125 false,
126 false,
127 false,
128 false,
129 false,
130 false,
131 false,
132 true,
133 true,
134 true,
135 true,
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000136
137 // extended blend coeffs
138 false,
139 false,
140 false,
141 false,
bsalomon@google.com080773c2011-03-15 19:09:25 +0000142 };
143 return gCoeffReferencesBlendConst[coeff];
bsalomonf7cc8772015-05-11 11:21:14 -0700144 GR_STATIC_ASSERT(kGrBlendCoeffCnt == SK_ARRAY_COUNT(gCoeffReferencesBlendConst));
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000145
bsalomon@google.com47059542012-06-06 20:51:20 +0000146 GR_STATIC_ASSERT(0 == kZero_GrBlendCoeff);
147 GR_STATIC_ASSERT(1 == kOne_GrBlendCoeff);
148 GR_STATIC_ASSERT(2 == kSC_GrBlendCoeff);
149 GR_STATIC_ASSERT(3 == kISC_GrBlendCoeff);
150 GR_STATIC_ASSERT(4 == kDC_GrBlendCoeff);
151 GR_STATIC_ASSERT(5 == kIDC_GrBlendCoeff);
152 GR_STATIC_ASSERT(6 == kSA_GrBlendCoeff);
153 GR_STATIC_ASSERT(7 == kISA_GrBlendCoeff);
154 GR_STATIC_ASSERT(8 == kDA_GrBlendCoeff);
155 GR_STATIC_ASSERT(9 == kIDA_GrBlendCoeff);
156 GR_STATIC_ASSERT(10 == kConstC_GrBlendCoeff);
157 GR_STATIC_ASSERT(11 == kIConstC_GrBlendCoeff);
158 GR_STATIC_ASSERT(12 == kConstA_GrBlendCoeff);
159 GR_STATIC_ASSERT(13 == kIConstA_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000160
bsalomon@google.com47059542012-06-06 20:51:20 +0000161 GR_STATIC_ASSERT(14 == kS2C_GrBlendCoeff);
162 GR_STATIC_ASSERT(15 == kIS2C_GrBlendCoeff);
163 GR_STATIC_ASSERT(16 == kS2A_GrBlendCoeff);
164 GR_STATIC_ASSERT(17 == kIS2A_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000165
166 // assertion for gXfermodeCoeff2Blend have to be in GrGpu scope
bsalomonf7cc8772015-05-11 11:21:14 -0700167 GR_STATIC_ASSERT(kGrBlendCoeffCnt == SK_ARRAY_COUNT(gXfermodeCoeff2Blend));
bsalomon@google.com080773c2011-03-15 19:09:25 +0000168}
169
reed@google.comac10a2d2010-12-22 21:39:39 +0000170///////////////////////////////////////////////////////////////////////////////
171
egdanielff1d5472015-09-10 08:37:20 -0700172
bsalomon682c2692015-05-22 14:01:46 -0700173GrGpu* GrGLGpu::Create(GrBackendContext backendContext, const GrContextOptions& options,
174 GrContext* context) {
bsalomon424cc262015-05-22 10:37:30 -0700175 SkAutoTUnref<const GrGLInterface> glInterface(
176 reinterpret_cast<const GrGLInterface*>(backendContext));
177 if (!glInterface) {
178 glInterface.reset(GrGLDefaultInterface());
179 } else {
180 glInterface->ref();
181 }
182 if (!glInterface) {
halcanary96fcdcc2015-08-27 07:41:13 -0700183 return nullptr;
bsalomon424cc262015-05-22 10:37:30 -0700184 }
bsalomon682c2692015-05-22 14:01:46 -0700185 GrGLContext* glContext = GrGLContext::Create(glInterface, options);
bsalomon424cc262015-05-22 10:37:30 -0700186 if (glContext) {
halcanary385fe4d2015-08-26 13:07:48 -0700187 return new GrGLGpu(glContext, context);
bsalomon424cc262015-05-22 10:37:30 -0700188 }
halcanary96fcdcc2015-08-27 07:41:13 -0700189 return nullptr;
bsalomon424cc262015-05-22 10:37:30 -0700190}
191
rileya@google.come38160c2012-07-03 18:03:04 +0000192static bool gPrintStartupSpew;
bsalomon@google.com42ab7ea2011-01-19 17:19:40 +0000193
bsalomon424cc262015-05-22 10:37:30 -0700194GrGLGpu::GrGLGpu(GrGLContext* ctx, GrContext* context)
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000195 : GrGpu(context)
cdaltone2e71c22016-04-07 18:13:29 -0700196 , fGLContext(ctx)
197 , fProgramCache(new ProgramCache(this))
198 , fHWProgramID(0)
199 , fTempSrcFBOID(0)
200 , fTempDstFBOID(0)
201 , fStencilClearFBOID(0)
cdalton74b8d322016-04-11 14:47:28 -0700202 , fHWMaxUsedBufferTextureUnit(-1)
cdaltone2e71c22016-04-07 18:13:29 -0700203 , fHWPLSEnabled(false)
204 , fPLSHasBeenUsed(false)
205 , fHWMinSampleShading(0.0) {
206 for (size_t i = 0; i < SK_ARRAY_COUNT(fCopyPrograms); ++i) {
207 fCopyPrograms[i].fProgram = 0;
208 }
brianosman33f6b3f2016-06-02 05:49:21 -0700209 for (size_t i = 0; i < SK_ARRAY_COUNT(fMipmapPrograms); ++i) {
210 fMipmapPrograms[i].fProgram = 0;
211 }
cdaltone2e71c22016-04-07 18:13:29 -0700212 fWireRectProgram.fProgram = 0;
213 fPLSSetupProgram.fProgram = 0;
214
bsalomon424cc262015-05-22 10:37:30 -0700215 SkASSERT(ctx);
216 fCaps.reset(SkRef(ctx->caps()));
bsalomon@google.combcce8922013-03-25 15:38:39 +0000217
cdalton9c3f1432016-03-11 10:07:37 -0800218 fHWBoundTextureUniqueIDs.reset(this->glCaps().glslCaps()->maxCombinedSamplers());
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000219
cdaltone2e71c22016-04-07 18:13:29 -0700220 fHWBufferState[kVertex_GrBufferType].fGLTarget = GR_GL_ARRAY_BUFFER;
221 fHWBufferState[kIndex_GrBufferType].fGLTarget = GR_GL_ELEMENT_ARRAY_BUFFER;
222 fHWBufferState[kTexel_GrBufferType].fGLTarget = GR_GL_TEXTURE_BUFFER;
223 fHWBufferState[kDrawIndirect_GrBufferType].fGLTarget = GR_GL_DRAW_INDIRECT_BUFFER;
224 if (GrGLCaps::kChromium_TransferBufferType == this->glCaps().transferBufferType()) {
225 fHWBufferState[kXferCpuToGpu_GrBufferType].fGLTarget =
226 GR_GL_PIXEL_UNPACK_TRANSFER_BUFFER_CHROMIUM;
227 fHWBufferState[kXferGpuToCpu_GrBufferType].fGLTarget =
228 GR_GL_PIXEL_PACK_TRANSFER_BUFFER_CHROMIUM;
229 } else {
230 fHWBufferState[kXferCpuToGpu_GrBufferType].fGLTarget = GR_GL_PIXEL_UNPACK_BUFFER;
231 fHWBufferState[kXferGpuToCpu_GrBufferType].fGLTarget = GR_GL_PIXEL_PACK_BUFFER;
232 }
233 GR_STATIC_ASSERT(6 == SK_ARRAY_COUNT(fHWBufferState));
234
cdalton74b8d322016-04-11 14:47:28 -0700235 if (this->caps()->shaderCaps()->texelBufferSupport()) {
236 fHWBufferTextures.reset(this->glCaps().glslCaps()->maxCombinedSamplers());
237 }
238
cdaltone2e71c22016-04-07 18:13:29 -0700239 if (this->glCaps().shaderCaps()->pathRenderingSupport()) {
240 fPathRendering.reset(new GrGLPathRendering(this));
241 }
242
bsalomon424cc262015-05-22 10:37:30 -0700243 GrGLClearErr(this->glInterface());
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000244 if (gPrintStartupSpew) {
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000245 const GrGLubyte* vendor;
246 const GrGLubyte* renderer;
247 const GrGLubyte* version;
248 GL_CALL_RET(vendor, GetString(GR_GL_VENDOR));
249 GL_CALL_RET(renderer, GetString(GR_GL_RENDERER));
250 GL_CALL_RET(version, GetString(GR_GL_VERSION));
bsalomon861e1032014-12-16 07:33:49 -0800251 SkDebugf("------------------------- create GrGLGpu %p --------------\n",
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000252 this);
tfarina38406c82014-10-31 07:11:12 -0700253 SkDebugf("------ VENDOR %s\n", vendor);
254 SkDebugf("------ RENDERER %s\n", renderer);
255 SkDebugf("------ VERSION %s\n", version);
256 SkDebugf("------ EXTENSIONS\n");
bsalomon424cc262015-05-22 10:37:30 -0700257 this->glContext().extensions().print();
tfarina38406c82014-10-31 07:11:12 -0700258 SkDebugf("\n");
kkinnunen297aaf92015-02-19 06:32:12 -0800259 SkDebugf("%s", this->glCaps().dump().c_str());
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000260 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000261}
262
bsalomon861e1032014-12-16 07:33:49 -0800263GrGLGpu::~GrGLGpu() {
cdaltone2e71c22016-04-07 18:13:29 -0700264 // Ensure any GrGpuResource objects get deleted first, since they may require a working GrGLGpu
265 // to release the resources held by the objects themselves.
kkinnunen702501d2016-01-13 23:36:45 -0800266 fPathRendering.reset();
cdaltone2e71c22016-04-07 18:13:29 -0700267 fCopyProgramArrayBuffer.reset();
brianosman33f6b3f2016-06-02 05:49:21 -0700268 fMipmapProgramArrayBuffer.reset();
cdaltone2e71c22016-04-07 18:13:29 -0700269 fWireRectArrayBuffer.reset();
270 fPLSSetupProgram.fArrayBuffer.reset();
kkinnunen702501d2016-01-13 23:36:45 -0800271
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000272 if (0 != fHWProgramID) {
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000273 // detach the current program so there is no confusion on OpenGL's part
274 // that we want it to be deleted
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000275 GL_CALL(UseProgram(0));
276 }
277
egdanield803f272015-03-18 13:01:52 -0700278 if (0 != fTempSrcFBOID) {
279 GL_CALL(DeleteFramebuffers(1, &fTempSrcFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -0800280 }
egdanield803f272015-03-18 13:01:52 -0700281 if (0 != fTempDstFBOID) {
282 GL_CALL(DeleteFramebuffers(1, &fTempDstFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -0800283 }
egdanield803f272015-03-18 13:01:52 -0700284 if (0 != fStencilClearFBOID) {
285 GL_CALL(DeleteFramebuffers(1, &fStencilClearFBOID));
bsalomondd3143b2015-02-23 09:27:45 -0800286 }
egdaniel0f5f9672015-02-03 11:10:51 -0800287
bsalomon7ea33f52015-11-22 14:51:00 -0800288 for (size_t i = 0; i < SK_ARRAY_COUNT(fCopyPrograms); ++i) {
289 if (0 != fCopyPrograms[i].fProgram) {
290 GL_CALL(DeleteProgram(fCopyPrograms[i].fProgram));
291 }
bsalomon6df86402015-06-01 10:41:49 -0700292 }
bsalomon6dea83f2015-12-03 12:58:06 -0800293
brianosman33f6b3f2016-06-02 05:49:21 -0700294 for (size_t i = 0; i < SK_ARRAY_COUNT(fMipmapPrograms); ++i) {
295 if (0 != fMipmapPrograms[i].fProgram) {
296 GL_CALL(DeleteProgram(fMipmapPrograms[i].fProgram));
297 }
298 }
299
bsalomon6dea83f2015-12-03 12:58:06 -0800300 if (0 != fWireRectProgram.fProgram) {
301 GL_CALL(DeleteProgram(fWireRectProgram.fProgram));
302 }
303
ethannicholas22793252016-01-30 09:59:10 -0800304 if (0 != fPLSSetupProgram.fProgram) {
305 GL_CALL(DeleteProgram(fPLSSetupProgram.fProgram));
306 }
307
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000308 delete fProgramCache;
bsalomonc8dc1f72014-08-21 13:02:13 -0700309}
310
cdaltone2e71c22016-04-07 18:13:29 -0700311bool GrGLGpu::createPLSSetupProgram() {
312 if (!fPLSSetupProgram.fArrayBuffer) {
313 static const GrGLfloat vdata[] = {
314 0, 0,
315 0, 1,
316 1, 0,
317 1, 1
318 };
319 fPLSSetupProgram.fArrayBuffer.reset(GrGLBuffer::Create(this, sizeof(vdata),
320 kVertex_GrBufferType,
321 kStatic_GrAccessPattern, vdata));
322 if (!fPLSSetupProgram.fArrayBuffer) {
323 return false;
324 }
325 }
326
327 SkASSERT(!fPLSSetupProgram.fProgram);
328 GL_CALL_RET(fPLSSetupProgram.fProgram, CreateProgram());
329 if (!fPLSSetupProgram.fProgram) {
330 return false;
331 }
332
cdaltonc08f1962016-02-12 12:14:06 -0800333 const GrGLSLCaps* glslCaps = this->glCaps().glslCaps();
334 const char* version = glslCaps->versionDeclString();
ethannicholas22793252016-01-30 09:59:10 -0800335
336 GrGLSLShaderVar aVertex("a_vertex", kVec2f_GrSLType, GrShaderVar::kAttribute_TypeModifier);
337 GrGLSLShaderVar uTexCoordXform("u_texCoordXform", kVec4f_GrSLType,
338 GrShaderVar::kUniform_TypeModifier);
339 GrGLSLShaderVar uPosXform("u_posXform", kVec4f_GrSLType, GrShaderVar::kUniform_TypeModifier);
egdaniel990dbc82016-07-13 14:09:30 -0700340 GrGLSLShaderVar uTexture("u_texture", kTexture2DSampler_GrSLType,
341 GrShaderVar::kUniform_TypeModifier);
ethannicholas22793252016-01-30 09:59:10 -0800342 GrGLSLShaderVar vTexCoord("v_texCoord", kVec2f_GrSLType, GrShaderVar::kVaryingOut_TypeModifier);
halcanary9d524f22016-03-29 09:03:52 -0700343
ethannicholas22793252016-01-30 09:59:10 -0800344 SkString vshaderTxt(version);
cdaltonc08f1962016-02-12 12:14:06 -0800345 if (glslCaps->noperspectiveInterpolationSupport()) {
346 if (const char* extension = glslCaps->noperspectiveInterpolationExtensionString()) {
347 vshaderTxt.appendf("#extension %s : require\n", extension);
348 }
349 vTexCoord.addModifier("noperspective");
350 }
351 aVertex.appendDecl(glslCaps, &vshaderTxt);
ethannicholas22793252016-01-30 09:59:10 -0800352 vshaderTxt.append(";");
cdaltonc08f1962016-02-12 12:14:06 -0800353 uTexCoordXform.appendDecl(glslCaps, &vshaderTxt);
ethannicholas22793252016-01-30 09:59:10 -0800354 vshaderTxt.append(";");
cdaltonc08f1962016-02-12 12:14:06 -0800355 uPosXform.appendDecl(glslCaps, &vshaderTxt);
ethannicholas22793252016-01-30 09:59:10 -0800356 vshaderTxt.append(";");
cdaltonc08f1962016-02-12 12:14:06 -0800357 vTexCoord.appendDecl(glslCaps, &vshaderTxt);
ethannicholas22793252016-01-30 09:59:10 -0800358 vshaderTxt.append(";");
halcanary9d524f22016-03-29 09:03:52 -0700359
ethannicholas22793252016-01-30 09:59:10 -0800360 vshaderTxt.append(
361 "// PLS Setup Program VS\n"
362 "void main() {"
363 " gl_Position.xy = a_vertex * u_posXform.xy + u_posXform.zw;"
364 " gl_Position.zw = vec2(0, 1);"
365 "}"
366 );
367
368 SkString fshaderTxt(version);
cdaltonc08f1962016-02-12 12:14:06 -0800369 if (glslCaps->noperspectiveInterpolationSupport()) {
370 if (const char* extension = glslCaps->noperspectiveInterpolationExtensionString()) {
371 fshaderTxt.appendf("#extension %s : require\n", extension);
372 }
373 }
ethannicholas22793252016-01-30 09:59:10 -0800374 fshaderTxt.append("#extension ");
cdaltonc08f1962016-02-12 12:14:06 -0800375 fshaderTxt.append(glslCaps->fbFetchExtensionString());
ethannicholas22793252016-01-30 09:59:10 -0800376 fshaderTxt.append(" : require\n");
377 fshaderTxt.append("#extension GL_EXT_shader_pixel_local_storage : require\n");
cdaltonc08f1962016-02-12 12:14:06 -0800378 GrGLSLAppendDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision, *glslCaps, &fshaderTxt);
ethannicholas22793252016-01-30 09:59:10 -0800379 vTexCoord.setTypeModifier(GrShaderVar::kVaryingIn_TypeModifier);
cdaltonc08f1962016-02-12 12:14:06 -0800380 vTexCoord.appendDecl(glslCaps, &fshaderTxt);
ethannicholas22793252016-01-30 09:59:10 -0800381 fshaderTxt.append(";");
cdaltonc08f1962016-02-12 12:14:06 -0800382 uTexture.appendDecl(glslCaps, &fshaderTxt);
ethannicholas22793252016-01-30 09:59:10 -0800383 fshaderTxt.append(";");
384
385 fshaderTxt.appendf(
386 "// PLS Setup Program FS\n"
387 GR_GL_PLS_PATH_DATA_DECL
388 "void main() {\n"
389 " " GR_GL_PLS_DSTCOLOR_NAME " = gl_LastFragColorARM;\n"
390 " pls.windings = ivec4(0, 0, 0, 0);\n"
391 "}"
392 );
cdaltone2e71c22016-04-07 18:13:29 -0700393
ethannicholas22793252016-01-30 09:59:10 -0800394 const char* str;
395 GrGLint length;
396
397 str = vshaderTxt.c_str();
398 length = SkToInt(vshaderTxt.size());
399 GrGLuint vshader = GrGLCompileAndAttachShader(*fGLContext, fPLSSetupProgram.fProgram,
400 GR_GL_VERTEX_SHADER, &str, &length, 1, &fStats);
401
402 str = fshaderTxt.c_str();
403 length = SkToInt(fshaderTxt.size());
404 GrGLuint fshader = GrGLCompileAndAttachShader(*fGLContext, fPLSSetupProgram.fProgram,
405 GR_GL_FRAGMENT_SHADER, &str, &length, 1, &fStats);
406
407 GL_CALL(LinkProgram(fPLSSetupProgram.fProgram));
408
409 GL_CALL_RET(fPLSSetupProgram.fPosXformUniform, GetUniformLocation(fPLSSetupProgram.fProgram,
410 "u_posXform"));
411
412 GL_CALL(BindAttribLocation(fPLSSetupProgram.fProgram, 0, "a_vertex"));
413
414 GL_CALL(DeleteShader(vshader));
415 GL_CALL(DeleteShader(fshader));
416
cdaltone2e71c22016-04-07 18:13:29 -0700417 return true;
ethannicholas22793252016-01-30 09:59:10 -0800418}
419
bsalomon6e2aad42016-04-01 11:54:31 -0700420void GrGLGpu::disconnect(DisconnectType type) {
421 INHERITED::disconnect(type);
422 if (DisconnectType::kCleanup == type) {
423 if (fHWProgramID) {
424 GL_CALL(UseProgram(0));
425 }
426 if (fTempSrcFBOID) {
427 GL_CALL(DeleteFramebuffers(1, &fTempSrcFBOID));
428 }
429 if (fTempDstFBOID) {
430 GL_CALL(DeleteFramebuffers(1, &fTempDstFBOID));
431 }
432 if (fStencilClearFBOID) {
433 GL_CALL(DeleteFramebuffers(1, &fStencilClearFBOID));
434 }
bsalomon6e2aad42016-04-01 11:54:31 -0700435 for (size_t i = 0; i < SK_ARRAY_COUNT(fCopyPrograms); ++i) {
436 if (fCopyPrograms[i].fProgram) {
437 GL_CALL(DeleteProgram(fCopyPrograms[i].fProgram));
438 }
439 }
brianosman33f6b3f2016-06-02 05:49:21 -0700440 for (size_t i = 0; i < SK_ARRAY_COUNT(fMipmapPrograms); ++i) {
441 if (fMipmapPrograms[i].fProgram) {
442 GL_CALL(DeleteProgram(fMipmapPrograms[i].fProgram));
443 }
444 }
bsalomon6e2aad42016-04-01 11:54:31 -0700445 if (fWireRectProgram.fProgram) {
446 GL_CALL(DeleteProgram(fWireRectProgram.fProgram));
447 }
bsalomon6e2aad42016-04-01 11:54:31 -0700448 if (fPLSSetupProgram.fProgram) {
449 GL_CALL(DeleteProgram(fPLSSetupProgram.fProgram));
450 }
bsalomon6e2aad42016-04-01 11:54:31 -0700451 } else {
452 if (fProgramCache) {
453 fProgramCache->abandon();
454 }
455 }
456
457 delete fProgramCache;
458 fProgramCache = nullptr;
459
bsalomonc8dc1f72014-08-21 13:02:13 -0700460 fHWProgramID = 0;
egdanield803f272015-03-18 13:01:52 -0700461 fTempSrcFBOID = 0;
462 fTempDstFBOID = 0;
463 fStencilClearFBOID = 0;
cdaltone2e71c22016-04-07 18:13:29 -0700464 fCopyProgramArrayBuffer.reset();
bsalomon7ea33f52015-11-22 14:51:00 -0800465 for (size_t i = 0; i < SK_ARRAY_COUNT(fCopyPrograms); ++i) {
466 fCopyPrograms[i].fProgram = 0;
467 }
brianosman33f6b3f2016-06-02 05:49:21 -0700468 fMipmapProgramArrayBuffer.reset();
469 for (size_t i = 0; i < SK_ARRAY_COUNT(fMipmapPrograms); ++i) {
470 fMipmapPrograms[i].fProgram = 0;
471 }
bsalomon6dea83f2015-12-03 12:58:06 -0800472 fWireRectProgram.fProgram = 0;
cdaltone2e71c22016-04-07 18:13:29 -0700473 fWireRectArrayBuffer.reset();
bsalomon6e2aad42016-04-01 11:54:31 -0700474 fPLSSetupProgram.fProgram = 0;
cdaltone2e71c22016-04-07 18:13:29 -0700475 fPLSSetupProgram.fArrayBuffer.reset();
jvanverthe9c0fc62015-04-29 11:18:05 -0700476 if (this->glCaps().shaderCaps()->pathRenderingSupport()) {
bsalomon6e2aad42016-04-01 11:54:31 -0700477 this->glPathRendering()->disconnect(type);
bsalomonc8dc1f72014-08-21 13:02:13 -0700478 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000479}
480
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000481///////////////////////////////////////////////////////////////////////////////
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000482
bsalomon861e1032014-12-16 07:33:49 -0800483void GrGLGpu::onResetContext(uint32_t resetBits) {
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000484 // we don't use the zb at all
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000485 if (resetBits & kMisc_GrGLBackendState) {
486 GL_CALL(Disable(GR_GL_DEPTH_TEST));
487 GL_CALL(DepthMask(GR_GL_FALSE));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000488
cdaltone2e71c22016-04-07 18:13:29 -0700489 fHWBufferState[kTexel_GrBufferType].invalidate();
490 fHWBufferState[kDrawIndirect_GrBufferType].invalidate();
491 fHWBufferState[kXferCpuToGpu_GrBufferType].invalidate();
492 fHWBufferState[kXferGpuToCpu_GrBufferType].invalidate();
cdaltonc1613102016-03-16 07:48:20 -0700493
robertphillips5fa7f302016-07-21 09:21:04 -0700494 fHWDrawFace = GrDrawFace::kInvalid;
reed@google.comac10a2d2010-12-22 21:39:39 +0000495
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000496 if (kGL_GrGLStandard == this->glStandard()) {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000497 // Desktop-only state that we never change
498 if (!this->glCaps().isCoreProfile()) {
499 GL_CALL(Disable(GR_GL_POINT_SMOOTH));
500 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
501 GL_CALL(Disable(GR_GL_POLYGON_SMOOTH));
502 GL_CALL(Disable(GR_GL_POLYGON_STIPPLE));
503 GL_CALL(Disable(GR_GL_COLOR_LOGIC_OP));
504 GL_CALL(Disable(GR_GL_INDEX_LOGIC_OP));
505 }
506 // The windows NVIDIA driver has GL_ARB_imaging in the extension string when using a
507 // core profile. This seems like a bug since the core spec removes any mention of
508 // GL_ARB_imaging.
509 if (this->glCaps().imagingSupport() && !this->glCaps().isCoreProfile()) {
510 GL_CALL(Disable(GR_GL_COLOR_TABLE));
511 }
512 GL_CALL(Disable(GR_GL_POLYGON_OFFSET_FILL));
513 // Since ES doesn't support glPointSize at all we always use the VS to
514 // set the point size
515 GL_CALL(Enable(GR_GL_VERTEX_PROGRAM_POINT_SIZE));
516
517 // We should set glPolygonMode(FRONT_AND_BACK,FILL) here, too. It isn't
518 // currently part of our gl interface. There are probably others as
519 // well.
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000520 }
joshualitt58162332014-08-01 06:44:53 -0700521
522 if (kGLES_GrGLStandard == this->glStandard() &&
bsalomon424cc262015-05-22 10:37:30 -0700523 this->hasExtension("GL_ARM_shader_framebuffer_fetch")) {
joshualitt58162332014-08-01 06:44:53 -0700524 // The arm extension requires specifically enabling MSAA fetching per sample.
525 // On some devices this may have a perf hit. Also multiple render targets are disabled
526 GL_CALL(Enable(GR_GL_FETCH_PER_SAMPLE_ARM));
527 }
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000528 fHWWriteToColor = kUnknown_TriState;
529 // we only ever use lines in hairline mode
530 GL_CALL(LineWidth(1));
bsalomonaca31fe2015-09-22 11:38:46 -0700531 GL_CALL(Disable(GR_GL_DITHER));
bsalomon@google.comcad107b2013-06-28 14:32:08 +0000532 }
edisonn@google.comba669992013-06-28 16:03:21 +0000533
egdanielb414f252014-07-29 13:15:47 -0700534 if (resetBits & kMSAAEnable_GrGLBackendState) {
535 fMSAAEnabled = kUnknown_TriState;
vbuzinovdded6962015-06-12 08:59:45 -0700536
egdanieleed519e2016-01-15 11:36:18 -0800537 if (this->caps()->usesMixedSamples()) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800538 if (0 != this->caps()->maxRasterSamples()) {
539 fHWRasterMultisampleEnabled = kUnknown_TriState;
540 fHWNumRasterSamples = 0;
541 }
542
543 // The skia blend modes all use premultiplied alpha and therefore expect RGBA coverage
544 // modulation. This state has no effect when not rendering to a mixed sampled target.
vbuzinovdded6962015-06-12 08:59:45 -0700545 GL_CALL(CoverageModulation(GR_GL_RGBA));
546 }
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000547 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000548
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +0000549 fHWActiveTextureUnitIdx = -1; // invalid
550
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000551 if (resetBits & kTextureBinding_GrGLBackendState) {
bsalomon1c63bf62014-07-22 13:09:46 -0700552 for (int s = 0; s < fHWBoundTextureUniqueIDs.count(); ++s) {
553 fHWBoundTextureUniqueIDs[s] = SK_InvalidUniqueID;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000554 }
cdalton74b8d322016-04-11 14:47:28 -0700555 for (int b = 0; b < fHWBufferTextures.count(); ++b) {
556 SkASSERT(this->caps()->shaderCaps()->texelBufferSupport());
557 fHWBufferTextures[b].fKnownBound = false;
558 }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000559 }
bsalomon@google.com316f99232011-01-13 21:28:12 +0000560
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000561 if (resetBits & kBlend_GrGLBackendState) {
562 fHWBlendState.invalidate();
563 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000564
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000565 if (resetBits & kView_GrGLBackendState) {
566 fHWScissorSettings.invalidate();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700567 fHWWindowRectsState.invalidate();
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000568 fHWViewport.invalidate();
569 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000570
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000571 if (resetBits & kStencil_GrGLBackendState) {
572 fHWStencilSettings.invalidate();
573 fHWStencilTestEnabled = kUnknown_TriState;
574 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000575
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000576 // Vertex
577 if (resetBits & kVertex_GrGLBackendState) {
cdaltone2e71c22016-04-07 18:13:29 -0700578 fHWVertexArrayState.invalidate();
579 fHWBufferState[kVertex_GrBufferType].invalidate();
580 fHWBufferState[kIndex_GrBufferType].invalidate();
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000581 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000582
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000583 if (resetBits & kRenderTarget_GrGLBackendState) {
egdanield803f272015-03-18 13:01:52 -0700584 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon16921ec2015-07-30 15:34:56 -0700585 fHWSRGBFramebuffer = kUnknown_TriState;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000586 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000587
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000588 if (resetBits & kPathRendering_GrGLBackendState) {
jvanverthe9c0fc62015-04-29 11:18:05 -0700589 if (this->caps()->shaderCaps()->pathRenderingSupport()) {
kkinnunenccdaa042014-08-20 01:36:23 -0700590 this->glPathRendering()->resetContext();
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000591 }
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000592 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000593
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000594 // we assume these values
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000595 if (resetBits & kPixelStore_GrGLBackendState) {
596 if (this->glCaps().unpackRowLengthSupport()) {
597 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
598 }
599 if (this->glCaps().packRowLengthSupport()) {
600 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
601 }
602 if (this->glCaps().unpackFlipYSupport()) {
603 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
604 }
605 if (this->glCaps().packFlipYSupport()) {
606 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, GR_GL_FALSE));
607 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000608 }
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000609
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000610 if (resetBits & kProgram_GrGLBackendState) {
611 fHWProgramID = 0;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000612 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000613}
614
egdanielcf614fd2015-04-22 13:58:58 -0700615static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000616 // By default, GrRenderTargets are GL's normal orientation so that they
617 // can be drawn to by the outside world without the client having
618 // to render upside down.
619 if (kDefault_GrSurfaceOrigin == origin) {
620 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
621 } else {
622 return origin;
623 }
624}
625
bsalomon6dc6f5f2015-06-18 09:12:16 -0700626GrTexture* GrGLGpu::onWrapBackendTexture(const GrBackendTextureDesc& desc,
627 GrWrapOwnership ownership) {
bsalomon091f60c2015-11-10 11:54:56 -0800628#ifdef SK_IGNORE_GL_TEXTURE_TARGET
629 if (!desc.fTextureHandle) {
halcanary96fcdcc2015-08-27 07:41:13 -0700630 return nullptr;
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000631 }
bsalomon091f60c2015-11-10 11:54:56 -0800632#else
633 const GrGLTextureInfo* info = reinterpret_cast<const GrGLTextureInfo*>(desc.fTextureHandle);
634 if (!info || !info->fID) {
635 return nullptr;
636 }
637#endif
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000638
bsalomon7ea33f52015-11-22 14:51:00 -0800639 // next line relies on GrBackendTextureDesc's flags matching GrTexture's
640 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrBackendTextureFlag);
641
bsalomonb15b4c12014-10-29 12:41:57 -0700642 GrGLTexture::IDDesc idDesc;
643 GrSurfaceDesc surfDesc;
644
bsalomon091f60c2015-11-10 11:54:56 -0800645#ifdef SK_IGNORE_GL_TEXTURE_TARGET
646 idDesc.fInfo.fID = static_cast<GrGLuint>(desc.fTextureHandle);
cblume55f2d2d2016-02-26 13:20:48 -0800647 // When we create the texture, we only
648 // create GL_TEXTURE_2D at the moment.
649 // External clients can do something different.
650
bsalomon091f60c2015-11-10 11:54:56 -0800651 idDesc.fInfo.fTarget = GR_GL_TEXTURE_2D;
652#else
653 idDesc.fInfo = *info;
654#endif
bsalomone5286e02016-01-14 09:24:09 -0800655
bsalomon7ea33f52015-11-22 14:51:00 -0800656 if (GR_GL_TEXTURE_EXTERNAL == idDesc.fInfo.fTarget) {
657 if (renderTarget) {
658 // This combination is not supported.
659 return nullptr;
660 }
cdalton9c3f1432016-03-11 10:07:37 -0800661 if (!this->glCaps().glslCaps()->externalTextureSupport()) {
bsalomon7ea33f52015-11-22 14:51:00 -0800662 return nullptr;
663 }
bsalomone5286e02016-01-14 09:24:09 -0800664 } else if (GR_GL_TEXTURE_RECTANGLE == idDesc.fInfo.fTarget) {
665 if (!this->glCaps().rectangleTextureSupport()) {
666 return nullptr;
667 }
668 } else if (GR_GL_TEXTURE_2D != idDesc.fInfo.fTarget) {
669 return nullptr;
bsalomon7ea33f52015-11-22 14:51:00 -0800670 }
bsalomone5286e02016-01-14 09:24:09 -0800671
672 // Sample count is interpreted to mean the number of samples that Gr code should allocate
bsalomona98419b2015-11-23 07:09:50 -0800673 // for a render buffer that resolves to the texture. We don't support MSAA textures.
674 if (desc.fSampleCnt && !renderTarget) {
675 return nullptr;
676 }
bsalomon10528f12015-10-14 12:54:52 -0700677
kkinnunen2e6055b2016-04-22 01:48:29 -0700678 if (kAdopt_GrWrapOwnership == ownership) {
679 idDesc.fOwnership = GrBackendObjectOwnership::kOwned;
680 } else {
681 idDesc.fOwnership = GrBackendObjectOwnership::kBorrowed;
bsalomone5286e02016-01-14 09:24:09 -0800682 }
bsalomonb15b4c12014-10-29 12:41:57 -0700683
bsalomonb15b4c12014-10-29 12:41:57 -0700684 surfDesc.fFlags = (GrSurfaceFlags) desc.fFlags;
685 surfDesc.fWidth = desc.fWidth;
686 surfDesc.fHeight = desc.fHeight;
687 surfDesc.fConfig = desc.fConfig;
senorblanco94e50102015-04-06 09:42:57 -0700688 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000689 // FIXME: this should be calling resolve_origin(), but Chrome code is currently
690 // assuming the old behaviour, which is that backend textures are always
691 // BottomLeft, even for non-RT's. Once Chrome is fixed, change this to:
692 // glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
693 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
bsalomonb15b4c12014-10-29 12:41:57 -0700694 surfDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000695 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700696 surfDesc.fOrigin = desc.fOrigin;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000697 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000698
halcanary96fcdcc2015-08-27 07:41:13 -0700699 GrGLTexture* texture = nullptr;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000700 if (renderTarget) {
bsalomonb15b4c12014-10-29 12:41:57 -0700701 GrGLRenderTarget::IDDesc rtIDDesc;
kkinnunen2e6055b2016-04-22 01:48:29 -0700702 if (!this->createRenderTargetObjects(surfDesc, idDesc.fInfo, &rtIDDesc)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700703 return nullptr;
bsalomon@google.come269f212011-11-07 13:29:52 +0000704 }
kkinnunen2e6055b2016-04-22 01:48:29 -0700705 texture = GrGLTextureRenderTarget::CreateWrapped(this, surfDesc, idDesc, rtIDDesc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000706 } else {
kkinnunen2e6055b2016-04-22 01:48:29 -0700707 texture = GrGLTexture::CreateWrapped(this, surfDesc, idDesc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000708 }
halcanary96fcdcc2015-08-27 07:41:13 -0700709 if (nullptr == texture) {
710 return nullptr;
bsalomon@google.come269f212011-11-07 13:29:52 +0000711 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000712
bsalomon@google.come269f212011-11-07 13:29:52 +0000713 return texture;
714}
715
bsalomon6dc6f5f2015-06-18 09:12:16 -0700716GrRenderTarget* GrGLGpu::onWrapBackendRenderTarget(const GrBackendRenderTargetDesc& wrapDesc,
717 GrWrapOwnership ownership) {
bsalomonb15b4c12014-10-29 12:41:57 -0700718 GrGLRenderTarget::IDDesc idDesc;
egdanield803f272015-03-18 13:01:52 -0700719 idDesc.fRTFBOID = static_cast<GrGLuint>(wrapDesc.fRenderTargetHandle);
bsalomonb15b4c12014-10-29 12:41:57 -0700720 idDesc.fMSColorRenderbufferID = 0;
egdanield803f272015-03-18 13:01:52 -0700721 idDesc.fTexFBOID = GrGLRenderTarget::kUnresolvableFBOID;
kkinnunen2e6055b2016-04-22 01:48:29 -0700722 if (kAdopt_GrWrapOwnership == ownership) {
723 idDesc.fRTFBOOwnership = GrBackendObjectOwnership::kOwned;
724 } else {
725 idDesc.fRTFBOOwnership = GrBackendObjectOwnership::kBorrowed;
cblume61214052016-01-26 09:10:48 -0800726 }
csmartdaltonf9635992016-08-10 11:09:07 -0700727 idDesc.fIsMixedSampled = false;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000728
bsalomonb15b4c12014-10-29 12:41:57 -0700729 GrSurfaceDesc desc;
730 desc.fConfig = wrapDesc.fConfig;
senorblanco4b013292015-08-19 09:10:28 -0700731 desc.fFlags = kCheckAllocation_GrSurfaceFlag | kRenderTarget_GrSurfaceFlag;
bsalomonb15b4c12014-10-29 12:41:57 -0700732 desc.fWidth = wrapDesc.fWidth;
733 desc.fHeight = wrapDesc.fHeight;
senorblanco94e50102015-04-06 09:42:57 -0700734 desc.fSampleCnt = SkTMin(wrapDesc.fSampleCnt, this->caps()->maxSampleCount());
bsalomonb15b4c12014-10-29 12:41:57 -0700735 desc.fOrigin = resolve_origin(wrapDesc.fOrigin, true);
736
egdanielec00d942015-09-14 12:56:10 -0700737 return GrGLRenderTarget::CreateWrapped(this, desc, idDesc, wrapDesc.fStencilBits);
bsalomon@google.come269f212011-11-07 13:29:52 +0000738}
739
kkinnunen49c4c222016-04-01 04:50:37 -0700740GrRenderTarget* GrGLGpu::onWrapBackendTextureAsRenderTarget(const GrBackendTextureDesc& desc) {
ericrkf7b8b8a2016-02-24 14:49:51 -0800741#ifdef SK_IGNORE_GL_TEXTURE_TARGET
742 if (!desc.fTextureHandle) {
743 return nullptr;
744 }
745#else
746 const GrGLTextureInfo* info = reinterpret_cast<const GrGLTextureInfo*>(desc.fTextureHandle);
747 if (!info || !info->fID) {
748 return nullptr;
749 }
750#endif
751
jvanverthdb1adf52016-05-03 05:37:45 -0700752 GrGLTextureInfo texInfo;
ericrkf7b8b8a2016-02-24 14:49:51 -0800753 GrSurfaceDesc surfDesc;
754
755#ifdef SK_IGNORE_GL_TEXTURE_TARGET
jvanverthdb1adf52016-05-03 05:37:45 -0700756 texInfo.fID = static_cast<GrGLuint>(desc.fTextureHandle);
ericrkf7b8b8a2016-02-24 14:49:51 -0800757 // We only support GL_TEXTURE_2D at the moment.
jvanverthdb1adf52016-05-03 05:37:45 -0700758 texInfo.fTarget = GR_GL_TEXTURE_2D;
ericrkf7b8b8a2016-02-24 14:49:51 -0800759#else
jvanverthdb1adf52016-05-03 05:37:45 -0700760 texInfo = *info;
ericrkf7b8b8a2016-02-24 14:49:51 -0800761#endif
762
jvanverthdb1adf52016-05-03 05:37:45 -0700763 if (GR_GL_TEXTURE_RECTANGLE != texInfo.fTarget &&
764 GR_GL_TEXTURE_2D != texInfo.fTarget) {
ericrkf7b8b8a2016-02-24 14:49:51 -0800765 // Only texture rectangle and texture 2d are supported. We do not check whether texture
766 // rectangle is supported by Skia - if the caller provided us with a texture rectangle,
767 // we assume the necessary support exists.
768 return nullptr;
769 }
770
ericrkf7b8b8a2016-02-24 14:49:51 -0800771 surfDesc.fFlags = (GrSurfaceFlags) desc.fFlags;
772 surfDesc.fWidth = desc.fWidth;
773 surfDesc.fHeight = desc.fHeight;
774 surfDesc.fConfig = desc.fConfig;
775 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
776 // FIXME: this should be calling resolve_origin(), but Chrome code is currently
777 // assuming the old behaviour, which is that backend textures are always
778 // BottomLeft, even for non-RT's. Once Chrome is fixed, change this to:
779 // glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
780 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
781 surfDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
782 } else {
783 surfDesc.fOrigin = desc.fOrigin;
784 }
785
786 GrGLRenderTarget::IDDesc rtIDDesc;
jvanverthdb1adf52016-05-03 05:37:45 -0700787 if (!this->createRenderTargetObjects(surfDesc, texInfo, &rtIDDesc)) {
ericrkf7b8b8a2016-02-24 14:49:51 -0800788 return nullptr;
789 }
jvanverthdb1adf52016-05-03 05:37:45 -0700790 return GrGLRenderTarget::CreateWrapped(this, surfDesc, rtIDDesc, 0);
ericrkf7b8b8a2016-02-24 14:49:51 -0800791}
792
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000793////////////////////////////////////////////////////////////////////////////////
ericrkf7b8b8a2016-02-24 14:49:51 -0800794
bsalomonf0674512015-07-28 13:26:15 -0700795bool GrGLGpu::onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height,
cblumeed828002016-02-16 13:00:01 -0800796 GrPixelConfig srcConfig,
bsalomonf0674512015-07-28 13:26:15 -0700797 DrawPreference* drawPreference,
798 WritePixelTempDrawInfo* tempDrawInfo) {
799 if (kIndex_8_GrPixelConfig == srcConfig || GrPixelConfigIsCompressed(dstSurface->config())) {
800 return false;
801 }
802
bsalomon6cb3cbe2015-07-30 07:34:27 -0700803 // This subclass only allows writes to textures. If the dst is not a texture we have to draw
804 // into it. We could use glDrawPixels on GLs that have it, but we don't today.
805 if (!dstSurface->asTexture()) {
806 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
bsalomon7ea33f52015-11-22 14:51:00 -0800807 } else {
808 GrGLTexture* texture = static_cast<GrGLTexture*>(dstSurface->asTexture());
bsalomone5286e02016-01-14 09:24:09 -0800809 if (GR_GL_TEXTURE_EXTERNAL == texture->target()) {
810 // We don't currently support writing pixels to EXTERNAL textures.
bsalomon7ea33f52015-11-22 14:51:00 -0800811 return false;
812 }
bsalomon6cb3cbe2015-07-30 07:34:27 -0700813 }
814
bsalomon16921ec2015-07-30 15:34:56 -0700815 if (GrPixelConfigIsSRGB(dstSurface->config()) != GrPixelConfigIsSRGB(srcConfig)) {
816 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
817 }
818
bsalomon6c9cd552016-01-22 07:17:34 -0800819 // Start off assuming no swizzling
820 tempDrawInfo->fSwizzle = GrSwizzle::RGBA();
821 tempDrawInfo->fWriteConfig = srcConfig;
bsalomonf0674512015-07-28 13:26:15 -0700822
823 // These settings we will always want if a temp draw is performed. Initially set the config
824 // to srcConfig, though that may be modified if we decide to do a R/G swap.
825 tempDrawInfo->fTempSurfaceDesc.fFlags = kNone_GrSurfaceFlags;
826 tempDrawInfo->fTempSurfaceDesc.fConfig = srcConfig;
827 tempDrawInfo->fTempSurfaceDesc.fWidth = width;
828 tempDrawInfo->fTempSurfaceDesc.fHeight = height;
829 tempDrawInfo->fTempSurfaceDesc.fSampleCnt = 0;
830 tempDrawInfo->fTempSurfaceDesc.fOrigin = kTopLeft_GrSurfaceOrigin; // no CPU y-flip for TL.
831
832 bool configsAreRBSwaps = GrPixelConfigSwapRAndB(srcConfig) == dstSurface->config();
833
834 if (configsAreRBSwaps) {
835 if (!this->caps()->isConfigTexturable(srcConfig)) {
836 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
837 tempDrawInfo->fTempSurfaceDesc.fConfig = dstSurface->config();
bsalomon6c9cd552016-01-22 07:17:34 -0800838 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
839 tempDrawInfo->fWriteConfig = dstSurface->config();
bsalomon88c7b982015-07-31 11:20:16 -0700840 } else if (this->glCaps().rgba8888PixelsOpsAreSlow() &&
841 kRGBA_8888_GrPixelConfig == srcConfig) {
bsalomonf0674512015-07-28 13:26:15 -0700842 ElevateDrawPreference(drawPreference, kGpuPrefersDraw_DrawPreference);
843 tempDrawInfo->fTempSurfaceDesc.fConfig = dstSurface->config();
bsalomon6c9cd552016-01-22 07:17:34 -0800844 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
845 tempDrawInfo->fWriteConfig = dstSurface->config();
bsalomonf0674512015-07-28 13:26:15 -0700846 } else if (kGLES_GrGLStandard == this->glStandard() &&
847 this->glCaps().bgraIsInternalFormat()) {
848 // The internal format and external formats must match texture uploads so we can't
849 // swizzle while uploading when BGRA is a distinct internal format.
850 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
851 tempDrawInfo->fTempSurfaceDesc.fConfig = dstSurface->config();
bsalomon6c9cd552016-01-22 07:17:34 -0800852 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
853 tempDrawInfo->fWriteConfig = dstSurface->config();
bsalomonf0674512015-07-28 13:26:15 -0700854 }
855 }
856
857 if (!this->glCaps().unpackFlipYSupport() &&
858 kBottomLeft_GrSurfaceOrigin == dstSurface->origin()) {
859 ElevateDrawPreference(drawPreference, kGpuPrefersDraw_DrawPreference);
860 }
861
862 return true;
863}
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000864
jvanverth17aa0472016-01-05 10:41:27 -0800865static bool check_write_and_transfer_input(GrGLTexture* glTex, GrSurface* surface,
866 GrPixelConfig config) {
bsalomon6cb3cbe2015-07-30 07:34:27 -0700867 if (!glTex) {
868 return false;
869 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000870
bsalomon16921ec2015-07-30 15:34:56 -0700871 // OpenGL doesn't do sRGB <-> linear conversions when reading and writing pixels.
872 if (GrPixelConfigIsSRGB(surface->config()) != GrPixelConfigIsSRGB(config)) {
873 return false;
874 }
875
bsalomone5286e02016-01-14 09:24:09 -0800876 // Write or transfer of pixels is not implemented for TEXTURE_EXTERNAL textures
877 if (GR_GL_TEXTURE_EXTERNAL == glTex->target()) {
bsalomon7ea33f52015-11-22 14:51:00 -0800878 return false;
879 }
880
jvanverth17aa0472016-01-05 10:41:27 -0800881 return true;
882}
883
884bool GrGLGpu::onWritePixels(GrSurface* surface,
885 int left, int top, int width, int height,
cblume55f2d2d2016-02-26 13:20:48 -0800886 GrPixelConfig config,
887 const SkTArray<GrMipLevel>& texels) {
jvanverth17aa0472016-01-05 10:41:27 -0800888 GrGLTexture* glTex = static_cast<GrGLTexture*>(surface->asTexture());
889
890 if (!check_write_and_transfer_input(glTex, surface, config)) {
891 return false;
892 }
893
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000894 this->setScratchTextureUnit();
bsalomon10528f12015-10-14 12:54:52 -0700895 GL_CALL(BindTexture(glTex->target(), glTex->textureID()));
bsalomon@google.com9d6cfd82011-11-05 13:25:21 +0000896
krajcevski145d48c2014-06-11 16:07:50 -0700897 bool success = false;
bsalomonb15b4c12014-10-29 12:41:57 -0700898 if (GrPixelConfigIsCompressed(glTex->desc().fConfig)) {
bsalomon861e1032014-12-16 07:33:49 -0800899 // We check that config == desc.fConfig in GrGLGpu::canWriteTexturePixels()
bsalomonb15b4c12014-10-29 12:41:57 -0700900 SkASSERT(config == glTex->desc().fConfig);
cblume55f2d2d2016-02-26 13:20:48 -0800901 success = this->uploadCompressedTexData(glTex->desc(), glTex->target(), texels,
jvanverth17aa0472016-01-05 10:41:27 -0800902 kWrite_UploadType, left, top, width, height);
krajcevski145d48c2014-06-11 16:07:50 -0700903 } else {
jcgregorioe7d7f902016-02-04 19:51:25 -0800904 success = this->uploadTexData(glTex->desc(), glTex->target(), kWrite_UploadType,
cblume55f2d2d2016-02-26 13:20:48 -0800905 left, top, width, height, config, texels);
krajcevski145d48c2014-06-11 16:07:50 -0700906 }
907
cblume55f2d2d2016-02-26 13:20:48 -0800908 return success;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000909}
910
jvanverthc3d706f2016-04-20 10:33:27 -0700911bool GrGLGpu::onTransferPixels(GrSurface* surface,
jvanverth17aa0472016-01-05 10:41:27 -0800912 int left, int top, int width, int height,
cdalton397536c2016-03-25 12:15:03 -0700913 GrPixelConfig config, GrBuffer* transferBuffer,
jvanverth17aa0472016-01-05 10:41:27 -0800914 size_t offset, size_t rowBytes) {
jvanverthc3d706f2016-04-20 10:33:27 -0700915 GrGLTexture* glTex = static_cast<GrGLTexture*>(surface->asTexture());
jvanverth17aa0472016-01-05 10:41:27 -0800916
jvanverthc3d706f2016-04-20 10:33:27 -0700917 if (!check_write_and_transfer_input(glTex, surface, config)) {
jvanverth17aa0472016-01-05 10:41:27 -0800918 return false;
919 }
920
921 // For the moment, can't transfer compressed data
922 if (GrPixelConfigIsCompressed(glTex->desc().fConfig)) {
923 return false;
924 }
925
926 this->setScratchTextureUnit();
927 GL_CALL(BindTexture(glTex->target(), glTex->textureID()));
928
cdalton397536c2016-03-25 12:15:03 -0700929 SkASSERT(!transferBuffer->isMapped());
930 SkASSERT(!transferBuffer->isCPUBacked());
931 const GrGLBuffer* glBuffer = static_cast<const GrGLBuffer*>(transferBuffer);
cdaltone2e71c22016-04-07 18:13:29 -0700932 this->bindBuffer(kXferCpuToGpu_GrBufferType, glBuffer);
jvanverth17aa0472016-01-05 10:41:27 -0800933
934 bool success = false;
cblume55f2d2d2016-02-26 13:20:48 -0800935 GrMipLevel mipLevel;
jvanverthc3d706f2016-04-20 10:33:27 -0700936 mipLevel.fPixels = transferBuffer;
cblume55f2d2d2016-02-26 13:20:48 -0800937 mipLevel.fRowBytes = rowBytes;
938 SkSTArray<1, GrMipLevel> texels;
939 texels.push_back(mipLevel);
jcgregorioe7d7f902016-02-04 19:51:25 -0800940 success = this->uploadTexData(glTex->desc(), glTex->target(), kTransfer_UploadType,
cblume55f2d2d2016-02-26 13:20:48 -0800941 left, top, width, height, config, texels);
jvanverth900bd4a2016-04-29 13:53:12 -0700942 return success;
jvanverth17aa0472016-01-05 10:41:27 -0800943}
944
bsalomonf46a1242015-12-15 12:37:38 -0800945// For GL_[UN]PACK_ALIGNMENT.
946static inline GrGLint config_alignment(GrPixelConfig config) {
947 SkASSERT(!GrPixelConfigIsCompressed(config));
948 switch (config) {
949 case kAlpha_8_GrPixelConfig:
950 return 1;
951 case kRGB_565_GrPixelConfig:
952 case kRGBA_4444_GrPixelConfig:
953 case kAlpha_half_GrPixelConfig:
954 case kRGBA_half_GrPixelConfig:
955 return 2;
956 case kRGBA_8888_GrPixelConfig:
957 case kBGRA_8888_GrPixelConfig:
958 case kSRGBA_8888_GrPixelConfig:
brianosmana6359362016-03-21 06:55:37 -0700959 case kSBGRA_8888_GrPixelConfig:
bsalomonf46a1242015-12-15 12:37:38 -0800960 case kRGBA_float_GrPixelConfig:
961 return 4;
962 default:
963 return 0;
964 }
965}
966
bsalomonb15b4c12014-10-29 12:41:57 -0700967static inline GrGLenum check_alloc_error(const GrSurfaceDesc& desc,
968 const GrGLInterface* interface) {
bsalomonf2703d82014-10-28 14:33:06 -0700969 if (SkToBool(desc.fFlags & kCheckAllocation_GrSurfaceFlag)) {
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000970 return GR_GL_GET_ERROR(interface);
971 } else {
972 return CHECK_ALLOC_ERROR(interface);
973 }
974}
975
cblume55f2d2d2016-02-26 13:20:48 -0800976/**
977 * Creates storage space for the texture and fills it with texels.
978 *
979 * @param desc The surface descriptor for the texture being created.
980 * @param interface The GL interface in use.
cblume790d5132016-02-29 11:13:29 -0800981 * @param caps The capabilities of the GL device.
brianosman81a84852016-09-12 09:05:14 -0700982 * @param internalFormat The data format used for the internal storage of the texture. May be sized.
983 * @param internalFormatForTexStorage The data format used for the TexStorage API. Must be sized.
cblume55f2d2d2016-02-26 13:20:48 -0800984 * @param externalFormat The data format used for the external storage of the texture.
985 * @param externalType The type of the data used for the external storage of the texture.
986 * @param texels The texel data of the texture being created.
987 * @param baseWidth The width of the texture's base mipmap level
988 * @param baseHeight The height of the texture's base mipmap level
989 * @param succeeded Set to true if allocating and populating the texture completed
990 * without error.
991 */
bsalomone699d0c2016-03-09 06:25:15 -0800992static bool allocate_and_populate_uncompressed_texture(const GrSurfaceDesc& desc,
cblume55f2d2d2016-02-26 13:20:48 -0800993 const GrGLInterface& interface,
cblume790d5132016-02-29 11:13:29 -0800994 const GrGLCaps& caps,
cblume55f2d2d2016-02-26 13:20:48 -0800995 GrGLenum target,
996 GrGLenum internalFormat,
brianosman81a84852016-09-12 09:05:14 -0700997 GrGLenum internalFormatForTexStorage,
cblume55f2d2d2016-02-26 13:20:48 -0800998 GrGLenum externalFormat,
999 GrGLenum externalType,
1000 const SkTArray<GrMipLevel>& texels,
bsalomone699d0c2016-03-09 06:25:15 -08001001 int baseWidth, int baseHeight) {
cblume55f2d2d2016-02-26 13:20:48 -08001002 CLEAR_ERROR_BEFORE_ALLOC(&interface);
cblume790d5132016-02-29 11:13:29 -08001003
1004 bool useTexStorage = caps.isConfigTexSupportEnabled(desc.fConfig);
1005 // We can only use TexStorage if we know we will not later change the storage requirements.
1006 // This means if we may later want to add mipmaps, we cannot use TexStorage.
1007 // Right now, we cannot know if we will later add mipmaps or not.
1008 // The only time we can use TexStorage is when we already have the
1009 // mipmaps.
1010 useTexStorage &= texels.count() > 1;
1011
1012 if (useTexStorage) {
1013 // We never resize or change formats of textures.
cblume55f2d2d2016-02-26 13:20:48 -08001014 GL_ALLOC_CALL(&interface,
cblume790d5132016-02-29 11:13:29 -08001015 TexStorage2D(target,
1016 texels.count(),
brianosman81a84852016-09-12 09:05:14 -07001017 internalFormatForTexStorage,
cblume790d5132016-02-29 11:13:29 -08001018 desc.fWidth, desc.fHeight));
cblume55f2d2d2016-02-26 13:20:48 -08001019 GrGLenum error = check_alloc_error(desc, &interface);
1020 if (error != GR_GL_NO_ERROR) {
bsalomone699d0c2016-03-09 06:25:15 -08001021 return false;
cblume790d5132016-02-29 11:13:29 -08001022 } else {
1023 for (int currentMipLevel = 0; currentMipLevel < texels.count(); currentMipLevel++) {
1024 const void* currentMipData = texels[currentMipLevel].fPixels;
1025 if (currentMipData == nullptr) {
1026 continue;
1027 }
1028 int twoToTheMipLevel = 1 << currentMipLevel;
1029 int currentWidth = SkTMax(1, desc.fWidth / twoToTheMipLevel);
1030 int currentHeight = SkTMax(1, desc.fHeight / twoToTheMipLevel);
1031
1032 GR_GL_CALL(&interface,
1033 TexSubImage2D(target,
1034 currentMipLevel,
1035 0, // left
1036 0, // top
1037 currentWidth,
1038 currentHeight,
1039 externalFormat, externalType,
1040 currentMipData));
1041 }
bsalomone699d0c2016-03-09 06:25:15 -08001042 return true;
cblume790d5132016-02-29 11:13:29 -08001043 }
1044 } else {
bsalomone699d0c2016-03-09 06:25:15 -08001045 if (texels.empty()) {
cblume790d5132016-02-29 11:13:29 -08001046 GL_ALLOC_CALL(&interface,
1047 TexImage2D(target,
bsalomone699d0c2016-03-09 06:25:15 -08001048 0,
cblume790d5132016-02-29 11:13:29 -08001049 internalFormat,
bsalomone699d0c2016-03-09 06:25:15 -08001050 baseWidth,
1051 baseHeight,
cblume790d5132016-02-29 11:13:29 -08001052 0, // border
1053 externalFormat, externalType,
bsalomone699d0c2016-03-09 06:25:15 -08001054 nullptr));
cblume790d5132016-02-29 11:13:29 -08001055 GrGLenum error = check_alloc_error(desc, &interface);
1056 if (error != GR_GL_NO_ERROR) {
bsalomone699d0c2016-03-09 06:25:15 -08001057 return false;
1058 }
1059 } else {
1060 for (int currentMipLevel = 0; currentMipLevel < texels.count(); currentMipLevel++) {
1061 int twoToTheMipLevel = 1 << currentMipLevel;
1062 int currentWidth = SkTMax(1, baseWidth / twoToTheMipLevel);
1063 int currentHeight = SkTMax(1, baseHeight / twoToTheMipLevel);
1064 const void* currentMipData = texels[currentMipLevel].fPixels;
1065 // Even if curremtMipData is nullptr, continue to call TexImage2D.
1066 // This will allocate texture memory which we can later populate.
1067 GL_ALLOC_CALL(&interface,
1068 TexImage2D(target,
1069 currentMipLevel,
1070 internalFormat,
1071 currentWidth,
1072 currentHeight,
1073 0, // border
1074 externalFormat, externalType,
1075 currentMipData));
1076 GrGLenum error = check_alloc_error(desc, &interface);
1077 if (error != GR_GL_NO_ERROR) {
1078 return false;
1079 }
cblume790d5132016-02-29 11:13:29 -08001080 }
cblume55f2d2d2016-02-26 13:20:48 -08001081 }
1082 }
bsalomone699d0c2016-03-09 06:25:15 -08001083 return true;
cblume55f2d2d2016-02-26 13:20:48 -08001084}
1085
1086/**
1087 * Creates storage space for the texture and fills it with texels.
1088 *
1089 * @param desc The surface descriptor for the texture being created.
1090 * @param interface The GL interface in use.
cblume790d5132016-02-29 11:13:29 -08001091 * @param caps The capabilities of the GL device.
cblume55f2d2d2016-02-26 13:20:48 -08001092 * @param internalFormat The data format used for the internal storage of the texture.
1093 * @param texels The texel data of the texture being created.
cblume55f2d2d2016-02-26 13:20:48 -08001094 */
1095static bool allocate_and_populate_compressed_texture(const GrSurfaceDesc& desc,
1096 const GrGLInterface& interface,
cblume790d5132016-02-29 11:13:29 -08001097 const GrGLCaps& caps,
cblume55f2d2d2016-02-26 13:20:48 -08001098 GrGLenum target, GrGLenum internalFormat,
1099 const SkTArray<GrMipLevel>& texels,
1100 int baseWidth, int baseHeight) {
1101 CLEAR_ERROR_BEFORE_ALLOC(&interface);
cblume55f2d2d2016-02-26 13:20:48 -08001102
cblume790d5132016-02-29 11:13:29 -08001103 bool useTexStorage = caps.isConfigTexSupportEnabled(desc.fConfig);
1104 // We can only use TexStorage if we know we will not later change the storage requirements.
1105 // This means if we may later want to add mipmaps, we cannot use TexStorage.
1106 // Right now, we cannot know if we will later add mipmaps or not.
1107 // The only time we can use TexStorage is when we already have the
1108 // mipmaps.
1109 useTexStorage &= texels.count() > 1;
cblume55f2d2d2016-02-26 13:20:48 -08001110
cblume790d5132016-02-29 11:13:29 -08001111 if (useTexStorage) {
1112 // We never resize or change formats of textures.
cblume55f2d2d2016-02-26 13:20:48 -08001113 GL_ALLOC_CALL(&interface,
cblume790d5132016-02-29 11:13:29 -08001114 TexStorage2D(target,
1115 texels.count(),
1116 internalFormat,
1117 baseWidth, baseHeight));
cblume55f2d2d2016-02-26 13:20:48 -08001118 GrGLenum error = check_alloc_error(desc, &interface);
1119 if (error != GR_GL_NO_ERROR) {
1120 return false;
cblume790d5132016-02-29 11:13:29 -08001121 } else {
1122 for (int currentMipLevel = 0; currentMipLevel < texels.count(); currentMipLevel++) {
1123 const void* currentMipData = texels[currentMipLevel].fPixels;
1124 if (currentMipData == nullptr) {
1125 continue;
1126 }
1127
1128 int twoToTheMipLevel = 1 << currentMipLevel;
1129 int currentWidth = SkTMax(1, baseWidth / twoToTheMipLevel);
1130 int currentHeight = SkTMax(1, baseHeight / twoToTheMipLevel);
1131
1132 // Make sure that the width and height that we pass to OpenGL
1133 // is a multiple of the block size.
1134 size_t dataSize = GrCompressedFormatDataSize(desc.fConfig, currentWidth,
1135 currentHeight);
1136 GR_GL_CALL(&interface, CompressedTexSubImage2D(target,
1137 currentMipLevel,
1138 0, // left
1139 0, // top
1140 currentWidth,
1141 currentHeight,
1142 internalFormat,
1143 SkToInt(dataSize),
1144 currentMipData));
1145 }
1146 }
1147 } else {
1148 for (int currentMipLevel = 0; currentMipLevel < texels.count(); currentMipLevel++) {
1149 int twoToTheMipLevel = 1 << currentMipLevel;
1150 int currentWidth = SkTMax(1, baseWidth / twoToTheMipLevel);
1151 int currentHeight = SkTMax(1, baseHeight / twoToTheMipLevel);
1152
1153 // Make sure that the width and height that we pass to OpenGL
1154 // is a multiple of the block size.
1155 size_t dataSize = GrCompressedFormatDataSize(desc.fConfig, baseWidth, baseHeight);
1156
1157 GL_ALLOC_CALL(&interface,
1158 CompressedTexImage2D(target,
1159 currentMipLevel,
1160 internalFormat,
1161 currentWidth,
1162 currentHeight,
1163 0, // border
1164 SkToInt(dataSize),
1165 texels[currentMipLevel].fPixels));
1166
1167 GrGLenum error = check_alloc_error(desc, &interface);
1168 if (error != GR_GL_NO_ERROR) {
1169 return false;
1170 }
cblume55f2d2d2016-02-26 13:20:48 -08001171 }
1172 }
1173
1174 return true;
1175}
1176
1177/**
1178 * After a texture is created, any state which was altered during its creation
1179 * needs to be restored.
1180 *
1181 * @param interface The GL interface to use.
1182 * @param caps The capabilities of the GL device.
1183 * @param restoreGLRowLength Should the row length unpacking be restored?
1184 * @param glFlipY Did GL flip the texture vertically?
1185 */
1186static void restore_pixelstore_state(const GrGLInterface& interface, const GrGLCaps& caps,
1187 bool restoreGLRowLength, bool glFlipY) {
1188 if (restoreGLRowLength) {
1189 SkASSERT(caps.unpackRowLengthSupport());
1190 GR_GL_CALL(&interface, PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
1191 }
1192 if (glFlipY) {
1193 GR_GL_CALL(&interface, PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
1194 }
1195}
1196
bsalomon861e1032014-12-16 07:33:49 -08001197bool GrGLGpu::uploadTexData(const GrSurfaceDesc& desc,
jcgregorioe7d7f902016-02-04 19:51:25 -08001198 GrGLenum target,
jvanverth17aa0472016-01-05 10:41:27 -08001199 UploadType uploadType,
bsalomon@google.com6f379512011-11-16 20:36:03 +00001200 int left, int top, int width, int height,
1201 GrPixelConfig dataConfig,
cblume55f2d2d2016-02-26 13:20:48 -08001202 const SkTArray<GrMipLevel>& texels) {
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001203 // If we're uploading compressed data then we should be using uploadCompressedTexData
1204 SkASSERT(!GrPixelConfigIsCompressed(dataConfig));
1205
bsalomon5b30c6f2015-12-17 14:17:34 -08001206 SkASSERT(this->caps()->isConfigTexturable(desc.fConfig));
1207
cblume55f2d2d2016-02-26 13:20:48 -08001208 // texels is const.
1209 // But we may need to flip the texture vertically to prepare it.
1210 // Rather than flip in place and alter the incoming data,
1211 // we allocate a new buffer to flip into.
1212 // This means we need to make a non-const shallow copy of texels.
1213 SkTArray<GrMipLevel> texelsShallowCopy(texels);
1214
1215 for (int currentMipLevel = texelsShallowCopy.count() - 1; currentMipLevel >= 0;
1216 currentMipLevel--) {
bsalomone699d0c2016-03-09 06:25:15 -08001217 SkASSERT(texelsShallowCopy[currentMipLevel].fPixels || kTransfer_UploadType == uploadType);
cblume55f2d2d2016-02-26 13:20:48 -08001218 }
1219
1220 const GrGLInterface* interface = this->glInterface();
1221 const GrGLCaps& caps = this->glCaps();
1222
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001223 size_t bpp = GrBytesPerPixel(dataConfig);
cblume55f2d2d2016-02-26 13:20:48 -08001224
1225 if (width == 0 || height == 0) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +00001226 return false;
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001227 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001228
cblume55f2d2d2016-02-26 13:20:48 -08001229 for (int currentMipLevel = 0; currentMipLevel < texelsShallowCopy.count(); currentMipLevel++) {
1230 int twoToTheMipLevel = 1 << currentMipLevel;
1231 int currentWidth = SkTMax(1, width / twoToTheMipLevel);
1232 int currentHeight = SkTMax(1, height / twoToTheMipLevel);
1233
cblume55f2d2d2016-02-26 13:20:48 -08001234 if (currentHeight > SK_MaxS32 ||
1235 currentWidth > SK_MaxS32) {
1236 return false;
1237 }
1238 if (!GrSurfacePriv::AdjustWritePixelParams(desc.fWidth, desc.fHeight, bpp, &left, &top,
1239 &currentWidth,
1240 &currentHeight,
1241 &texelsShallowCopy[currentMipLevel].fPixels,
1242 &texelsShallowCopy[currentMipLevel].fRowBytes)) {
1243 return false;
1244 }
1245 if (currentWidth < 0 || currentHeight < 0) {
1246 return false;
1247 }
1248 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001249
bsalomon5b30c6f2015-12-17 14:17:34 -08001250 // Internal format comes from the texture desc.
bsalomon76148af2016-01-12 11:13:47 -08001251 GrGLenum internalFormat;
bsalomon5b30c6f2015-12-17 14:17:34 -08001252 // External format and type come from the upload data.
bsalomon76148af2016-01-12 11:13:47 -08001253 GrGLenum externalFormat;
1254 GrGLenum externalType;
1255 if (!this->glCaps().getTexImageFormats(desc.fConfig, dataConfig, &internalFormat,
1256 &externalFormat, &externalType)) {
1257 return false;
1258 }
brianosman81a84852016-09-12 09:05:14 -07001259 // TexStorage requires a sized format, and internalFormat may or may not be
1260 GrGLenum internalFormatForTexStorage = this->glCaps().configSizedInternalFormat(desc.fConfig);
1261
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001262 /*
bsalomon5b30c6f2015-12-17 14:17:34 -08001263 * Check whether to allocate a temporary buffer for flipping y or
bsalomon@google.com6f379512011-11-16 20:36:03 +00001264 * because our srcData has extra bytes past each row. If so, we need
1265 * to trim those off here, since GL ES may not let us specify
1266 * GL_UNPACK_ROW_LENGTH.
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001267 */
bsalomon@google.com6f379512011-11-16 20:36:03 +00001268 bool restoreGLRowLength = false;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +00001269 bool swFlipY = false;
1270 bool glFlipY = false;
cblume55f2d2d2016-02-26 13:20:48 -08001271
bsalomone699d0c2016-03-09 06:25:15 -08001272 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin && !texelsShallowCopy.empty()) {
cblume55f2d2d2016-02-26 13:20:48 -08001273 if (caps.unpackFlipYSupport()) {
1274 glFlipY = true;
1275 } else {
1276 swFlipY = true;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001277 }
cblume55f2d2d2016-02-26 13:20:48 -08001278 }
1279
1280 // in case we need a temporary, trimmed copy of the src pixels
1281 SkAutoSMalloc<128 * 128> tempStorage;
1282
1283 // find the combined size of all the mip levels and the relative offset of
1284 // each into the collective buffer
1285 size_t combined_buffer_size = 0;
1286 SkTArray<size_t> individual_mip_offsets(texelsShallowCopy.count());
1287 for (int currentMipLevel = 0; currentMipLevel < texelsShallowCopy.count(); currentMipLevel++) {
1288 int twoToTheMipLevel = 1 << currentMipLevel;
1289 int currentWidth = SkTMax(1, width / twoToTheMipLevel);
1290 int currentHeight = SkTMax(1, height / twoToTheMipLevel);
1291 const size_t trimmedSize = currentWidth * bpp * currentHeight;
1292 individual_mip_offsets.push_back(combined_buffer_size);
1293 combined_buffer_size += trimmedSize;
1294 }
1295 char* buffer = (char*)tempStorage.reset(combined_buffer_size);
1296
1297 for (int currentMipLevel = 0; currentMipLevel < texelsShallowCopy.count(); currentMipLevel++) {
cblume55f2d2d2016-02-26 13:20:48 -08001298 int twoToTheMipLevel = 1 << currentMipLevel;
1299 int currentWidth = SkTMax(1, width / twoToTheMipLevel);
1300 int currentHeight = SkTMax(1, height / twoToTheMipLevel);
1301 const size_t trimRowBytes = currentWidth * bpp;
1302
1303 /*
1304 * check whether to allocate a temporary buffer for flipping y or
1305 * because our srcData has extra bytes past each row. If so, we need
1306 * to trim those off here, since GL ES may not let us specify
1307 * GL_UNPACK_ROW_LENGTH.
1308 */
1309 restoreGLRowLength = false;
1310
1311 const size_t rowBytes = texelsShallowCopy[currentMipLevel].fRowBytes;
ericrk154349b2016-05-10 14:36:53 -07001312
1313 // TODO: This optimization should be enabled with or without mips.
1314 // For use with mips, we must set GR_GL_UNPACK_ROW_LENGTH once per
1315 // mip level, before calling glTexImage2D.
1316 const bool usesMips = texelsShallowCopy.count() > 1;
1317 if (caps.unpackRowLengthSupport() && !swFlipY && !usesMips) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001318 // can't use this for flipping, only non-neg values allowed. :(
1319 if (rowBytes != trimRowBytes) {
1320 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
cblume55f2d2d2016-02-26 13:20:48 -08001321 GR_GL_CALL(interface, PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength));
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001322 restoreGLRowLength = true;
1323 }
jvanverth17aa0472016-01-05 10:41:27 -08001324 } else if (kTransfer_UploadType != uploadType) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001325 if (trimRowBytes != rowBytes || swFlipY) {
1326 // copy data into our new storage, skipping the trailing bytes
cblume55f2d2d2016-02-26 13:20:48 -08001327 const char* src = (const char*)texelsShallowCopy[currentMipLevel].fPixels;
1328 if (swFlipY && currentHeight >= 1) {
1329 src += (currentHeight - 1) * rowBytes;
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001330 }
cblume55f2d2d2016-02-26 13:20:48 -08001331 char* dst = buffer + individual_mip_offsets[currentMipLevel];
1332 for (int y = 0; y < currentHeight; y++) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001333 memcpy(dst, src, trimRowBytes);
1334 if (swFlipY) {
1335 src -= rowBytes;
1336 } else {
1337 src += rowBytes;
1338 }
1339 dst += trimRowBytes;
1340 }
1341 // now point data to our copied version
cblume55f2d2d2016-02-26 13:20:48 -08001342 texelsShallowCopy[currentMipLevel].fPixels = buffer +
1343 individual_mip_offsets[currentMipLevel];
1344 texelsShallowCopy[currentMipLevel].fRowBytes = trimRowBytes;
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001345 }
jvanverth17aa0472016-01-05 10:41:27 -08001346 } else {
1347 return false;
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001348 }
bsalomone699d0c2016-03-09 06:25:15 -08001349 }
1350
1351 if (!texelsShallowCopy.empty()) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001352 if (glFlipY) {
cblume55f2d2d2016-02-26 13:20:48 -08001353 GR_GL_CALL(interface, PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE));
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001354 }
cblume55f2d2d2016-02-26 13:20:48 -08001355 GR_GL_CALL(interface, PixelStorei(GR_GL_UNPACK_ALIGNMENT,
1356 config_alignment(desc.fConfig)));
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001357 }
cblume55f2d2d2016-02-26 13:20:48 -08001358
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001359 bool succeeded = true;
cblume55f2d2d2016-02-26 13:20:48 -08001360 if (kNewTexture_UploadType == uploadType &&
1361 0 == left && 0 == top &&
bsalomon7e68ab72016-04-13 14:29:25 -07001362 desc.fWidth == width && desc.fHeight == height) {
bsalomone699d0c2016-03-09 06:25:15 -08001363 succeeded = allocate_and_populate_uncompressed_texture(desc, *interface, caps, target,
brianosman81a84852016-09-12 09:05:14 -07001364 internalFormat,
1365 internalFormatForTexStorage,
1366 externalFormat, externalType,
1367 texelsShallowCopy, width, height);
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001368 } else {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +00001369 if (swFlipY || glFlipY) {
bsalomon@google.com6f379512011-11-16 20:36:03 +00001370 top = desc.fHeight - (top + height);
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001371 }
cblume55f2d2d2016-02-26 13:20:48 -08001372 for (int currentMipLevel = 0; currentMipLevel < texelsShallowCopy.count();
1373 currentMipLevel++) {
1374 int twoToTheMipLevel = 1 << currentMipLevel;
1375 int currentWidth = SkTMax(1, width / twoToTheMipLevel);
1376 int currentHeight = SkTMax(1, height / twoToTheMipLevel);
cblume55f2d2d2016-02-26 13:20:48 -08001377
1378 GL_CALL(TexSubImage2D(target,
1379 currentMipLevel,
1380 left, top,
1381 currentWidth,
1382 currentHeight,
1383 externalFormat, externalType,
1384 texelsShallowCopy[currentMipLevel].fPixels));
1385 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00001386 }
1387
cblume55f2d2d2016-02-26 13:20:48 -08001388 restore_pixelstore_state(*interface, caps, restoreGLRowLength, glFlipY);
1389
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001390 return succeeded;
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001391}
1392
krajcevski145d48c2014-06-11 16:07:50 -07001393// TODO: This function is using a lot of wonky semantics like, if width == -1
piotaixre4b23142014-10-02 10:57:53 -07001394// then set width = desc.fWdith ... blah. A better way to do it might be to
krajcevski145d48c2014-06-11 16:07:50 -07001395// create a CompressedTexData struct that takes a desc/ptr and figures out
1396// the proper upload semantics. Then users can construct this function how they
1397// see fit if they want to go against the "standard" way to do it.
bsalomon861e1032014-12-16 07:33:49 -08001398bool GrGLGpu::uploadCompressedTexData(const GrSurfaceDesc& desc,
bsalomon10528f12015-10-14 12:54:52 -07001399 GrGLenum target,
cblume55f2d2d2016-02-26 13:20:48 -08001400 const SkTArray<GrMipLevel>& texels,
jvanverth17aa0472016-01-05 10:41:27 -08001401 UploadType uploadType,
krajcevski145d48c2014-06-11 16:07:50 -07001402 int left, int top, int width, int height) {
bsalomon2555ee22015-12-17 18:39:46 -08001403 SkASSERT(this->caps()->isConfigTexturable(desc.fConfig));
krajcevski9c0e6292014-06-02 07:38:14 -07001404
1405 // No support for software flip y, yet...
1406 SkASSERT(kBottomLeft_GrSurfaceOrigin != desc.fOrigin);
1407
cblume55f2d2d2016-02-26 13:20:48 -08001408 const GrGLInterface* interface = this->glInterface();
1409 const GrGLCaps& caps = this->glCaps();
1410
krajcevski145d48c2014-06-11 16:07:50 -07001411 if (-1 == width) {
1412 width = desc.fWidth;
1413 }
1414#ifdef SK_DEBUG
1415 else {
1416 SkASSERT(width <= desc.fWidth);
1417 }
1418#endif
1419
1420 if (-1 == height) {
1421 height = desc.fHeight;
1422 }
1423#ifdef SK_DEBUG
1424 else {
1425 SkASSERT(height <= desc.fHeight);
1426 }
1427#endif
1428
bsalomon76148af2016-01-12 11:13:47 -08001429 // We only need the internal format for compressed 2D textures.
1430 GrGLenum internalFormat;
cblume55f2d2d2016-02-26 13:20:48 -08001431 if (!caps.getCompressedTexImageFormats(desc.fConfig, &internalFormat)) {
bsalomon76148af2016-01-12 11:13:47 -08001432 return false;
1433 }
krajcevski9c0e6292014-06-02 07:38:14 -07001434
jvanverth17aa0472016-01-05 10:41:27 -08001435 if (kNewTexture_UploadType == uploadType) {
cblume790d5132016-02-29 11:13:29 -08001436 return allocate_and_populate_compressed_texture(desc, *interface, caps, target,
1437 internalFormat, texels, width, height);
krajcevski145d48c2014-06-11 16:07:50 -07001438 } else {
bsalomond4cb9222014-08-11 14:19:09 -07001439 // Paletted textures can't be updated.
1440 if (GR_GL_PALETTE8_RGBA8 == internalFormat) {
1441 return false;
1442 }
cblume55f2d2d2016-02-26 13:20:48 -08001443 for (int currentMipLevel = 0; currentMipLevel < texels.count(); currentMipLevel++) {
bsalomone699d0c2016-03-09 06:25:15 -08001444 SkASSERT(texels[currentMipLevel].fPixels || kTransfer_UploadType == uploadType);
cblume55f2d2d2016-02-26 13:20:48 -08001445
1446 int twoToTheMipLevel = 1 << currentMipLevel;
1447 int currentWidth = SkTMax(1, width / twoToTheMipLevel);
1448 int currentHeight = SkTMax(1, height / twoToTheMipLevel);
1449
1450 // Make sure that the width and height that we pass to OpenGL
1451 // is a multiple of the block size.
1452 size_t dataSize = GrCompressedFormatDataSize(desc.fConfig, currentWidth,
1453 currentHeight);
1454 GL_CALL(CompressedTexSubImage2D(target,
1455 currentMipLevel,
1456 left, top,
1457 currentWidth,
1458 currentHeight,
1459 internalFormat,
1460 SkToInt(dataSize),
1461 texels[currentMipLevel].fPixels));
1462 }
krajcevski145d48c2014-06-11 16:07:50 -07001463 }
krajcevski9c0e6292014-06-02 07:38:14 -07001464
bsalomond4cb9222014-08-11 14:19:09 -07001465 return true;
krajcevski9c0e6292014-06-02 07:38:14 -07001466}
1467
bsalomon424cc262015-05-22 10:37:30 -07001468static bool renderbuffer_storage_msaa(const GrGLContext& ctx,
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +00001469 int sampleCount,
1470 GrGLenum format,
1471 int width, int height) {
robertphillips@google.com6177e692013-02-28 20:16:25 +00001472 CLEAR_ERROR_BEFORE_ALLOC(ctx.interface());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +00001473 SkASSERT(GrGLCaps::kNone_MSFBOType != ctx.caps()->msFBOType());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +00001474 switch (ctx.caps()->msFBOType()) {
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +00001475 case GrGLCaps::kDesktop_ARB_MSFBOType:
1476 case GrGLCaps::kDesktop_EXT_MSFBOType:
vbuzinovdded6962015-06-12 08:59:45 -07001477 case GrGLCaps::kMixedSamples_MSFBOType:
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +00001478 case GrGLCaps::kES_3_0_MSFBOType:
1479 GL_ALLOC_CALL(ctx.interface(),
1480 RenderbufferStorageMultisample(GR_GL_RENDERBUFFER,
1481 sampleCount,
1482 format,
1483 width, height));
1484 break;
1485 case GrGLCaps::kES_Apple_MSFBOType:
1486 GL_ALLOC_CALL(ctx.interface(),
1487 RenderbufferStorageMultisampleES2APPLE(GR_GL_RENDERBUFFER,
1488 sampleCount,
1489 format,
1490 width, height));
1491 break;
1492 case GrGLCaps::kES_EXT_MsToTexture_MSFBOType:
1493 case GrGLCaps::kES_IMG_MsToTexture_MSFBOType:
1494 GL_ALLOC_CALL(ctx.interface(),
1495 RenderbufferStorageMultisampleES2EXT(GR_GL_RENDERBUFFER,
1496 sampleCount,
1497 format,
1498 width, height));
1499 break;
1500 case GrGLCaps::kNone_MSFBOType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00001501 SkFAIL("Shouldn't be here if we don't support multisampled renderbuffers.");
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +00001502 break;
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001503 }
Brian Salomon9251d4e2015-03-17 16:03:19 -04001504 return (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001505}
1506
egdanielb0e1be22015-04-22 13:27:39 -07001507bool GrGLGpu::createRenderTargetObjects(const GrSurfaceDesc& desc,
bsalomon091f60c2015-11-10 11:54:56 -08001508 const GrGLTextureInfo& texInfo,
bsalomonb15b4c12014-10-29 12:41:57 -07001509 GrGLRenderTarget::IDDesc* idDesc) {
1510 idDesc->fMSColorRenderbufferID = 0;
egdanield803f272015-03-18 13:01:52 -07001511 idDesc->fRTFBOID = 0;
kkinnunen2e6055b2016-04-22 01:48:29 -07001512 idDesc->fRTFBOOwnership = GrBackendObjectOwnership::kOwned;
egdanield803f272015-03-18 13:01:52 -07001513 idDesc->fTexFBOID = 0;
robertphillips76948d42016-05-04 12:47:41 -07001514 SkASSERT((GrGLCaps::kMixedSamples_MSFBOType == this->glCaps().msFBOType()) ==
1515 this->caps()->usesMixedSamples());
csmartdaltonf9635992016-08-10 11:09:07 -07001516 idDesc->fIsMixedSampled = desc.fSampleCnt > 0 && this->caps()->usesMixedSamples();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001517
1518 GrGLenum status;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001519
bsalomona11e5fc2015-12-18 07:59:41 -08001520 GrGLenum colorRenderbufferFormat = 0; // suppress warning
bsalomon@google.comab15d612011-08-09 12:57:56 +00001521
bsalomonb15b4c12014-10-29 12:41:57 -07001522 if (desc.fSampleCnt > 0 && GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00001523 goto FAILED;
1524 }
1525
egdanield803f272015-03-18 13:01:52 -07001526 GL_CALL(GenFramebuffers(1, &idDesc->fTexFBOID));
1527 if (!idDesc->fTexFBOID) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001528 goto FAILED;
1529 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001530
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001531 // If we are using multisampling we will create two FBOS. We render to one and then resolve to
1532 // the texture bound to the other. The exception is the IMG multisample extension. With this
1533 // extension the texture is multisampled when rendered to and then auto-resolves it when it is
1534 // rendered from.
bsalomonb15b4c12014-10-29 12:41:57 -07001535 if (desc.fSampleCnt > 0 && this->glCaps().usesMSAARenderBuffers()) {
egdanield803f272015-03-18 13:01:52 -07001536 GL_CALL(GenFramebuffers(1, &idDesc->fRTFBOID));
bsalomonb15b4c12014-10-29 12:41:57 -07001537 GL_CALL(GenRenderbuffers(1, &idDesc->fMSColorRenderbufferID));
egdanield803f272015-03-18 13:01:52 -07001538 if (!idDesc->fRTFBOID ||
bsalomona11e5fc2015-12-18 07:59:41 -08001539 !idDesc->fMSColorRenderbufferID) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001540 goto FAILED;
1541 }
bsalomon76148af2016-01-12 11:13:47 -08001542 if (!this->glCaps().getRenderbufferFormat(desc.fConfig, &colorRenderbufferFormat)) {
1543 return false;
1544 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001545 } else {
egdanield803f272015-03-18 13:01:52 -07001546 idDesc->fRTFBOID = idDesc->fTexFBOID;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001547 }
1548
egdanield803f272015-03-18 13:01:52 -07001549 // below here we may bind the FBO
1550 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
1551 if (idDesc->fRTFBOID != idDesc->fTexFBOID) {
bsalomonb15b4c12014-10-29 12:41:57 -07001552 SkASSERT(desc.fSampleCnt > 0);
1553 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, idDesc->fMSColorRenderbufferID));
bsalomon424cc262015-05-22 10:37:30 -07001554 if (!renderbuffer_storage_msaa(*fGLContext,
bsalomonb15b4c12014-10-29 12:41:57 -07001555 desc.fSampleCnt,
bsalomona11e5fc2015-12-18 07:59:41 -08001556 colorRenderbufferFormat,
bsalomonb15b4c12014-10-29 12:41:57 -07001557 desc.fWidth, desc.fHeight)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001558 goto FAILED;
1559 }
egdanield803f272015-03-18 13:01:52 -07001560 fStats.incRenderTargetBinds();
1561 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, idDesc->fRTFBOID));
1562 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon10528f12015-10-14 12:54:52 -07001563 GR_GL_COLOR_ATTACHMENT0,
1564 GR_GL_RENDERBUFFER,
1565 idDesc->fMSColorRenderbufferID));
bsalomonb15b4c12014-10-29 12:41:57 -07001566 if ((desc.fFlags & kCheckAllocation_GrSurfaceFlag) ||
1567 !this->glCaps().isConfigVerifiedColorAttachment(desc.fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001568 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1569 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
1570 goto FAILED;
1571 }
bsalomon424cc262015-05-22 10:37:30 -07001572 fGLContext->caps()->markConfigAsValidColorAttachment(desc.fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001573 }
1574 }
egdanield803f272015-03-18 13:01:52 -07001575 fStats.incRenderTargetBinds();
1576 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, idDesc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001577
bsalomonb15b4c12014-10-29 12:41:57 -07001578 if (this->glCaps().usesImplicitMSAAResolve() && desc.fSampleCnt > 0) {
egdanield803f272015-03-18 13:01:52 -07001579 GL_CALL(FramebufferTexture2DMultisample(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001580 GR_GL_COLOR_ATTACHMENT0,
bsalomon091f60c2015-11-10 11:54:56 -08001581 texInfo.fTarget,
1582 texInfo.fID, 0, desc.fSampleCnt));
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001583 } else {
egdanield803f272015-03-18 13:01:52 -07001584 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001585 GR_GL_COLOR_ATTACHMENT0,
bsalomon091f60c2015-11-10 11:54:56 -08001586 texInfo.fTarget,
1587 texInfo.fID, 0));
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001588 }
bsalomonb15b4c12014-10-29 12:41:57 -07001589 if ((desc.fFlags & kCheckAllocation_GrSurfaceFlag) ||
1590 !this->glCaps().isConfigVerifiedColorAttachment(desc.fConfig)) {
egdanield803f272015-03-18 13:01:52 -07001591 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001592 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
1593 goto FAILED;
1594 }
bsalomon424cc262015-05-22 10:37:30 -07001595 fGLContext->caps()->markConfigAsValidColorAttachment(desc.fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001596 }
1597
1598 return true;
1599
1600FAILED:
bsalomonb15b4c12014-10-29 12:41:57 -07001601 if (idDesc->fMSColorRenderbufferID) {
1602 GL_CALL(DeleteRenderbuffers(1, &idDesc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001603 }
egdanield803f272015-03-18 13:01:52 -07001604 if (idDesc->fRTFBOID != idDesc->fTexFBOID) {
1605 GL_CALL(DeleteFramebuffers(1, &idDesc->fRTFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001606 }
egdanield803f272015-03-18 13:01:52 -07001607 if (idDesc->fTexFBOID) {
1608 GL_CALL(DeleteFramebuffers(1, &idDesc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001609 }
1610 return false;
1611}
1612
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +00001613// good to set a break-point here to know when createTexture fails
1614static GrTexture* return_null_texture() {
mtklein@google.com330313a2013-08-22 15:37:26 +00001615// SkDEBUGFAIL("null texture");
halcanary96fcdcc2015-08-27 07:41:13 -07001616 return nullptr;
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +00001617}
1618
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001619#if 0 && defined(SK_DEBUG)
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +00001620static size_t as_size_t(int x) {
1621 return x;
1622}
1623#endif
1624
kkinnunen2e6055b2016-04-22 01:48:29 -07001625static GrGLTexture::IDDesc generate_gl_texture(const GrGLInterface* interface) {
cblume55f2d2d2016-02-26 13:20:48 -08001626 GrGLTexture::IDDesc idDesc;
1627 idDesc.fInfo.fID = 0;
1628 GR_GL_CALL(interface, GenTextures(1, &idDesc.fInfo.fID));
kkinnunen2e6055b2016-04-22 01:48:29 -07001629 idDesc.fOwnership = GrBackendObjectOwnership::kOwned;
cblume55f2d2d2016-02-26 13:20:48 -08001630 // When we create the texture, we only
1631 // create GL_TEXTURE_2D at the moment.
1632 // External clients can do something different.
1633 idDesc.fInfo.fTarget = GR_GL_TEXTURE_2D;
1634 return idDesc;
1635}
1636
1637static void set_initial_texture_params(const GrGLInterface* interface,
1638 const GrGLTextureInfo& info,
1639 GrGLTexture::TexParams* initialTexParams) {
1640 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
1641 // drivers have a bug where an FBO won't be complete if it includes a
1642 // texture that is not mipmap complete (considering the filter in use).
1643 // we only set a subset here so invalidate first
1644 initialTexParams->invalidate();
1645 initialTexParams->fMinFilter = GR_GL_NEAREST;
1646 initialTexParams->fMagFilter = GR_GL_NEAREST;
1647 initialTexParams->fWrapS = GR_GL_CLAMP_TO_EDGE;
1648 initialTexParams->fWrapT = GR_GL_CLAMP_TO_EDGE;
1649 GR_GL_CALL(interface, TexParameteri(info.fTarget,
1650 GR_GL_TEXTURE_MAG_FILTER,
1651 initialTexParams->fMagFilter));
1652 GR_GL_CALL(interface, TexParameteri(info.fTarget,
1653 GR_GL_TEXTURE_MIN_FILTER,
1654 initialTexParams->fMinFilter));
1655 GR_GL_CALL(interface, TexParameteri(info.fTarget,
1656 GR_GL_TEXTURE_WRAP_S,
1657 initialTexParams->fWrapS));
1658 GR_GL_CALL(interface, TexParameteri(info.fTarget,
1659 GR_GL_TEXTURE_WRAP_T,
1660 initialTexParams->fWrapT));
1661}
1662
egdanielb0e1be22015-04-22 13:27:39 -07001663GrTexture* GrGLGpu::onCreateTexture(const GrSurfaceDesc& desc,
kkinnunen2e6055b2016-04-22 01:48:29 -07001664 SkBudgeted budgeted,
cblume55f2d2d2016-02-26 13:20:48 -08001665 const SkTArray<GrMipLevel>& texels) {
bsalomon@google.com8a70eef2013-03-19 13:58:55 +00001666 // We fail if the MSAA was requested and is not available.
1667 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleCnt) {
tfarina38406c82014-10-31 07:11:12 -07001668 //SkDebugf("MSAA RT requested but not supported on this platform.");
bsalomon@google.com8a70eef2013-03-19 13:58:55 +00001669 return return_null_texture();
1670 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001671
bsalomonf2703d82014-10-28 14:33:06 -07001672 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
reed@google.comac10a2d2010-12-22 21:39:39 +00001673
bsalomonb15b4c12014-10-29 12:41:57 -07001674 GrGLTexture::IDDesc idDesc;
kkinnunen2e6055b2016-04-22 01:48:29 -07001675 idDesc.fOwnership = GrBackendObjectOwnership::kOwned;
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001676 GrGLTexture::TexParams initialTexParams;
cblume55f2d2d2016-02-26 13:20:48 -08001677 if (!this->createTextureImpl(desc, &idDesc.fInfo, renderTarget, &initialTexParams, texels)) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001678 return return_null_texture();
bsalomon@google.com6f379512011-11-16 20:36:03 +00001679 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001680
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001681 GrGLTexture* tex;
reed@google.comac10a2d2010-12-22 21:39:39 +00001682 if (renderTarget) {
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001683 // unbind the texture from the texture unit before binding it to the frame buffer
bsalomon091f60c2015-11-10 11:54:56 -08001684 GL_CALL(BindTexture(idDesc.fInfo.fTarget, 0));
bsalomon5236cf42015-01-14 10:42:08 -08001685 GrGLRenderTarget::IDDesc rtIDDesc;
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001686
kkinnunen2e6055b2016-04-22 01:48:29 -07001687 if (!this->createRenderTargetObjects(desc, idDesc.fInfo, &rtIDDesc)) {
bsalomon091f60c2015-11-10 11:54:56 -08001688 GL_CALL(DeleteTextures(1, &idDesc.fInfo.fID));
reed@google.comac10a2d2010-12-22 21:39:39 +00001689 return return_null_texture();
1690 }
kkinnunen2e6055b2016-04-22 01:48:29 -07001691 tex = new GrGLTextureRenderTarget(this, budgeted, desc, idDesc, rtIDDesc);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001692 } else {
cblume55f2d2d2016-02-26 13:20:48 -08001693 bool wasMipMapDataProvided = false;
1694 if (texels.count() > 1) {
1695 wasMipMapDataProvided = true;
1696 }
kkinnunen2e6055b2016-04-22 01:48:29 -07001697 tex = new GrGLTexture(this, budgeted, desc, idDesc, wasMipMapDataProvided);
reed@google.comac10a2d2010-12-22 21:39:39 +00001698 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001699 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
reed@google.comac10a2d2010-12-22 21:39:39 +00001700#ifdef TRACE_TEXTURE_CREATION
tfarina38406c82014-10-31 07:11:12 -07001701 SkDebugf("--- new texture [%d] size=(%d %d) config=%d\n",
brianosmanc4459f62016-07-19 08:02:20 -07001702 idDesc.fInfo.fID, desc.fWidth, desc.fHeight, desc.fConfig);
reed@google.comac10a2d2010-12-22 21:39:39 +00001703#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001704 return tex;
1705}
1706
egdanielb0e1be22015-04-22 13:27:39 -07001707GrTexture* GrGLGpu::onCreateCompressedTexture(const GrSurfaceDesc& desc,
kkinnunen2e6055b2016-04-22 01:48:29 -07001708 SkBudgeted budgeted,
cblume55f2d2d2016-02-26 13:20:48 -08001709 const SkTArray<GrMipLevel>& texels) {
krajcevski9c0e6292014-06-02 07:38:14 -07001710 // Make sure that we're not flipping Y.
egdanielb0e1be22015-04-22 13:27:39 -07001711 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
krajcevski9c0e6292014-06-02 07:38:14 -07001712 return return_null_texture();
1713 }
1714
kkinnunen2e6055b2016-04-22 01:48:29 -07001715 GrGLTexture::IDDesc idDesc = generate_gl_texture(this->glInterface());
bsalomon091f60c2015-11-10 11:54:56 -08001716 if (!idDesc.fInfo.fID) {
krajcevski9c0e6292014-06-02 07:38:14 -07001717 return return_null_texture();
1718 }
1719
1720 this->setScratchTextureUnit();
bsalomon091f60c2015-11-10 11:54:56 -08001721 GL_CALL(BindTexture(idDesc.fInfo.fTarget, idDesc.fInfo.fID));
krajcevski9c0e6292014-06-02 07:38:14 -07001722
krajcevski9c0e6292014-06-02 07:38:14 -07001723 GrGLTexture::TexParams initialTexParams;
cblume55f2d2d2016-02-26 13:20:48 -08001724 set_initial_texture_params(this->glInterface(), idDesc.fInfo, &initialTexParams);
krajcevski9c0e6292014-06-02 07:38:14 -07001725
cblume55f2d2d2016-02-26 13:20:48 -08001726 if (!this->uploadCompressedTexData(desc, idDesc.fInfo.fTarget, texels)) {
bsalomon091f60c2015-11-10 11:54:56 -08001727 GL_CALL(DeleteTextures(1, &idDesc.fInfo.fID));
krajcevski9c0e6292014-06-02 07:38:14 -07001728 return return_null_texture();
1729 }
1730
1731 GrGLTexture* tex;
kkinnunen2e6055b2016-04-22 01:48:29 -07001732 tex = new GrGLTexture(this, budgeted, desc, idDesc);
krajcevski9c0e6292014-06-02 07:38:14 -07001733 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
1734#ifdef TRACE_TEXTURE_CREATION
tfarina38406c82014-10-31 07:11:12 -07001735 SkDebugf("--- new compressed texture [%d] size=(%d %d) config=%d\n",
brianosmanc4459f62016-07-19 08:02:20 -07001736 idDesc.fInfo.fID, desc.fWidth, desc.fHeight, desc.fConfig);
krajcevski9c0e6292014-06-02 07:38:14 -07001737#endif
1738 return tex;
1739}
1740
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001741namespace {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001742
egdaniel8dc7c3a2015-04-16 11:22:42 -07001743const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001744
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001745void inline get_stencil_rb_sizes(const GrGLInterface* gl,
egdaniel8dc7c3a2015-04-16 11:22:42 -07001746 GrGLStencilAttachment::Format* format) {
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001747
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001748 // we shouldn't ever know one size and not the other
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001749 SkASSERT((kUnknownBitCount == format->fStencilBits) ==
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001750 (kUnknownBitCount == format->fTotalBits));
1751 if (kUnknownBitCount == format->fStencilBits) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001752 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001753 GR_GL_RENDERBUFFER_STENCIL_SIZE,
1754 (GrGLint*)&format->fStencilBits);
1755 if (format->fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001756 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001757 GR_GL_RENDERBUFFER_DEPTH_SIZE,
1758 (GrGLint*)&format->fTotalBits);
1759 format->fTotalBits += format->fStencilBits;
1760 } else {
1761 format->fTotalBits = format->fStencilBits;
1762 }
1763 }
1764}
1765}
1766
egdanielff1d5472015-09-10 08:37:20 -07001767int GrGLGpu::getCompatibleStencilIndex(GrPixelConfig config) {
bsalomon100b8f82015-10-28 08:37:44 -07001768 static const int kSize = 16;
bsalomon926cb022015-12-17 18:15:11 -08001769 SkASSERT(this->caps()->isConfigRenderable(config, false));
bsalomon30447372015-12-21 09:03:05 -08001770 if (!this->glCaps().hasStencilFormatBeenDeterminedForConfig(config)) {
1771 // Default to unsupported, set this if we find a stencil format that works.
1772 int firstWorkingStencilFormatIndex = -1;
egdanielff1d5472015-09-10 08:37:20 -07001773 // Create color texture
kkinnunen546eb5c2015-12-11 00:05:33 -08001774 GrGLuint colorID = 0;
egdanielff1d5472015-09-10 08:37:20 -07001775 GL_CALL(GenTextures(1, &colorID));
1776 this->setScratchTextureUnit();
1777 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, colorID));
1778 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1779 GR_GL_TEXTURE_MAG_FILTER,
1780 GR_GL_NEAREST));
1781 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1782 GR_GL_TEXTURE_MIN_FILTER,
1783 GR_GL_NEAREST));
1784 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1785 GR_GL_TEXTURE_WRAP_S,
1786 GR_GL_CLAMP_TO_EDGE));
1787 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1788 GR_GL_TEXTURE_WRAP_T,
1789 GR_GL_CLAMP_TO_EDGE));
1790
bsalomon76148af2016-01-12 11:13:47 -08001791 GrGLenum internalFormat;
1792 GrGLenum externalFormat;
1793 GrGLenum externalType;
1794 if (!this->glCaps().getTexImageFormats(config, config, &internalFormat, &externalFormat,
1795 &externalType)) {
1796 return false;
1797 }
egdanielff1d5472015-09-10 08:37:20 -07001798 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1799 GL_ALLOC_CALL(this->glInterface(), TexImage2D(GR_GL_TEXTURE_2D,
bsalomon926cb022015-12-17 18:15:11 -08001800 0,
bsalomon76148af2016-01-12 11:13:47 -08001801 internalFormat,
bsalomon100b8f82015-10-28 08:37:44 -07001802 kSize,
1803 kSize,
egdanielff1d5472015-09-10 08:37:20 -07001804 0,
bsalomon76148af2016-01-12 11:13:47 -08001805 externalFormat,
1806 externalType,
egdanielff1d5472015-09-10 08:37:20 -07001807 NULL));
bsalomon30447372015-12-21 09:03:05 -08001808 if (GR_GL_NO_ERROR != CHECK_ALLOC_ERROR(this->glInterface())) {
egdanielff1d5472015-09-10 08:37:20 -07001809 GL_CALL(DeleteTextures(1, &colorID));
bsalomon30447372015-12-21 09:03:05 -08001810 return -1;
egdanielff1d5472015-09-10 08:37:20 -07001811 }
1812
1813 // unbind the texture from the texture unit before binding it to the frame buffer
1814 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, 0));
1815
1816 // Create Framebuffer
kkinnunen546eb5c2015-12-11 00:05:33 -08001817 GrGLuint fb = 0;
egdanielff1d5472015-09-10 08:37:20 -07001818 GL_CALL(GenFramebuffers(1, &fb));
egdanielec00d942015-09-14 12:56:10 -07001819 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fb));
egdanielff1d5472015-09-10 08:37:20 -07001820 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
1821 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER,
1822 GR_GL_COLOR_ATTACHMENT0,
1823 GR_GL_TEXTURE_2D,
1824 colorID,
1825 0));
bsalomon30447372015-12-21 09:03:05 -08001826 GrGLuint sbRBID = 0;
1827 GL_CALL(GenRenderbuffers(1, &sbRBID));
egdanielff1d5472015-09-10 08:37:20 -07001828
1829 // look over formats till I find a compatible one
1830 int stencilFmtCnt = this->glCaps().stencilFormats().count();
bsalomon30447372015-12-21 09:03:05 -08001831 if (sbRBID) {
egdanielff1d5472015-09-10 08:37:20 -07001832 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbRBID));
bsalomon30447372015-12-21 09:03:05 -08001833 for (int i = 0; i < stencilFmtCnt && sbRBID; ++i) {
1834 const GrGLCaps::StencilFormat& sFmt = this->glCaps().stencilFormats()[i];
1835 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1836 GL_ALLOC_CALL(this->glInterface(), RenderbufferStorage(GR_GL_RENDERBUFFER,
1837 sFmt.fInternalFormat,
1838 kSize, kSize));
1839 if (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(this->glInterface())) {
egdanielff1d5472015-09-10 08:37:20 -07001840 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon30447372015-12-21 09:03:05 -08001841 GR_GL_STENCIL_ATTACHMENT,
egdanielff1d5472015-09-10 08:37:20 -07001842 GR_GL_RENDERBUFFER, sbRBID));
bsalomon30447372015-12-21 09:03:05 -08001843 if (sFmt.fPacked) {
1844 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1845 GR_GL_DEPTH_ATTACHMENT,
1846 GR_GL_RENDERBUFFER, sbRBID));
1847 } else {
1848 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1849 GR_GL_DEPTH_ATTACHMENT,
1850 GR_GL_RENDERBUFFER, 0));
1851 }
1852 GrGLenum status;
1853 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1854 if (status == GR_GL_FRAMEBUFFER_COMPLETE) {
1855 firstWorkingStencilFormatIndex = i;
1856 break;
1857 }
egdanielff1d5472015-09-10 08:37:20 -07001858 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1859 GR_GL_STENCIL_ATTACHMENT,
1860 GR_GL_RENDERBUFFER, 0));
1861 if (sFmt.fPacked) {
1862 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1863 GR_GL_DEPTH_ATTACHMENT,
1864 GR_GL_RENDERBUFFER, 0));
1865 }
egdanielff1d5472015-09-10 08:37:20 -07001866 }
1867 }
bsalomon30447372015-12-21 09:03:05 -08001868 GL_CALL(DeleteRenderbuffers(1, &sbRBID));
egdanielff1d5472015-09-10 08:37:20 -07001869 }
1870 GL_CALL(DeleteTextures(1, &colorID));
egdanielff1d5472015-09-10 08:37:20 -07001871 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, 0));
1872 GL_CALL(DeleteFramebuffers(1, &fb));
bsalomon30447372015-12-21 09:03:05 -08001873 fGLContext->caps()->setStencilFormatIndexForConfig(config, firstWorkingStencilFormatIndex);
egdanielff1d5472015-09-10 08:37:20 -07001874 }
bsalomon30447372015-12-21 09:03:05 -08001875 return this->glCaps().getStencilFormatIndexForConfig(config);
egdanielff1d5472015-09-10 08:37:20 -07001876}
1877
erikchen9a1ed5d2016-02-10 16:32:34 -08001878bool GrGLGpu::createTextureImpl(const GrSurfaceDesc& desc, GrGLTextureInfo* info,
cblume55f2d2d2016-02-26 13:20:48 -08001879 bool renderTarget, GrGLTexture::TexParams* initialTexParams,
1880 const SkTArray<GrMipLevel>& texels) {
erikchen9a1ed5d2016-02-10 16:32:34 -08001881 info->fID = 0;
1882 info->fTarget = GR_GL_TEXTURE_2D;
1883 GL_CALL(GenTextures(1, &(info->fID)));
1884
1885 if (!info->fID) {
1886 return false;
1887 }
1888
1889 this->setScratchTextureUnit();
1890 GL_CALL(BindTexture(info->fTarget, info->fID));
1891
1892 if (renderTarget && this->glCaps().textureUsageSupport()) {
1893 // provides a hint about how this texture will be used
1894 GL_CALL(TexParameteri(info->fTarget,
1895 GR_GL_TEXTURE_USAGE,
1896 GR_GL_FRAMEBUFFER_ATTACHMENT));
1897 }
1898
cblume55f2d2d2016-02-26 13:20:48 -08001899 if (info) {
1900 set_initial_texture_params(this->glInterface(), *info, initialTexParams);
1901 }
erikchen9a1ed5d2016-02-10 16:32:34 -08001902 if (!this->uploadTexData(desc, info->fTarget, kNewTexture_UploadType, 0, 0,
1903 desc.fWidth, desc.fHeight,
cblume55f2d2d2016-02-26 13:20:48 -08001904 desc.fConfig, texels)) {
erikchen9a1ed5d2016-02-10 16:32:34 -08001905 GL_CALL(DeleteTextures(1, &(info->fID)));
1906 return false;
1907 }
1908 return true;
1909}
1910
egdanielec00d942015-09-14 12:56:10 -07001911GrStencilAttachment* GrGLGpu::createStencilAttachmentForRenderTarget(const GrRenderTarget* rt,
1912 int width,
1913 int height) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001914 SkASSERT(width >= rt->width());
1915 SkASSERT(height >= rt->height());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001916
vbuzinovdded6962015-06-12 08:59:45 -07001917 int samples = rt->numStencilSamples();
egdaniel8dc7c3a2015-04-16 11:22:42 -07001918 GrGLStencilAttachment::IDDesc sbDesc;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001919
egdanielff1d5472015-09-10 08:37:20 -07001920 int sIdx = this->getCompatibleStencilIndex(rt->config());
bsalomon62a627b2015-12-17 09:50:47 -08001921 if (sIdx < 0) {
egdanielec00d942015-09-14 12:56:10 -07001922 return nullptr;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001923 }
egdanielff1d5472015-09-10 08:37:20 -07001924
1925 if (!sbDesc.fRenderbufferID) {
1926 GL_CALL(GenRenderbuffers(1, &sbDesc.fRenderbufferID));
1927 }
1928 if (!sbDesc.fRenderbufferID) {
egdanielec00d942015-09-14 12:56:10 -07001929 return nullptr;
egdanielff1d5472015-09-10 08:37:20 -07001930 }
1931 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbDesc.fRenderbufferID));
1932 const GrGLCaps::StencilFormat& sFmt = this->glCaps().stencilFormats()[sIdx];
1933 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1934 // we do this "if" so that we don't call the multisample
1935 // version on a GL that doesn't have an MSAA extension.
1936 if (samples > 0) {
1937 SkAssertResult(renderbuffer_storage_msaa(*fGLContext,
1938 samples,
1939 sFmt.fInternalFormat,
1940 width, height));
1941 } else {
1942 GL_ALLOC_CALL(this->glInterface(), RenderbufferStorage(GR_GL_RENDERBUFFER,
1943 sFmt.fInternalFormat,
1944 width, height));
1945 SkASSERT(GR_GL_NO_ERROR == check_alloc_error(rt->desc(), this->glInterface()));
1946 }
1947 fStats.incStencilAttachmentCreates();
1948 // After sized formats we attempt an unsized format and take
1949 // whatever sizes GL gives us. In that case we query for the size.
1950 GrGLStencilAttachment::Format format = sFmt;
1951 get_stencil_rb_sizes(this->glInterface(), &format);
egdanielec00d942015-09-14 12:56:10 -07001952 GrGLStencilAttachment* stencil = new GrGLStencilAttachment(this,
1953 sbDesc,
1954 width,
1955 height,
1956 samples,
1957 format);
1958 return stencil;
reed@google.comac10a2d2010-12-22 21:39:39 +00001959}
1960
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001961////////////////////////////////////////////////////////////////////////////////
1962
jvanverth73063dc2015-12-03 09:15:47 -08001963// GL_STREAM_DRAW triggers an optimization in Chromium's GPU process where a client's vertex buffer
1964// objects are implemented as client-side-arrays on tile-deferred architectures.
1965#define DYNAMIC_USAGE_PARAM GR_GL_STREAM_DRAW
1966
cdaltone2e71c22016-04-07 18:13:29 -07001967GrBuffer* GrGLGpu::onCreateBuffer(size_t size, GrBufferType intendedType,
cdalton1bf3e712016-04-19 10:00:02 -07001968 GrAccessPattern accessPattern, const void* data) {
1969 return GrGLBuffer::Create(this, size, intendedType, accessPattern, data);
jvanverth73063dc2015-12-03 09:15:47 -08001970}
1971
csmartdaltone0d36292016-07-29 08:14:20 -07001972InstancedRendering* GrGLGpu::onCreateInstancedRendering() {
1973 return new GLInstancedRendering(this);
1974}
1975
bsalomon3e791242014-12-17 13:43:13 -08001976void GrGLGpu::flushScissor(const GrScissorState& scissorState,
joshualitt77b13072014-10-27 14:51:01 -07001977 const GrGLIRect& rtViewport,
1978 GrSurfaceOrigin rtOrigin) {
robertphillipse85a32d2015-02-10 08:16:55 -08001979 if (scissorState.enabled()) {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001980 GrGLIRect scissor;
bsalomonb0bd4f62014-09-03 07:19:50 -07001981 scissor.setRelativeTo(rtViewport,
robertphillipse85a32d2015-02-10 08:16:55 -08001982 scissorState.rect().fLeft,
1983 scissorState.rect().fTop,
1984 scissorState.rect().width(),
1985 scissorState.rect().height(),
bsalomonb0bd4f62014-09-03 07:19:50 -07001986 rtOrigin);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001987 // if the scissor fully contains the viewport then we fall through and
1988 // disable the scissor test.
bsalomonb0bd4f62014-09-03 07:19:50 -07001989 if (!scissor.contains(rtViewport)) {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001990 if (fHWScissorSettings.fRect != scissor) {
1991 scissor.pushToGLScissor(this->glInterface());
1992 fHWScissorSettings.fRect = scissor;
1993 }
1994 if (kYes_TriState != fHWScissorSettings.fEnabled) {
1995 GL_CALL(Enable(GR_GL_SCISSOR_TEST));
1996 fHWScissorSettings.fEnabled = kYes_TriState;
1997 }
1998 return;
1999 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002000 }
joshualitt77b13072014-10-27 14:51:01 -07002001
2002 // See fall through note above
2003 this->disableScissor();
2004}
2005
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002006void GrGLGpu::flushWindowRectangles(const GrWindowRectsState& windowState,
2007 const GrGLRenderTarget* rt) {
2008 typedef GrWindowRectsState::Mode Mode;
2009 SkASSERT(!windowState.enabled() || rt->renderFBOID()); // Window rects can't be used on-screen.
2010 SkASSERT(windowState.numWindows() <= this->caps()->maxWindowRectangles());
csmartdalton28341fa2016-08-17 10:00:21 -07002011
2012 if (!this->caps()->maxWindowRectangles() ||
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002013 fHWWindowRectsState.knownEqualTo(rt->origin(), rt->getViewport(), windowState)) {
csmartdalton28341fa2016-08-17 10:00:21 -07002014 return;
csmartdalton28341fa2016-08-17 10:00:21 -07002015 }
2016
csmartdalton7535f412016-08-23 06:51:00 -07002017 // This is purely a workaround for a spurious warning generated by gcc. Otherwise the above
2018 // assert would be sufficient. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=5912
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002019 int numWindows = SkTMin(windowState.numWindows(), int(GrWindowRectangles::kMaxWindows));
2020 SkASSERT(windowState.numWindows() == numWindows);
csmartdalton7535f412016-08-23 06:51:00 -07002021
csmartdalton28341fa2016-08-17 10:00:21 -07002022 GrGLIRect glwindows[GrWindowRectangles::kMaxWindows];
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002023 const SkIRect* skwindows = windowState.windows().data();
2024 int dx = -windowState.origin().x(), dy = -windowState.origin().y();
csmartdalton7535f412016-08-23 06:51:00 -07002025 for (int i = 0; i < numWindows; ++i) {
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002026 const SkIRect& skwindow = skwindows[i].makeOffset(dx, dy);
2027 glwindows[i].setRelativeTo(rt->getViewport(), skwindow, rt->origin());
csmartdalton28341fa2016-08-17 10:00:21 -07002028 }
2029
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002030 GrGLenum glmode = (Mode::kExclusive == windowState.mode()) ? GR_GL_EXCLUSIVE : GR_GL_INCLUSIVE;
csmartdalton7535f412016-08-23 06:51:00 -07002031 GL_CALL(WindowRectangles(glmode, numWindows, glwindows->asInts()));
csmartdalton28341fa2016-08-17 10:00:21 -07002032
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002033 fHWWindowRectsState.set(rt->origin(), rt->getViewport(), windowState);
csmartdalton28341fa2016-08-17 10:00:21 -07002034}
2035
2036void GrGLGpu::disableWindowRectangles() {
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002037 if (!this->caps()->maxWindowRectangles() || fHWWindowRectsState.knownDisabled()) {
csmartdalton28341fa2016-08-17 10:00:21 -07002038 return;
2039 }
2040 GL_CALL(WindowRectangles(GR_GL_EXCLUSIVE, 0, nullptr));
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002041 fHWWindowRectsState.setDisabled();
csmartdalton28341fa2016-08-17 10:00:21 -07002042}
2043
ethannicholas28ef4452016-03-25 09:26:03 -07002044void GrGLGpu::flushMinSampleShading(float minSampleShading) {
2045 if (fHWMinSampleShading != minSampleShading) {
2046 if (minSampleShading > 0.0) {
2047 GL_CALL(Enable(GR_GL_SAMPLE_SHADING));
2048 GL_CALL(MinSampleShading(minSampleShading));
2049 }
2050 else {
2051 GL_CALL(Disable(GR_GL_SAMPLE_SHADING));
2052 }
2053 fHWMinSampleShading = minSampleShading;
2054 }
2055}
2056
bsalomon2eda5b32016-09-21 10:53:24 -07002057bool GrGLGpu::flushGLState(const GrPipeline& pipeline, const GrPrimitiveProcessor& primProc,
2058 bool willDrawPoints) {
2059 SkAutoTUnref<GrGLProgram> program(fProgramCache->refProgram(this, pipeline, primProc,
2060 willDrawPoints));
brianosman33f6b3f2016-06-02 05:49:21 -07002061 if (!program) {
2062 GrCapsDebugf(this->caps(), "Failed to create program!\n");
2063 return false;
2064 }
2065
2066 program->generateMipmaps(primProc, pipeline);
2067
egdaniel080e6732014-12-22 07:35:52 -08002068 GrXferProcessor::BlendInfo blendInfo;
egdaniel0e1853c2016-03-17 11:35:45 -07002069 pipeline.getXferProcessor().getBlendInfo(&blendInfo);
egdaniel080e6732014-12-22 07:35:52 -08002070
egdaniel080e6732014-12-22 07:35:52 -08002071 this->flushColorWrite(blendInfo.fWriteColor);
egdaniel8dd688b2015-01-22 10:16:09 -08002072 this->flushDrawFace(pipeline.getDrawFace());
ethannicholas28ef4452016-03-25 09:26:03 -07002073 this->flushMinSampleShading(primProc.getSampleShading());
bsalomonbc3d0de2014-12-15 13:45:03 -08002074
bsalomon6df86402015-06-01 10:41:49 -07002075 GrGLuint programID = program->programID();
bsalomon1f78c0a2014-12-17 09:43:13 -08002076 if (fHWProgramID != programID) {
2077 GL_CALL(UseProgram(programID));
2078 fHWProgramID = programID;
2079 }
2080
egdanield803f272015-03-18 13:01:52 -07002081 if (blendInfo.fWriteColor) {
bsalomon7f9b2e42016-01-12 13:29:26 -08002082 // Swizzle the blend to match what the shader will output.
2083 const GrSwizzle& swizzle = this->glCaps().glslCaps()->configOutputSwizzle(
egdaniel0e1853c2016-03-17 11:35:45 -07002084 pipeline.getRenderTarget()->config());
bsalomon7f9b2e42016-01-12 13:29:26 -08002085 this->flushBlend(blendInfo, swizzle);
egdanield803f272015-03-18 13:01:52 -07002086 }
bsalomon1f78c0a2014-12-17 09:43:13 -08002087
cdalton74b8d322016-04-11 14:47:28 -07002088 program->setData(primProc, pipeline);
bsalomon1f78c0a2014-12-17 09:43:13 -08002089
brianosman898235c2016-04-06 07:38:23 -07002090 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(pipeline.getRenderTarget());
egdaniel8dd688b2015-01-22 10:16:09 -08002091 this->flushStencil(pipeline.getStencil());
2092 this->flushScissor(pipeline.getScissorState(), glRT->getViewport(), glRT->origin());
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002093 this->flushWindowRectangles(pipeline.getWindowRectsState(), glRT);
cdaltonaf8bc7d2016-02-05 09:35:20 -08002094 this->flushHWAAState(glRT, pipeline.isHWAntialiasState(), !pipeline.getStencil().isDisabled());
bsalomonbc3d0de2014-12-15 13:45:03 -08002095
2096 // This must come after textures are flushed because a texture may need
egdanield803f272015-03-18 13:01:52 -07002097 // to be msaa-resolved (which will modify bound FBO state).
brianosman64d094d2016-03-25 06:01:59 -07002098 this->flushRenderTarget(glRT, nullptr, pipeline.getDisableOutputConversionToSRGB());
bsalomonbc3d0de2014-12-15 13:45:03 -08002099
2100 return true;
2101}
2102
joshualitt873ad0e2015-01-20 09:08:51 -08002103void GrGLGpu::setupGeometry(const GrPrimitiveProcessor& primProc,
egdaniel0e1853c2016-03-17 11:35:45 -07002104 const GrNonInstancedMesh& mesh,
bsalomonbc3d0de2014-12-15 13:45:03 -08002105 size_t* indexOffsetInBytes) {
csmartdalton485a1202016-07-13 10:16:32 -07002106 const GrBuffer* vbuf = mesh.vertexBuffer();
bsalomonbc3d0de2014-12-15 13:45:03 -08002107 SkASSERT(vbuf);
2108 SkASSERT(!vbuf->isMapped());
2109
cdaltone2e71c22016-04-07 18:13:29 -07002110 GrGLAttribArrayState* attribState;
egdaniel0e1853c2016-03-17 11:35:45 -07002111 if (mesh.isIndexed()) {
bsalomonbc3d0de2014-12-15 13:45:03 -08002112 SkASSERT(indexOffsetInBytes);
2113
2114 *indexOffsetInBytes = 0;
csmartdalton485a1202016-07-13 10:16:32 -07002115 const GrBuffer* ibuf = mesh.indexBuffer();
bsalomonbc3d0de2014-12-15 13:45:03 -08002116 SkASSERT(ibuf);
2117 SkASSERT(!ibuf->isMapped());
2118 *indexOffsetInBytes += ibuf->baseOffset();
cdaltone2e71c22016-04-07 18:13:29 -07002119 attribState = fHWVertexArrayState.bindInternalVertexArray(this, ibuf);
2120 } else {
2121 attribState = fHWVertexArrayState.bindInternalVertexArray(this);
bsalomonbc3d0de2014-12-15 13:45:03 -08002122 }
bsalomonbc3d0de2014-12-15 13:45:03 -08002123
joshualitt873ad0e2015-01-20 09:08:51 -08002124 int vaCount = primProc.numAttribs();
joshualitt71c92602015-01-14 08:12:47 -08002125 if (vaCount > 0) {
bsalomonbc3d0de2014-12-15 13:45:03 -08002126
joshualitt873ad0e2015-01-20 09:08:51 -08002127 GrGLsizei stride = static_cast<GrGLsizei>(primProc.getVertexStride());
bsalomonbc3d0de2014-12-15 13:45:03 -08002128
egdaniel0e1853c2016-03-17 11:35:45 -07002129 size_t vertexOffsetInBytes = stride * mesh.startVertex();
bsalomonbc3d0de2014-12-15 13:45:03 -08002130
2131 vertexOffsetInBytes += vbuf->baseOffset();
2132
bsalomonbc3d0de2014-12-15 13:45:03 -08002133 uint32_t usedAttribArraysMask = 0;
2134 size_t offset = 0;
2135
2136 for (int attribIndex = 0; attribIndex < vaCount; attribIndex++) {
joshualitt873ad0e2015-01-20 09:08:51 -08002137 const GrGeometryProcessor::Attribute& attrib = primProc.getAttrib(attribIndex);
bsalomonbc3d0de2014-12-15 13:45:03 -08002138 usedAttribArraysMask |= (1 << attribIndex);
joshualitt71c92602015-01-14 08:12:47 -08002139 GrVertexAttribType attribType = attrib.fType;
bsalomonbc3d0de2014-12-15 13:45:03 -08002140 attribState->set(this,
2141 attribIndex,
cdaltone2e71c22016-04-07 18:13:29 -07002142 vbuf,
cdalton793dc262016-02-08 10:11:47 -08002143 attribType,
bsalomonbc3d0de2014-12-15 13:45:03 -08002144 stride,
2145 reinterpret_cast<GrGLvoid*>(vertexOffsetInBytes + offset));
joshualitt71c92602015-01-14 08:12:47 -08002146 offset += attrib.fOffset;
bsalomonbc3d0de2014-12-15 13:45:03 -08002147 }
2148 attribState->disableUnusedArrays(this, usedAttribArraysMask);
2149 }
2150}
2151
csmartdalton485a1202016-07-13 10:16:32 -07002152GrGLenum GrGLGpu::bindBuffer(GrBufferType type, const GrBuffer* buffer) {
joshualitt93316b92015-10-23 09:08:08 -07002153 this->handleDirtyContext();
cdaltondeacc972016-04-06 14:26:33 -07002154
cdaltone2e71c22016-04-07 18:13:29 -07002155 // Index buffer state is tied to the vertex array.
2156 if (kIndex_GrBufferType == type) {
2157 this->bindVertexArray(0);
cdaltondeacc972016-04-06 14:26:33 -07002158 }
cdaltone2e71c22016-04-07 18:13:29 -07002159
2160 SkASSERT(type >= 0 && type <= kLast_GrBufferType);
2161 auto& bufferState = fHWBufferState[type];
2162
robertphillips8abb3702016-08-31 14:04:06 -07002163 if (buffer->uniqueID() != bufferState.fBoundBufferUniqueID) {
csmartdalton485a1202016-07-13 10:16:32 -07002164 if (buffer->isCPUBacked()) {
2165 if (!bufferState.fBufferZeroKnownBound) {
2166 GL_CALL(BindBuffer(bufferState.fGLTarget, 0));
2167 }
2168 } else {
2169 const GrGLBuffer* glBuffer = static_cast<const GrGLBuffer*>(buffer);
2170 GL_CALL(BindBuffer(bufferState.fGLTarget, glBuffer->bufferID()));
cdaltone2e71c22016-04-07 18:13:29 -07002171 }
csmartdalton485a1202016-07-13 10:16:32 -07002172 bufferState.fBufferZeroKnownBound = buffer->isCPUBacked();
robertphillips8abb3702016-08-31 14:04:06 -07002173 bufferState.fBoundBufferUniqueID = buffer->uniqueID();
cdaltone2e71c22016-04-07 18:13:29 -07002174 }
2175
2176 return bufferState.fGLTarget;
joshualitt93316b92015-10-23 09:08:08 -07002177}
2178
cdalton74b8d322016-04-11 14:47:28 -07002179void GrGLGpu::notifyBufferReleased(const GrGLBuffer* buffer) {
2180 if (buffer->hasAttachedToTexture()) {
2181 // Detach this buffer from any textures to ensure the underlying memory is freed.
robertphillips8abb3702016-08-31 14:04:06 -07002182 uint32_t uniqueID = buffer->uniqueID();
cdalton74b8d322016-04-11 14:47:28 -07002183 for (int i = fHWMaxUsedBufferTextureUnit; i >= 0; --i) {
2184 auto& buffTex = fHWBufferTextures[i];
2185 if (uniqueID != buffTex.fAttachedBufferUniqueID) {
2186 continue;
2187 }
2188 if (i == fHWMaxUsedBufferTextureUnit) {
2189 --fHWMaxUsedBufferTextureUnit;
2190 }
2191
2192 this->setTextureUnit(i);
2193 if (!buffTex.fKnownBound) {
2194 SkASSERT(buffTex.fTextureID);
2195 GL_CALL(BindTexture(GR_GL_TEXTURE_BUFFER, buffTex.fTextureID));
2196 buffTex.fKnownBound = true;
2197 }
2198 GL_CALL(TexBuffer(GR_GL_TEXTURE_BUFFER,
2199 this->glCaps().configSizedInternalFormat(buffTex.fTexelConfig), 0));
2200 }
2201 }
2202}
2203
bsalomon861e1032014-12-16 07:33:49 -08002204void GrGLGpu::disableScissor() {
bsalomon@google.coma3201942012-06-21 19:58:20 +00002205 if (kNo_TriState != fHWScissorSettings.fEnabled) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +00002206 GL_CALL(Disable(GR_GL_SCISSOR_TEST));
bsalomon@google.coma3201942012-06-21 19:58:20 +00002207 fHWScissorSettings.fEnabled = kNo_TriState;
2208 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00002209 }
2210}
2211
csmartdalton29df7602016-08-31 11:55:52 -07002212void GrGLGpu::clear(const GrFixedClip& clip, GrColor color, GrRenderTarget* target) {
egdaniel9cb63402016-06-23 08:37:05 -07002213 this->handleDirtyContext();
2214
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00002215 // parent class should never let us get here with no RT
bsalomon49f085d2014-09-05 13:34:00 -07002216 SkASSERT(target);
bsalomonb0bd4f62014-09-03 07:19:50 -07002217 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00002218
csmartdalton29df7602016-08-31 11:55:52 -07002219 this->flushRenderTarget(glRT, clip.scissorEnabled() ? &clip.scissorRect() : nullptr);
2220 this->flushScissor(clip.scissorState(), glRT->getViewport(), glRT->origin());
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002221 this->flushWindowRectangles(clip.windowRectsState(), glRT);
bsalomon@google.com74b98712011-11-11 19:46:16 +00002222
2223 GrGLfloat r, g, b, a;
2224 static const GrGLfloat scale255 = 1.f / 255.f;
2225 a = GrColorUnpackA(color) * scale255;
2226 GrGLfloat scaleRGB = scale255;
bsalomon@google.com74b98712011-11-11 19:46:16 +00002227 r = GrColorUnpackR(color) * scaleRGB;
2228 g = GrColorUnpackG(color) * scaleRGB;
2229 b = GrColorUnpackB(color) * scaleRGB;
2230
2231 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002232 fHWWriteToColor = kYes_TriState;
bsalomon@google.com74b98712011-11-11 19:46:16 +00002233 GL_CALL(ClearColor(r, g, b, a));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002234 GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT));
reed@google.comac10a2d2010-12-22 21:39:39 +00002235}
2236
bsalomon861e1032014-12-16 07:33:49 -08002237void GrGLGpu::clearStencil(GrRenderTarget* target) {
halcanary96fcdcc2015-08-27 07:41:13 -07002238 if (nullptr == target) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +00002239 return;
2240 }
bsalomonb0bd4f62014-09-03 07:19:50 -07002241 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
egdanield803f272015-03-18 13:01:52 -07002242 this->flushRenderTarget(glRT, &SkIRect::EmptyIRect());
bsalomon@google.com8295dc12011-05-02 12:53:34 +00002243
joshualitt77b13072014-10-27 14:51:01 -07002244 this->disableScissor();
csmartdalton28341fa2016-08-17 10:00:21 -07002245 this->disableWindowRectangles();
robertphillips@google.com730ebe52012-04-16 16:33:13 +00002246
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002247 GL_CALL(StencilMask(0xffffffff));
2248 GL_CALL(ClearStencil(0));
2249 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00002250 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00002251}
2252
csmartdalton29df7602016-08-31 11:55:52 -07002253void GrGLGpu::clearStencilClip(const GrFixedClip& clip,
2254 bool insideStencilMask,
2255 GrRenderTarget* target) {
bsalomon49f085d2014-09-05 13:34:00 -07002256 SkASSERT(target);
egdaniel9cb63402016-06-23 08:37:05 -07002257 this->handleDirtyContext();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00002258
egdaniel8dc7c3a2015-04-16 11:22:42 -07002259 GrStencilAttachment* sb = target->renderTargetPriv().getStencilAttachment();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00002260 // this should only be called internally when we know we have a
2261 // stencil buffer.
bsalomon6bc1b5f2015-02-23 09:06:38 -08002262 SkASSERT(sb);
2263 GrGLint stencilBitCount = sb->bits();
bsalomon@google.comab3dee52011-08-29 15:18:41 +00002264#if 0
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00002265 SkASSERT(stencilBitCount > 0);
twiz@google.com0f31ca72011-03-18 17:38:11 +00002266 GrGLint clipStencilMask = (1 << (stencilBitCount - 1));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00002267#else
2268 // we could just clear the clip bit but when we go through
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00002269 // ANGLE a partial stencil mask will cause clears to be
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00002270 // turned into draws. Our contract on GrDrawTarget says that
2271 // changing the clip between stencil passes may or may not
2272 // zero the client's clip bits. So we just clear the whole thing.
twiz@google.com0f31ca72011-03-18 17:38:11 +00002273 static const GrGLint clipStencilMask = ~0;
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00002274#endif
bsalomon@google.comab3dee52011-08-29 15:18:41 +00002275 GrGLint value;
csmartdalton29df7602016-08-31 11:55:52 -07002276 if (insideStencilMask) {
bsalomon@google.comab3dee52011-08-29 15:18:41 +00002277 value = (1 << (stencilBitCount - 1));
2278 } else {
2279 value = 0;
2280 }
bsalomonb0bd4f62014-09-03 07:19:50 -07002281 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
egdanield803f272015-03-18 13:01:52 -07002282 this->flushRenderTarget(glRT, &SkIRect::EmptyIRect());
bsalomon@google.coma3201942012-06-21 19:58:20 +00002283
csmartdalton29df7602016-08-31 11:55:52 -07002284 this->flushScissor(clip.scissorState(), glRT->getViewport(), glRT->origin());
csmartdaltonbf4a8f92016-09-06 10:01:06 -07002285 this->flushWindowRectangles(clip.windowRectsState(), glRT);
bsalomon@google.coma3201942012-06-21 19:58:20 +00002286
caryclark@google.comcf6285b2012-06-06 12:09:01 +00002287 GL_CALL(StencilMask((uint32_t) clipStencilMask));
bsalomon@google.comab3dee52011-08-29 15:18:41 +00002288 GL_CALL(ClearStencil(value));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002289 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00002290 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00002291}
2292
bsalomon39826022015-07-23 08:07:21 -07002293static bool read_pixels_pays_for_y_flip(GrRenderTarget* renderTarget, const GrGLCaps& caps,
2294 int width, int height, GrPixelConfig config,
2295 size_t rowBytes) {
2296 // If this render target is already TopLeft, we don't need to flip.
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00002297 if (kTopLeft_GrSurfaceOrigin == renderTarget->origin()) {
2298 return false;
2299 }
2300
bsalomon494aa592015-07-23 11:45:02 -07002301 // If the read is really small or smaller than the min texture size, don't force a draw.
bsalomon100b8f82015-10-28 08:37:44 -07002302 static const int kMinSize = 32;
2303 if (width < kMinSize || height < kMinSize) {
bsalomon494aa592015-07-23 11:45:02 -07002304 return false;
2305 }
2306
bsalomon@google.com56d11e02011-11-30 19:59:08 +00002307 // if GL can do the flip then we'll never pay for it.
bsalomon39826022015-07-23 08:07:21 -07002308 if (caps.packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00002309 return false;
2310 }
2311
2312 // If we have to do memcpy to handle non-trim rowBytes then we
bsalomon@google.com7107fa72011-11-10 14:54:14 +00002313 // get the flip for free. Otherwise it costs.
bsalomon39826022015-07-23 08:07:21 -07002314 // Note that we're assuming that 0 rowBytes has already been handled and that the width has been
2315 // clipped.
2316 return caps.packRowLengthSupport() || GrBytesPerPixel(config) * width == rowBytes;
2317}
2318
bsalomon1aa20292016-01-22 08:16:09 -08002319bool GrGLGpu::readPixelsSupported(GrRenderTarget* target, GrPixelConfig readConfig) {
2320 auto bindRenderTarget = [this, target]() -> bool {
2321 this->flushRenderTarget(static_cast<GrGLRenderTarget*>(target), &SkIRect::EmptyIRect());
2322 return true;
2323 };
2324 auto getIntegerv = [this](GrGLenum query, GrGLint* value) {
2325 GR_GL_GetIntegerv(this->glInterface(), query, value);
2326 };
2327 GrPixelConfig rtConfig = target->config();
2328 return this->glCaps().readPixelsSupported(rtConfig, readConfig, getIntegerv, bindRenderTarget);
2329}
2330
2331bool GrGLGpu::readPixelsSupported(GrPixelConfig rtConfig, GrPixelConfig readConfig) {
2332 auto bindRenderTarget = [this, rtConfig]() -> bool {
2333 GrTextureDesc desc;
2334 desc.fConfig = rtConfig;
2335 desc.fWidth = desc.fHeight = 16;
2336 desc.fFlags = kRenderTarget_GrSurfaceFlag;
bsalomone699d0c2016-03-09 06:25:15 -08002337 SkAutoTUnref<GrTexture> temp(this->createTexture(desc,
2338 SkBudgeted::kNo));
bsalomon1aa20292016-01-22 08:16:09 -08002339 if (!temp) {
2340 return false;
2341 }
2342 GrGLRenderTarget* glrt = static_cast<GrGLRenderTarget*>(temp->asRenderTarget());
2343 this->flushRenderTarget(glrt, &SkIRect::EmptyIRect());
2344 return true;
2345 };
2346 auto getIntegerv = [this](GrGLenum query, GrGLint* value) {
2347 GR_GL_GetIntegerv(this->glInterface(), query, value);
2348 };
2349 return this->glCaps().readPixelsSupported(rtConfig, readConfig, getIntegerv, bindRenderTarget);
2350}
2351
2352bool GrGLGpu::readPixelsSupported(GrSurface* surfaceForConfig, GrPixelConfig readConfig) {
2353 if (GrRenderTarget* rt = surfaceForConfig->asRenderTarget()) {
2354 return this->readPixelsSupported(rt, readConfig);
2355 } else {
2356 GrPixelConfig config = surfaceForConfig->config();
2357 return this->readPixelsSupported(config, readConfig);
2358 }
2359}
2360
bsalomone9573312016-01-25 14:33:25 -08002361static bool requires_srgb_conversion(GrPixelConfig a, GrPixelConfig b) {
2362 if (GrPixelConfigIsSRGB(a)) {
2363 return !GrPixelConfigIsSRGB(b) && !GrPixelConfigIsAlphaOnly(b);
2364 } else if (GrPixelConfigIsSRGB(b)) {
2365 return !GrPixelConfigIsSRGB(a) && !GrPixelConfigIsAlphaOnly(a);
2366 }
2367 return false;
2368}
2369
bsalomonf0674512015-07-28 13:26:15 -07002370bool GrGLGpu::onGetReadPixelsInfo(GrSurface* srcSurface, int width, int height, size_t rowBytes,
2371 GrPixelConfig readConfig, DrawPreference* drawPreference,
2372 ReadPixelTempDrawInfo* tempDrawInfo) {
bsalomone9573312016-01-25 14:33:25 -08002373 GrPixelConfig srcConfig = srcSurface->config();
bsalomon1aa20292016-01-22 08:16:09 -08002374
bsalomone9573312016-01-25 14:33:25 -08002375 // These settings we will always want if a temp draw is performed.
bsalomon39826022015-07-23 08:07:21 -07002376 tempDrawInfo->fTempSurfaceDesc.fFlags = kRenderTarget_GrSurfaceFlag;
2377 tempDrawInfo->fTempSurfaceDesc.fWidth = width;
2378 tempDrawInfo->fTempSurfaceDesc.fHeight = height;
2379 tempDrawInfo->fTempSurfaceDesc.fSampleCnt = 0;
2380 tempDrawInfo->fTempSurfaceDesc.fOrigin = kTopLeft_GrSurfaceOrigin; // no CPU y-flip for TL.
bsalomonb117ff12016-07-19 07:24:40 -07002381 tempDrawInfo->fTempSurfaceFit = this->glCaps().partialFBOReadIsSlow() ? SkBackingFit::kExact
2382 : SkBackingFit::kApprox;
bsalomone9573312016-01-25 14:33:25 -08002383 // For now assume no swizzling, we may change that below.
2384 tempDrawInfo->fSwizzle = GrSwizzle::RGBA();
2385
2386 // Depends on why we need/want a temp draw. Start off assuming no change, the surface we read
2387 // from will be srcConfig and we will read readConfig pixels from it.
2388 // Not that if we require a draw and return a non-renderable format for the temp surface the
2389 // base class will fail for us.
2390 tempDrawInfo->fTempSurfaceDesc.fConfig = srcConfig;
2391 tempDrawInfo->fReadConfig = readConfig;
2392
2393 if (requires_srgb_conversion(srcConfig, readConfig)) {
2394 if (!this->readPixelsSupported(readConfig, readConfig)) {
2395 return false;
2396 }
2397 // Draw to do srgb to linear conversion or vice versa.
2398 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
2399 tempDrawInfo->fTempSurfaceDesc.fConfig = readConfig;
2400 tempDrawInfo->fReadConfig = readConfig;
2401 return true;
2402 }
2403
2404 GrRenderTarget* srcAsRT = srcSurface->asRenderTarget();
2405 if (!srcAsRT) {
2406 // For now keep assuming the draw is not a format transformation, just a draw to get to a
2407 // RT. We may add additional transformations below.
2408 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
2409 }
bsalomon1aa20292016-01-22 08:16:09 -08002410 if (this->glCaps().rgba8888PixelsOpsAreSlow() && kRGBA_8888_GrPixelConfig == readConfig &&
2411 this->readPixelsSupported(kBGRA_8888_GrPixelConfig, kBGRA_8888_GrPixelConfig)) {
bsalomon39826022015-07-23 08:07:21 -07002412 tempDrawInfo->fTempSurfaceDesc.fConfig = kBGRA_8888_GrPixelConfig;
bsalomon6c9cd552016-01-22 07:17:34 -08002413 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
2414 tempDrawInfo->fReadConfig = kBGRA_8888_GrPixelConfig;
bsalomonb411b3b2015-07-31 09:34:24 -07002415 ElevateDrawPreference(drawPreference, kGpuPrefersDraw_DrawPreference);
ericrkb4ecabd2016-03-11 15:18:20 -08002416 } else if (this->glCaps().rgbaToBgraReadbackConversionsAreSlow() &&
bsalomon39826022015-07-23 08:07:21 -07002417 GrBytesPerPixel(readConfig) == 4 &&
bsalomon1aa20292016-01-22 08:16:09 -08002418 GrPixelConfigSwapRAndB(readConfig) == srcConfig &&
2419 this->readPixelsSupported(srcSurface, srcConfig)) {
bsalomon6c9cd552016-01-22 07:17:34 -08002420 // Mesa 3D takes a slow path on when reading back BGRA from an RGBA surface and vice-versa.
bsalomon39826022015-07-23 08:07:21 -07002421 // Better to do a draw with a R/B swap and then read as the original config.
2422 tempDrawInfo->fTempSurfaceDesc.fConfig = srcConfig;
bsalomon6c9cd552016-01-22 07:17:34 -08002423 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
2424 tempDrawInfo->fReadConfig = srcConfig;
bsalomonf0674512015-07-28 13:26:15 -07002425 ElevateDrawPreference(drawPreference, kGpuPrefersDraw_DrawPreference);
bsalomon1aa20292016-01-22 08:16:09 -08002426 } else if (!this->readPixelsSupported(srcSurface, readConfig)) {
2427 if (readConfig == kBGRA_8888_GrPixelConfig &&
2428 this->glCaps().isConfigRenderable(kRGBA_8888_GrPixelConfig, false) &&
2429 this->readPixelsSupported(kRGBA_8888_GrPixelConfig, kRGBA_8888_GrPixelConfig)) {
bsalomone9573312016-01-25 14:33:25 -08002430 // We're trying to read BGRA but it's not supported. If RGBA is renderable and
2431 // we can read it back, then do a swizzling draw to a RGBA and read it back (which
2432 // will effectively be BGRA).
bsalomon1aa20292016-01-22 08:16:09 -08002433 tempDrawInfo->fTempSurfaceDesc.fConfig = kRGBA_8888_GrPixelConfig;
2434 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
2435 tempDrawInfo->fReadConfig = kRGBA_8888_GrPixelConfig;
2436 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
brianosmana6359362016-03-21 06:55:37 -07002437 } else if (readConfig == kSBGRA_8888_GrPixelConfig &&
2438 this->glCaps().isConfigRenderable(kSRGBA_8888_GrPixelConfig, false) &&
2439 this->readPixelsSupported(kSRGBA_8888_GrPixelConfig, kSRGBA_8888_GrPixelConfig)) {
2440 // We're trying to read sBGRA but it's not supported. If sRGBA is renderable and
2441 // we can read it back, then do a swizzling draw to a sRGBA and read it back (which
2442 // will effectively be sBGRA).
2443 tempDrawInfo->fTempSurfaceDesc.fConfig = kSRGBA_8888_GrPixelConfig;
2444 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
2445 tempDrawInfo->fReadConfig = kSRGBA_8888_GrPixelConfig;
2446 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
bsalomone9573312016-01-25 14:33:25 -08002447 } else if (readConfig == kAlpha_8_GrPixelConfig) {
2448 // onReadPixels implements a fallback for cases where we are want to read kAlpha_8,
2449 // it's unsupported, but 32bit RGBA reads are supported.
2450 // Don't attempt to do any srgb conversions since we only care about alpha.
2451 GrPixelConfig cpuTempConfig = kRGBA_8888_GrPixelConfig;
2452 if (GrPixelConfigIsSRGB(srcSurface->config())) {
2453 cpuTempConfig = kSRGBA_8888_GrPixelConfig;
2454 }
2455 if (!this->readPixelsSupported(srcSurface, cpuTempConfig)) {
2456 // If we can't read RGBA from the src try to draw to a kRGBA_8888 (or kSRGBA_8888)
2457 // first and then onReadPixels will read that to a 32bit temporary buffer.
2458 if (this->caps()->isConfigRenderable(cpuTempConfig, false)) {
2459 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
2460 tempDrawInfo->fTempSurfaceDesc.fConfig = cpuTempConfig;
2461 tempDrawInfo->fReadConfig = kAlpha_8_GrPixelConfig;
2462 } else {
2463 return false;
2464 }
2465 } else {
2466 SkASSERT(tempDrawInfo->fTempSurfaceDesc.fConfig == srcConfig);
2467 SkASSERT(tempDrawInfo->fReadConfig == kAlpha_8_GrPixelConfig);
2468 }
bsalomone6d665e2016-03-10 07:22:25 -08002469 } else if (this->caps()->isConfigRenderable(readConfig, false) &&
2470 this->readPixelsSupported(readConfig, readConfig)) {
2471 // Do a draw to convert from the src config to the read config.
2472 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
2473 tempDrawInfo->fTempSurfaceDesc.fConfig = readConfig;
2474 tempDrawInfo->fReadConfig = readConfig;
bsalomon1aa20292016-01-22 08:16:09 -08002475 } else {
2476 return false;
2477 }
bsalomon39826022015-07-23 08:07:21 -07002478 }
2479
bsalomon1aa20292016-01-22 08:16:09 -08002480 if (srcAsRT &&
2481 read_pixels_pays_for_y_flip(srcAsRT, this->glCaps(), width, height, readConfig, rowBytes)) {
bsalomonf0674512015-07-28 13:26:15 -07002482 ElevateDrawPreference(drawPreference, kGpuPrefersDraw_DrawPreference);
bsalomon39826022015-07-23 08:07:21 -07002483 }
2484
bsalomon39826022015-07-23 08:07:21 -07002485 return true;
bsalomon@google.comc4364992011-11-07 15:54:49 +00002486}
2487
bsalomon6cb3cbe2015-07-30 07:34:27 -07002488bool GrGLGpu::onReadPixels(GrSurface* surface,
bsalomon@google.comc6980972011-11-02 19:57:21 +00002489 int left, int top,
2490 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +00002491 GrPixelConfig config,
2492 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00002493 size_t rowBytes) {
bsalomon6cb3cbe2015-07-30 07:34:27 -07002494 SkASSERT(surface);
bsalomon39826022015-07-23 08:07:21 -07002495
bsalomone9573312016-01-25 14:33:25 -08002496 GrGLRenderTarget* renderTarget = static_cast<GrGLRenderTarget*>(surface->asRenderTarget());
2497 if (!renderTarget) {
bsalomon6cb3cbe2015-07-30 07:34:27 -07002498 return false;
2499 }
2500
bsalomon16921ec2015-07-30 15:34:56 -07002501 // OpenGL doesn't do sRGB <-> linear conversions when reading and writing pixels.
bsalomone9573312016-01-25 14:33:25 -08002502 if (requires_srgb_conversion(surface->config(), config)) {
2503 return false;
2504 }
2505
2506 // We have a special case fallback for reading eight bit alpha. We will read back all four 8
2507 // bit channels as RGBA and then extract A.
2508 if (!this->readPixelsSupported(renderTarget, config)) {
2509 // Don't attempt to do any srgb conversions since we only care about alpha.
2510 GrPixelConfig tempConfig = kRGBA_8888_GrPixelConfig;
2511 if (GrPixelConfigIsSRGB(renderTarget->config())) {
2512 tempConfig = kSRGBA_8888_GrPixelConfig;
2513 }
2514 if (kAlpha_8_GrPixelConfig == config &&
2515 this->readPixelsSupported(renderTarget, tempConfig)) {
2516 SkAutoTDeleteArray<uint32_t> temp(new uint32_t[width * height * 4]);
2517 if (this->onReadPixels(renderTarget, left, top, width, height, tempConfig, temp.get(),
2518 width*4)) {
2519 uint8_t* dst = reinterpret_cast<uint8_t*>(buffer);
2520 for (int j = 0; j < height; ++j) {
2521 for (int i = 0; i < width; ++i) {
2522 dst[j*rowBytes + i] = (0xFF000000U & temp[j*width+i]) >> 24;
2523 }
2524 }
2525 return true;
2526 }
2527 }
bsalomon16921ec2015-07-30 15:34:56 -07002528 return false;
2529 }
2530
bsalomon76148af2016-01-12 11:13:47 -08002531 GrGLenum externalFormat;
2532 GrGLenum externalType;
bsalomone9573312016-01-25 14:33:25 -08002533 if (!this->glCaps().getReadPixelsFormat(renderTarget->config(), config, &externalFormat,
bsalomon76148af2016-01-12 11:13:47 -08002534 &externalType)) {
2535 return false;
2536 }
bsalomon6cb3cbe2015-07-30 07:34:27 -07002537 bool flipY = kBottomLeft_GrSurfaceOrigin == surface->origin();
bsalomon@google.comc4364992011-11-07 15:54:49 +00002538
bsalomon@google.comc6980972011-11-02 19:57:21 +00002539 // resolve the render target if necessary
bsalomone9573312016-01-25 14:33:25 -08002540 switch (renderTarget->getResolveType()) {
egdanield803f272015-03-18 13:01:52 -07002541 case GrGLRenderTarget::kCantResolve_ResolveType:
2542 return false;
2543 case GrGLRenderTarget::kAutoResolves_ResolveType:
bsalomone9573312016-01-25 14:33:25 -08002544 this->flushRenderTarget(renderTarget, &SkIRect::EmptyIRect());
egdanield803f272015-03-18 13:01:52 -07002545 break;
2546 case GrGLRenderTarget::kCanResolve_ResolveType:
bsalomone9573312016-01-25 14:33:25 -08002547 this->onResolveRenderTarget(renderTarget);
egdanield803f272015-03-18 13:01:52 -07002548 // we don't track the state of the READ FBO ID.
2549 fStats.incRenderTargetBinds();
bsalomone9573312016-01-25 14:33:25 -08002550 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER, renderTarget->textureFBOID()));
egdanield803f272015-03-18 13:01:52 -07002551 break;
2552 default:
2553 SkFAIL("Unknown resolve type");
reed@google.comac10a2d2010-12-22 21:39:39 +00002554 }
2555
bsalomone9573312016-01-25 14:33:25 -08002556 const GrGLIRect& glvp = renderTarget->getViewport();
bsalomon@google.comd302f142011-03-03 13:54:13 +00002557
bsalomon@google.com8895a7a2011-02-18 16:09:55 +00002558 // the read rect is viewport-relative
2559 GrGLIRect readRect;
bsalomone9573312016-01-25 14:33:25 -08002560 readRect.setRelativeTo(glvp, left, top, width, height, renderTarget->origin());
rmistry@google.comfbfcd562012-08-23 18:09:54 +00002561
bsalomon9d02b262016-02-01 12:49:30 -08002562 size_t bytesPerPixel = GrBytesPerPixel(config);
2563 size_t tightRowBytes = bytesPerPixel * width;
egdaniel6d901da2015-07-30 12:02:15 -07002564
bsalomon@google.comc6980972011-11-02 19:57:21 +00002565 size_t readDstRowBytes = tightRowBytes;
2566 void* readDst = buffer;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00002567
bsalomon@google.comc6980972011-11-02 19:57:21 +00002568 // determine if GL can read using the passed rowBytes or if we need
2569 // a scratch buffer.
joshualitt29f86792015-05-29 08:06:48 -07002570 SkAutoSMalloc<32 * sizeof(GrColor)> scratch;
bsalomon@google.comc6980972011-11-02 19:57:21 +00002571 if (rowBytes != tightRowBytes) {
bsalomon9d02b262016-02-01 12:49:30 -08002572 if (this->glCaps().packRowLengthSupport() && !(rowBytes % bytesPerPixel)) {
skia.committer@gmail.com4677acc2013-10-17 07:02:33 +00002573 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH,
bsalomon9d02b262016-02-01 12:49:30 -08002574 static_cast<GrGLint>(rowBytes / bytesPerPixel)));
bsalomon@google.comc6980972011-11-02 19:57:21 +00002575 readDstRowBytes = rowBytes;
2576 } else {
2577 scratch.reset(tightRowBytes * height);
2578 readDst = scratch.get();
2579 }
2580 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00002581 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00002582 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 1));
2583 }
bsalomonf46a1242015-12-15 12:37:38 -08002584 GL_CALL(PixelStorei(GR_GL_PACK_ALIGNMENT, config_alignment(config)));
2585
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002586 GL_CALL(ReadPixels(readRect.fLeft, readRect.fBottom,
2587 readRect.fWidth, readRect.fHeight,
bsalomon76148af2016-01-12 11:13:47 -08002588 externalFormat, externalType, readDst));
bsalomon@google.comc6980972011-11-02 19:57:21 +00002589 if (readDstRowBytes != tightRowBytes) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00002590 SkASSERT(this->glCaps().packRowLengthSupport());
bsalomon@google.comc6980972011-11-02 19:57:21 +00002591 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
2592 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00002593 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00002594 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 0));
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00002595 flipY = false;
bsalomon@google.com56d11e02011-11-30 19:59:08 +00002596 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002597
2598 // now reverse the order of the rows, since GL's are bottom-to-top, but our
bsalomon@google.comc6980972011-11-02 19:57:21 +00002599 // API presents top-to-bottom. We must preserve the padding contents. Note
2600 // that the above readPixels did not overwrite the padding.
2601 if (readDst == buffer) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00002602 SkASSERT(rowBytes == readDstRowBytes);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00002603 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00002604 scratch.reset(tightRowBytes);
2605 void* tmpRow = scratch.get();
2606 // flip y in-place by rows
2607 const int halfY = height >> 1;
2608 char* top = reinterpret_cast<char*>(buffer);
2609 char* bottom = top + (height - 1) * rowBytes;
2610 for (int y = 0; y < halfY; y++) {
2611 memcpy(tmpRow, top, tightRowBytes);
2612 memcpy(top, bottom, tightRowBytes);
2613 memcpy(bottom, tmpRow, tightRowBytes);
2614 top += rowBytes;
2615 bottom -= rowBytes;
2616 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00002617 }
2618 } else {
bsalomon9d02b262016-02-01 12:49:30 -08002619 SkASSERT(readDst != buffer);
2620 SkASSERT(rowBytes != tightRowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +00002621 // copy from readDst to buffer while flipping y
caryclark@google.comcf6285b2012-06-06 12:09:01 +00002622 // const int halfY = height >> 1;
bsalomon@google.comc6980972011-11-02 19:57:21 +00002623 const char* src = reinterpret_cast<const char*>(readDst);
bsalomon@google.comc4364992011-11-07 15:54:49 +00002624 char* dst = reinterpret_cast<char*>(buffer);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00002625 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00002626 dst += (height-1) * rowBytes;
2627 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00002628 for (int y = 0; y < height; y++) {
2629 memcpy(dst, src, tightRowBytes);
2630 src += readDstRowBytes;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00002631 if (!flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00002632 dst += rowBytes;
2633 } else {
2634 dst -= rowBytes;
2635 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002636 }
2637 }
2638 return true;
2639}
2640
egdaniel9cb63402016-06-23 08:37:05 -07002641GrGpuCommandBuffer* GrGLGpu::createCommandBuffer(
2642 GrRenderTarget* target,
2643 const GrGpuCommandBuffer::LoadAndStoreInfo& colorInfo,
2644 const GrGpuCommandBuffer::LoadAndStoreInfo& stencilInfo) {
egdaniel066df7c2016-06-08 14:02:27 -07002645 return new GrGLGpuCommandBuffer(this);
2646}
2647
jvanverthd2d2eb92016-02-17 14:04:46 -08002648void GrGLGpu::finishDrawTarget() {
ethannicholas22793252016-01-30 09:59:10 -08002649 if (fPLSHasBeenUsed) {
halcanary9d524f22016-03-29 09:03:52 -07002650 /* There is an ARM driver bug where if we use PLS, and then draw a frame which does not
2651 * use PLS, it leaves garbage all over the place. As a workaround, we use PLS in a
ethannicholas22793252016-01-30 09:59:10 -08002652 * trivial way every frame. And since we use it every frame, there's never a point at which
2653 * it becomes safe to stop using this workaround once we start.
2654 */
2655 this->disableScissor();
csmartdalton28341fa2016-08-17 10:00:21 -07002656 this->disableWindowRectangles();
ethannicholas22793252016-01-30 09:59:10 -08002657 // using PLS in the presence of MSAA results in GL_INVALID_OPERATION
cdaltonaf8bc7d2016-02-05 09:35:20 -08002658 this->flushHWAAState(nullptr, false, false);
ethannicholas22793252016-01-30 09:59:10 -08002659 SkASSERT(!fHWPLSEnabled);
2660 SkASSERT(fMSAAEnabled != kYes_TriState);
2661 GL_CALL(Enable(GR_GL_SHADER_PIXEL_LOCAL_STORAGE));
cdaltone2e71c22016-04-07 18:13:29 -07002662 this->stampPLSSetupRect(SkRect::MakeXYWH(-100.0f, -100.0f, 0.01f, 0.01f));
ethannicholas22793252016-01-30 09:59:10 -08002663 GL_CALL(Disable(GR_GL_SHADER_PIXEL_LOCAL_STORAGE));
2664 }
2665}
ethannicholas5366a092016-01-22 09:45:47 -08002666
brianosman64d094d2016-03-25 06:01:59 -07002667void GrGLGpu::flushRenderTarget(GrGLRenderTarget* target, const SkIRect* bounds, bool disableSRGB) {
egdanield803f272015-03-18 13:01:52 -07002668 SkASSERT(target);
bsalomon6ba6fa12015-03-04 11:57:37 -08002669
robertphillips8abb3702016-08-31 14:04:06 -07002670 uint32_t rtID = target->uniqueID();
egdanield803f272015-03-18 13:01:52 -07002671 if (fHWBoundRenderTargetUniqueID != rtID) {
bsalomon1e0bf7e2015-03-14 12:08:51 -07002672 fStats.incRenderTargetBinds();
egdanield803f272015-03-18 13:01:52 -07002673 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, target->renderFBOID()));
2674#ifdef SK_DEBUG
2675 // don't do this check in Chromium -- this is causing
2676 // lots of repeated command buffer flushes when the compositor is
2677 // rendering with Ganesh, which is really slow; even too slow for
2678 // Debug mode.
cdalton1acea862015-06-02 13:05:52 -07002679 if (kChromium_GrGLDriver != this->glContext().driver()) {
egdanield803f272015-03-18 13:01:52 -07002680 GrGLenum status;
2681 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
2682 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
2683 SkDebugf("GrGLGpu::flushRenderTarget glCheckFramebufferStatus %x\n", status);
2684 }
bsalomon160f24c2015-03-17 15:55:42 -07002685 }
egdanield803f272015-03-18 13:01:52 -07002686#endif
2687 fHWBoundRenderTargetUniqueID = rtID;
bsalomon083617b2016-02-12 12:10:14 -08002688 this->flushViewport(target->getViewport());
brianosman64d094d2016-03-25 06:01:59 -07002689 }
2690
brianosman35b784d2016-05-05 11:52:53 -07002691 if (this->glCaps().srgbWriteControl()) {
brianosman33f6b3f2016-06-02 05:49:21 -07002692 this->flushFramebufferSRGB(GrPixelConfigIsSRGB(target->config()) && !disableSRGB);
bsalomon5cd020f2015-03-17 12:46:56 -07002693 }
brianosman64d094d2016-03-25 06:01:59 -07002694
bsalomon083617b2016-02-12 12:10:14 -08002695 this->didWriteToSurface(target, bounds);
2696}
bsalomona9909122016-01-23 10:41:40 -08002697
brianosman33f6b3f2016-06-02 05:49:21 -07002698void GrGLGpu::flushFramebufferSRGB(bool enable) {
2699 if (enable && kYes_TriState != fHWSRGBFramebuffer) {
2700 GL_CALL(Enable(GR_GL_FRAMEBUFFER_SRGB));
2701 fHWSRGBFramebuffer = kYes_TriState;
2702 } else if (!enable && kNo_TriState != fHWSRGBFramebuffer) {
2703 GL_CALL(Disable(GR_GL_FRAMEBUFFER_SRGB));
2704 fHWSRGBFramebuffer = kNo_TriState;
2705 }
2706}
2707
bsalomon083617b2016-02-12 12:10:14 -08002708void GrGLGpu::flushViewport(const GrGLIRect& viewport) {
2709 if (fHWViewport != viewport) {
2710 viewport.pushToGLViewport(this->glInterface());
2711 fHWViewport = viewport;
2712 }
2713}
2714
twiz@google.com0f31ca72011-03-18 17:38:11 +00002715GrGLenum gPrimitiveType2GLMode[] = {
2716 GR_GL_TRIANGLES,
2717 GR_GL_TRIANGLE_STRIP,
2718 GR_GL_TRIANGLE_FAN,
2719 GR_GL_POINTS,
2720 GR_GL_LINES,
2721 GR_GL_LINE_STRIP
reed@google.comac10a2d2010-12-22 21:39:39 +00002722};
2723
bsalomon@google.comd302f142011-03-03 13:54:13 +00002724#define SWAP_PER_DRAW 0
2725
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00002726#if SWAP_PER_DRAW
commit-bot@chromium.org43823302013-09-25 20:57:51 +00002727 #if defined(SK_BUILD_FOR_MAC)
bsalomon@google.comd302f142011-03-03 13:54:13 +00002728 #include <AGL/agl.h>
commit-bot@chromium.org43823302013-09-25 20:57:51 +00002729 #elif defined(SK_BUILD_FOR_WIN32)
bsalomon@google.comce7357d2012-06-25 17:49:25 +00002730 #include <gl/GL.h>
bsalomon@google.comd302f142011-03-03 13:54:13 +00002731 void SwapBuf() {
2732 DWORD procID = GetCurrentProcessId();
2733 HWND hwnd = GetTopWindow(GetDesktopWindow());
2734 while(hwnd) {
2735 DWORD wndProcID = 0;
2736 GetWindowThreadProcessId(hwnd, &wndProcID);
2737 if(wndProcID == procID) {
2738 SwapBuffers(GetDC(hwnd));
2739 }
2740 hwnd = GetNextWindow(hwnd, GW_HWNDNEXT);
2741 }
2742 }
2743 #endif
2744#endif
2745
egdaniel9cb63402016-06-23 08:37:05 -07002746void GrGLGpu::draw(const GrPipeline& pipeline,
2747 const GrPrimitiveProcessor& primProc,
bsalomon2eda5b32016-09-21 10:53:24 -07002748 const GrMesh meshes[],
egdaniel9cb63402016-06-23 08:37:05 -07002749 int meshCount) {
2750 this->handleDirtyContext();
2751
bsalomon2eda5b32016-09-21 10:53:24 -07002752 bool hasPoints = false;
2753 for (int i = 0; i < meshCount; ++i) {
2754 if (meshes[i].primitiveType() == kPoints_GrPrimitiveType) {
2755 hasPoints = true;
2756 break;
2757 }
2758 }
2759 if (!this->flushGLState(pipeline, primProc, hasPoints)) {
bsalomond95263c2014-12-16 13:05:12 -08002760 return;
2761 }
egdaniel0e1853c2016-03-17 11:35:45 -07002762 GrPixelLocalStorageState plsState = primProc.getPixelLocalStorageState();
2763 if (!fHWPLSEnabled && plsState !=
ethannicholas22793252016-01-30 09:59:10 -08002764 GrPixelLocalStorageState::kDisabled_GrPixelLocalStorageState) {
2765 GL_CALL(Enable(GR_GL_SHADER_PIXEL_LOCAL_STORAGE));
egdaniel0e1853c2016-03-17 11:35:45 -07002766 this->setupPixelLocalStorage(pipeline, primProc);
ethannicholas22793252016-01-30 09:59:10 -08002767 fHWPLSEnabled = true;
2768 }
2769 if (plsState == GrPixelLocalStorageState::kFinish_GrPixelLocalStorageState) {
2770 GrStencilSettings stencil;
2771 stencil.setDisabled();
2772 this->flushStencil(stencil);
2773 }
2774
egdaniel0e1853c2016-03-17 11:35:45 -07002775 for (int i = 0; i < meshCount; ++i) {
2776 if (GrXferBarrierType barrierType = pipeline.xferBarrierType(*this->caps())) {
2777 this->xferBarrier(pipeline.getRenderTarget(), barrierType);
2778 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002779
egdaniel0e1853c2016-03-17 11:35:45 -07002780 const GrMesh& mesh = meshes[i];
2781 GrMesh::Iterator iter;
bsalomonfc9527a2016-08-29 09:18:39 -07002782 const GrNonInstancedMesh* nonInstMesh = iter.init(mesh);
egdaniel0e1853c2016-03-17 11:35:45 -07002783 do {
2784 size_t indexOffsetInBytes = 0;
bsalomonfc9527a2016-08-29 09:18:39 -07002785 this->setupGeometry(primProc, *nonInstMesh, &indexOffsetInBytes);
2786 if (nonInstMesh->isIndexed()) {
egdaniel0e1853c2016-03-17 11:35:45 -07002787 GrGLvoid* indices =
bsalomonfc9527a2016-08-29 09:18:39 -07002788 reinterpret_cast<GrGLvoid*>(indexOffsetInBytes +
2789 sizeof(uint16_t) * nonInstMesh->startIndex());
egdaniel0e1853c2016-03-17 11:35:45 -07002790 // info.startVertex() was accounted for by setupGeometry.
bsalomonfc9527a2016-08-29 09:18:39 -07002791 if (this->glCaps().drawRangeElementsSupport()) {
2792 // We assume here that the batch that generated the mesh used the full
2793 // 0..vertexCount()-1 range.
2794 int start = 0;
2795 int end = nonInstMesh->vertexCount() - 1;
2796 GL_CALL(DrawRangeElements(gPrimitiveType2GLMode[nonInstMesh->primitiveType()],
2797 start, end,
2798 nonInstMesh->indexCount(),
2799 GR_GL_UNSIGNED_SHORT,
2800 indices));
2801 } else {
2802 GL_CALL(DrawElements(gPrimitiveType2GLMode[nonInstMesh->primitiveType()],
2803 nonInstMesh->indexCount(),
2804 GR_GL_UNSIGNED_SHORT,
2805 indices));
2806 }
egdaniel0e1853c2016-03-17 11:35:45 -07002807 } else {
2808 // Pass 0 for parameter first. We have to adjust glVertexAttribPointer() to account
2809 // for startVertex in the DrawElements case. So we always rely on setupGeometry to
2810 // have accounted for startVertex.
bsalomonfc9527a2016-08-29 09:18:39 -07002811 GL_CALL(DrawArrays(gPrimitiveType2GLMode[nonInstMesh->primitiveType()], 0,
2812 nonInstMesh->vertexCount()));
egdaniel0e1853c2016-03-17 11:35:45 -07002813 }
2814 fStats.incNumDraws();
bsalomonfc9527a2016-08-29 09:18:39 -07002815 } while ((nonInstMesh = iter.next()));
bsalomon@google.com74749cd2013-01-30 16:12:41 +00002816 }
ethannicholas22793252016-01-30 09:59:10 -08002817
2818 if (fHWPLSEnabled && plsState == GrPixelLocalStorageState::kFinish_GrPixelLocalStorageState) {
2819 // PLS draws always involve multiple draws, finishing up with a non-PLS
2820 // draw that writes to the color buffer. That draw ends up here; we wait
2821 // until after it is complete to actually disable PLS.
2822 GL_CALL(Disable(GR_GL_SHADER_PIXEL_LOCAL_STORAGE));
2823 fHWPLSEnabled = false;
2824 this->disableScissor();
csmartdalton28341fa2016-08-17 10:00:21 -07002825 this->disableWindowRectangles();
ethannicholas22793252016-01-30 09:59:10 -08002826 }
2827
bsalomon@google.comd302f142011-03-03 13:54:13 +00002828#if SWAP_PER_DRAW
2829 glFlush();
commit-bot@chromium.org43823302013-09-25 20:57:51 +00002830 #if defined(SK_BUILD_FOR_MAC)
bsalomon@google.comd302f142011-03-03 13:54:13 +00002831 aglSwapBuffers(aglGetCurrentContext());
2832 int set_a_break_pt_here = 9;
2833 aglSwapBuffers(aglGetCurrentContext());
commit-bot@chromium.org43823302013-09-25 20:57:51 +00002834 #elif defined(SK_BUILD_FOR_WIN32)
bsalomon@google.comd302f142011-03-03 13:54:13 +00002835 SwapBuf();
2836 int set_a_break_pt_here = 9;
2837 SwapBuf();
2838 #endif
2839#endif
reed@google.comac10a2d2010-12-22 21:39:39 +00002840}
2841
cdaltone2e71c22016-04-07 18:13:29 -07002842void GrGLGpu::stampPLSSetupRect(const SkRect& bounds) {
caryclarkd6562002016-07-27 12:02:07 -07002843 SkASSERT(this->glCaps().glslCaps()->plsPathRenderingSupport());
ethannicholas22793252016-01-30 09:59:10 -08002844
cdaltone2e71c22016-04-07 18:13:29 -07002845 if (!fPLSSetupProgram.fProgram) {
2846 if (!this->createPLSSetupProgram()) {
2847 SkDebugf("Failed to create PLS setup program.\n");
2848 return;
2849 }
2850 }
2851
2852 GL_CALL(UseProgram(fPLSSetupProgram.fProgram));
2853 this->fHWVertexArrayState.setVertexArrayID(this, 0);
2854
2855 GrGLAttribArrayState* attribs = this->fHWVertexArrayState.bindInternalVertexArray(this);
2856 attribs->set(this, 0, fPLSSetupProgram.fArrayBuffer, kVec2f_GrVertexAttribType,
2857 2 * sizeof(GrGLfloat), 0);
ethannicholas22793252016-01-30 09:59:10 -08002858 attribs->disableUnusedArrays(this, 0x1);
2859
cdaltone2e71c22016-04-07 18:13:29 -07002860 GL_CALL(Uniform4f(fPLSSetupProgram.fPosXformUniform, bounds.width(), bounds.height(),
2861 bounds.left(), bounds.top()));
ethannicholas22793252016-01-30 09:59:10 -08002862
2863 GrXferProcessor::BlendInfo blendInfo;
2864 blendInfo.reset();
2865 this->flushBlend(blendInfo, GrSwizzle());
2866 this->flushColorWrite(true);
robertphillips5fa7f302016-07-21 09:21:04 -07002867 this->flushDrawFace(GrDrawFace::kBoth);
ethannicholas22793252016-01-30 09:59:10 -08002868 if (!fHWStencilSettings.isDisabled()) {
2869 GL_CALL(Disable(GR_GL_STENCIL_TEST));
2870 }
2871 GL_CALL(DrawArrays(GR_GL_TRIANGLE_STRIP, 0, 4));
2872 GL_CALL(UseProgram(fHWProgramID));
2873 if (!fHWStencilSettings.isDisabled()) {
2874 GL_CALL(Enable(GR_GL_STENCIL_TEST));
2875 }
2876}
2877
egdaniel0e1853c2016-03-17 11:35:45 -07002878void GrGLGpu::setupPixelLocalStorage(const GrPipeline& pipeline,
2879 const GrPrimitiveProcessor& primProc) {
ethannicholas22793252016-01-30 09:59:10 -08002880 fPLSHasBeenUsed = true;
halcanary9d524f22016-03-29 09:03:52 -07002881 const SkRect& bounds =
egdaniel0e1853c2016-03-17 11:35:45 -07002882 static_cast<const GrPLSGeometryProcessor&>(primProc).getBounds();
ethannicholas22793252016-01-30 09:59:10 -08002883 // setup pixel local storage -- this means capturing and storing the current framebuffer color
2884 // and initializing the winding counts to zero
egdaniel0e1853c2016-03-17 11:35:45 -07002885 GrRenderTarget* rt = pipeline.getRenderTarget();
ethannicholas22793252016-01-30 09:59:10 -08002886 SkScalar width = SkIntToScalar(rt->width());
2887 SkScalar height = SkIntToScalar(rt->height());
2888 // dst rect edges in NDC (-1 to 1)
2889 // having some issues with rounding, just expand the bounds by 1 and trust the scissor to keep
2890 // it contained properly
2891 GrGLfloat dx0 = 2.0f * (bounds.left() - 1) / width - 1.0f;
2892 GrGLfloat dx1 = 2.0f * (bounds.right() + 1) / width - 1.0f;
2893 GrGLfloat dy0 = -2.0f * (bounds.top() - 1) / height + 1.0f;
2894 GrGLfloat dy1 = -2.0f * (bounds.bottom() + 1) / height + 1.0f;
2895 SkRect deviceBounds = SkRect::MakeXYWH(dx0, dy0, dx1 - dx0, dy1 - dy0);
halcanary9d524f22016-03-29 09:03:52 -07002896
ethannicholas22793252016-01-30 09:59:10 -08002897 GL_CALL(Enable(GR_GL_FETCH_PER_SAMPLE_ARM));
cdaltone2e71c22016-04-07 18:13:29 -07002898 this->stampPLSSetupRect(deviceBounds);
ethannicholas22793252016-01-30 09:59:10 -08002899}
2900
bsalomon861e1032014-12-16 07:33:49 -08002901void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target) {
bsalomon@google.com75f9f252012-01-31 13:35:56 +00002902 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00002903 if (rt->needsResolve()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00002904 // Some extensions automatically resolves the texture when it is read.
2905 if (this->glCaps().usesMSAARenderBuffers()) {
egdanield803f272015-03-18 13:01:52 -07002906 SkASSERT(rt->textureFBOID() != rt->renderFBOID());
2907 fStats.incRenderTargetBinds();
2908 fStats.incRenderTargetBinds();
2909 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER, rt->renderFBOID()));
2910 GL_CALL(BindFramebuffer(GR_GL_DRAW_FRAMEBUFFER, rt->textureFBOID()));
2911 // make sure we go through flushRenderTarget() since we've modified
2912 // the bound DRAW FBO ID.
2913 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002914 const GrGLIRect& vp = rt->getViewport();
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00002915 const SkIRect dirtyRect = rt->getResolveRect();
reed@google.comac10a2d2010-12-22 21:39:39 +00002916
bsalomon@google.com347c3822013-05-01 20:10:01 +00002917 if (GrGLCaps::kES_Apple_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002918 // Apple's extension uses the scissor as the blit bounds.
bsalomon3e791242014-12-17 13:43:13 -08002919 GrScissorState scissorState;
robertphillipse85a32d2015-02-10 08:16:55 -08002920 scissorState.set(dirtyRect);
2921 this->flushScissor(scissorState, vp, rt->origin());
csmartdalton28341fa2016-08-17 10:00:21 -07002922 this->disableWindowRectangles();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002923 GL_CALL(ResolveMultisampleFramebuffer());
2924 } else {
robertphillipse85a32d2015-02-10 08:16:55 -08002925 GrGLIRect r;
2926 r.setRelativeTo(vp, dirtyRect.fLeft, dirtyRect.fTop,
2927 dirtyRect.width(), dirtyRect.height(), target->origin());
2928
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002929 int right = r.fLeft + r.fWidth;
2930 int top = r.fBottom + r.fHeight;
derekf8c8f71a2014-09-16 06:24:57 -07002931
2932 // BlitFrameBuffer respects the scissor, so disable it.
joshualitt77b13072014-10-27 14:51:01 -07002933 this->disableScissor();
csmartdalton28341fa2016-08-17 10:00:21 -07002934 this->disableWindowRectangles();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002935 GL_CALL(BlitFramebuffer(r.fLeft, r.fBottom, right, top,
2936 r.fLeft, r.fBottom, right, top,
2937 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
bsalomon@google.coma9ecdad2011-03-23 13:50:34 +00002938 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002939 }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00002940 rt->flagAsResolved();
reed@google.comac10a2d2010-12-22 21:39:39 +00002941 }
2942}
2943
bsalomon@google.com411dad02012-06-05 20:24:20 +00002944namespace {
bsalomon@google.comd302f142011-03-03 13:54:13 +00002945
bsalomon@google.com411dad02012-06-05 20:24:20 +00002946
2947GrGLenum gr_to_gl_stencil_op(GrStencilOp op) {
cdalton93a379b2016-05-11 13:58:08 -07002948 static const GrGLenum gTable[kGrStencilOpCount] = {
2949 GR_GL_KEEP, // kKeep
2950 GR_GL_ZERO, // kZero
2951 GR_GL_REPLACE, // kReplace
2952 GR_GL_INVERT, // kInvert
2953 GR_GL_INCR_WRAP, // kIncWrap
2954 GR_GL_DECR_WRAP, // kDecWrap
2955 GR_GL_INCR, // kIncClamp
2956 GR_GL_DECR, // kDecClamp
bsalomon@google.com411dad02012-06-05 20:24:20 +00002957 };
cdalton93a379b2016-05-11 13:58:08 -07002958 GR_STATIC_ASSERT(0 == (int)GrStencilOp::kKeep);
2959 GR_STATIC_ASSERT(1 == (int)GrStencilOp::kZero);
2960 GR_STATIC_ASSERT(2 == (int)GrStencilOp::kReplace);
2961 GR_STATIC_ASSERT(3 == (int)GrStencilOp::kInvert);
2962 GR_STATIC_ASSERT(4 == (int)GrStencilOp::kIncWrap);
2963 GR_STATIC_ASSERT(5 == (int)GrStencilOp::kDecWrap);
2964 GR_STATIC_ASSERT(6 == (int)GrStencilOp::kIncClamp);
2965 GR_STATIC_ASSERT(7 == (int)GrStencilOp::kDecClamp);
2966 SkASSERT(op < (GrStencilOp)kGrStencilOpCount);
2967 return gTable[(int)op];
bsalomon@google.com411dad02012-06-05 20:24:20 +00002968}
2969
2970void set_gl_stencil(const GrGLInterface* gl,
cdalton93a379b2016-05-11 13:58:08 -07002971 const GrStencilSettings::Face& face,
2972 GrGLenum glFace) {
2973 GrGLenum glFunc = GrToGLStencilFunc(face.fTest);
2974 GrGLenum glFailOp = gr_to_gl_stencil_op(face.fFailOp);
2975 GrGLenum glPassOp = gr_to_gl_stencil_op(face.fPassOp);
bsalomon@google.coma3201942012-06-21 19:58:20 +00002976
cdalton93a379b2016-05-11 13:58:08 -07002977 GrGLint ref = face.fRef;
2978 GrGLint mask = face.fTestMask;
2979 GrGLint writeMask = face.fWriteMask;
bsalomon@google.com411dad02012-06-05 20:24:20 +00002980
2981 if (GR_GL_FRONT_AND_BACK == glFace) {
2982 // we call the combined func just in case separate stencil is not
2983 // supported.
2984 GR_GL_CALL(gl, StencilFunc(glFunc, ref, mask));
2985 GR_GL_CALL(gl, StencilMask(writeMask));
vbuzinovc5d58f02015-08-21 05:24:24 -07002986 GR_GL_CALL(gl, StencilOp(glFailOp, GR_GL_KEEP, glPassOp));
bsalomon@google.com411dad02012-06-05 20:24:20 +00002987 } else {
2988 GR_GL_CALL(gl, StencilFuncSeparate(glFace, glFunc, ref, mask));
2989 GR_GL_CALL(gl, StencilMaskSeparate(glFace, writeMask));
vbuzinovc5d58f02015-08-21 05:24:24 -07002990 GR_GL_CALL(gl, StencilOpSeparate(glFace, glFailOp, GR_GL_KEEP, glPassOp));
bsalomon@google.com411dad02012-06-05 20:24:20 +00002991 }
2992}
2993}
bsalomon@google.comd302f142011-03-03 13:54:13 +00002994
bsalomon3e791242014-12-17 13:43:13 -08002995void GrGLGpu::flushStencil(const GrStencilSettings& stencilSettings) {
2996 if (fHWStencilSettings != stencilSettings) {
joshualitta58fe352014-10-27 08:39:00 -07002997 if (stencilSettings.isDisabled()) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00002998 if (kNo_TriState != fHWStencilTestEnabled) {
2999 GL_CALL(Disable(GR_GL_STENCIL_TEST));
3000 fHWStencilTestEnabled = kNo_TriState;
3001 }
3002 } else {
3003 if (kYes_TriState != fHWStencilTestEnabled) {
3004 GL_CALL(Enable(GR_GL_STENCIL_TEST));
3005 fHWStencilTestEnabled = kYes_TriState;
3006 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00003007 }
joshualitta58fe352014-10-27 08:39:00 -07003008 if (!stencilSettings.isDisabled()) {
cdalton93a379b2016-05-11 13:58:08 -07003009 if (stencilSettings.isTwoSided()) {
3010 SkASSERT(this->caps()->twoSidedStencilSupport());
bsalomon@google.com411dad02012-06-05 20:24:20 +00003011 set_gl_stencil(this->glInterface(),
cdalton93a379b2016-05-11 13:58:08 -07003012 stencilSettings.front(),
3013 GR_GL_FRONT);
bsalomon@google.com411dad02012-06-05 20:24:20 +00003014 set_gl_stencil(this->glInterface(),
cdalton93a379b2016-05-11 13:58:08 -07003015 stencilSettings.back(),
3016 GR_GL_BACK);
bsalomon@google.comd302f142011-03-03 13:54:13 +00003017 } else {
bsalomon@google.com411dad02012-06-05 20:24:20 +00003018 set_gl_stencil(this->glInterface(),
cdalton93a379b2016-05-11 13:58:08 -07003019 stencilSettings.front(),
3020 GR_GL_FRONT_AND_BACK);
bsalomon@google.comd302f142011-03-03 13:54:13 +00003021 }
3022 }
joshualitta58fe352014-10-27 08:39:00 -07003023 fHWStencilSettings = stencilSettings;
reed@google.comac10a2d2010-12-22 21:39:39 +00003024 }
3025}
3026
cdaltonaf8bc7d2016-02-05 09:35:20 -08003027void GrGLGpu::flushHWAAState(GrRenderTarget* rt, bool useHWAA, bool stencilEnabled) {
bsalomon083617b2016-02-12 12:10:14 -08003028 // rt is only optional if useHWAA is false.
3029 SkASSERT(rt || !useHWAA);
vbuzinovdded6962015-06-12 08:59:45 -07003030 SkASSERT(!useHWAA || rt->isStencilBufferMultisampled());
bsalomon@google.com202d1392013-03-19 18:58:08 +00003031
csmartdalton2b5f2cb2016-06-10 14:06:32 -07003032 if (this->caps()->multisampleDisableSupport()) {
cdaltond0a840d2015-03-16 17:19:58 -07003033 if (useHWAA) {
3034 if (kYes_TriState != fMSAAEnabled) {
3035 GL_CALL(Enable(GR_GL_MULTISAMPLE));
3036 fMSAAEnabled = kYes_TriState;
3037 }
3038 } else {
3039 if (kNo_TriState != fMSAAEnabled) {
3040 GL_CALL(Disable(GR_GL_MULTISAMPLE));
3041 fMSAAEnabled = kNo_TriState;
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00003042 }
3043 }
3044 }
cdaltonaf8bc7d2016-02-05 09:35:20 -08003045
3046 if (0 != this->caps()->maxRasterSamples()) {
csmartdaltonf9635992016-08-10 11:09:07 -07003047 if (useHWAA && rt->isMixedSampled() && !stencilEnabled) {
cdaltonaf8bc7d2016-02-05 09:35:20 -08003048 // Since stencil is disabled and we want more samples than are in the color buffer, we
3049 // need to tell the rasterizer explicitly how many to run.
3050 if (kYes_TriState != fHWRasterMultisampleEnabled) {
3051 GL_CALL(Enable(GR_GL_RASTER_MULTISAMPLE));
3052 fHWRasterMultisampleEnabled = kYes_TriState;
3053 }
3054 if (rt->numStencilSamples() != fHWNumRasterSamples) {
3055 SkASSERT(rt->numStencilSamples() <= this->caps()->maxRasterSamples());
3056 GL_CALL(RasterSamples(rt->numStencilSamples(), GR_GL_TRUE));
3057 fHWNumRasterSamples = rt->numStencilSamples();
3058 }
3059 } else {
3060 if (kNo_TriState != fHWRasterMultisampleEnabled) {
3061 GL_CALL(Disable(GR_GL_RASTER_MULTISAMPLE));
3062 fHWRasterMultisampleEnabled = kNo_TriState;
3063 }
3064 }
3065 } else {
csmartdaltonf9635992016-08-10 11:09:07 -07003066 SkASSERT(!useHWAA || !rt->isMixedSampled() || stencilEnabled);
cdaltonaf8bc7d2016-02-05 09:35:20 -08003067 }
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00003068}
3069
bsalomon7f9b2e42016-01-12 13:29:26 -08003070void GrGLGpu::flushBlend(const GrXferProcessor::BlendInfo& blendInfo, const GrSwizzle& swizzle) {
egdanielb414f252014-07-29 13:15:47 -07003071 // Any optimization to disable blending should have already been applied and
cdalton8917d622015-05-06 13:40:21 -07003072 // tweaked the equation to "add" or "subtract", and the coeffs to (1, 0).
bsalomonf7cc8772015-05-11 11:21:14 -07003073
cdalton8917d622015-05-06 13:40:21 -07003074 GrBlendEquation equation = blendInfo.fEquation;
egdanielc2304142014-12-11 13:15:13 -08003075 GrBlendCoeff srcCoeff = blendInfo.fSrcBlend;
3076 GrBlendCoeff dstCoeff = blendInfo.fDstBlend;
cdalton8917d622015-05-06 13:40:21 -07003077 bool blendOff = (kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) &&
3078 kOne_GrBlendCoeff == srcCoeff && kZero_GrBlendCoeff == dstCoeff;
egdanielb414f252014-07-29 13:15:47 -07003079 if (blendOff) {
3080 if (kNo_TriState != fHWBlendState.fEnabled) {
3081 GL_CALL(Disable(GR_GL_BLEND));
joel.liang9764c402015-07-09 19:46:18 -07003082
3083 // Workaround for the ARM KHR_blend_equation_advanced blacklist issue
3084 // https://code.google.com/p/skia/issues/detail?id=3943
3085 if (kARM_GrGLVendor == this->ctxInfo().vendor() &&
3086 GrBlendEquationIsAdvanced(fHWBlendState.fEquation)) {
3087 SkASSERT(this->caps()->advancedBlendEquationSupport());
3088 // Set to any basic blending equation.
3089 GrBlendEquation blend_equation = kAdd_GrBlendEquation;
3090 GL_CALL(BlendEquation(gXfermodeEquation2Blend[blend_equation]));
3091 fHWBlendState.fEquation = blend_equation;
3092 }
3093
egdanielb414f252014-07-29 13:15:47 -07003094 fHWBlendState.fEnabled = kNo_TriState;
3095 }
cdalton8917d622015-05-06 13:40:21 -07003096 return;
3097 }
3098
3099 if (kYes_TriState != fHWBlendState.fEnabled) {
3100 GL_CALL(Enable(GR_GL_BLEND));
3101 fHWBlendState.fEnabled = kYes_TriState;
3102 }
3103
3104 if (fHWBlendState.fEquation != equation) {
3105 GL_CALL(BlendEquation(gXfermodeEquation2Blend[equation]));
3106 fHWBlendState.fEquation = equation;
3107 }
3108
3109 if (GrBlendEquationIsAdvanced(equation)) {
3110 SkASSERT(this->caps()->advancedBlendEquationSupport());
3111 // Advanced equations have no other blend state.
3112 return;
3113 }
3114
bsalomone63ffef2016-02-05 07:17:34 -08003115 if (fHWBlendState.fSrcCoeff != srcCoeff || fHWBlendState.fDstCoeff != dstCoeff) {
cdalton8917d622015-05-06 13:40:21 -07003116 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[srcCoeff],
3117 gXfermodeCoeff2Blend[dstCoeff]));
3118 fHWBlendState.fSrcCoeff = srcCoeff;
3119 fHWBlendState.fDstCoeff = dstCoeff;
3120 }
3121
bsalomon7f9b2e42016-01-12 13:29:26 -08003122 if ((BlendCoeffReferencesConstant(srcCoeff) || BlendCoeffReferencesConstant(dstCoeff))) {
3123 GrColor blendConst = blendInfo.fBlendConstant;
3124 blendConst = swizzle.applyTo(blendConst);
3125 if (!fHWBlendState.fConstColorValid || fHWBlendState.fConstColor != blendConst) {
3126 GrGLfloat c[4];
3127 GrColorToRGBAFloat(blendConst, c);
3128 GL_CALL(BlendColor(c[0], c[1], c[2], c[3]));
3129 fHWBlendState.fConstColor = blendConst;
3130 fHWBlendState.fConstColorValid = true;
3131 }
bsalomon@google.com0650e812011-04-08 18:07:53 +00003132 }
3133}
bsalomon@google.com0a97be22011-11-08 19:20:57 +00003134
commit-bot@chromium.org6364b5e2013-08-20 20:22:52 +00003135static inline GrGLenum tile_to_gl_wrap(SkShader::TileMode tm) {
bsalomon@google.comb8670992012-07-25 21:27:09 +00003136 static const GrGLenum gWrapModes[] = {
3137 GR_GL_CLAMP_TO_EDGE,
3138 GR_GL_REPEAT,
3139 GR_GL_MIRRORED_REPEAT
3140 };
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +00003141 GR_STATIC_ASSERT(SkShader::kTileModeCount == SK_ARRAY_COUNT(gWrapModes));
bsalomon@google.comb8670992012-07-25 21:27:09 +00003142 GR_STATIC_ASSERT(0 == SkShader::kClamp_TileMode);
3143 GR_STATIC_ASSERT(1 == SkShader::kRepeat_TileMode);
3144 GR_STATIC_ASSERT(2 == SkShader::kMirror_TileMode);
3145 return gWrapModes[tm];
3146}
3147
egdanielb7e7d572015-11-04 04:23:53 -08003148static GrGLenum get_component_enum_from_char(char component) {
3149 switch (component) {
3150 case 'r':
3151 return GR_GL_RED;
3152 case 'g':
3153 return GR_GL_GREEN;
3154 case 'b':
3155 return GR_GL_BLUE;
3156 case 'a':
3157 return GR_GL_ALPHA;
3158 default:
3159 SkFAIL("Unsupported component");
3160 return 0;
3161 }
3162}
3163
3164/** If texture swizzling is available using tex parameters then it is preferred over mangling
3165 the generated shader code. This potentially allows greater reuse of cached shaders. */
3166static void get_tex_param_swizzle(GrPixelConfig config,
bsalomoncdee0092016-01-08 13:20:12 -08003167 const GrGLCaps& caps,
egdanielb7e7d572015-11-04 04:23:53 -08003168 GrGLenum* glSwizzle) {
bsalomoncdee0092016-01-08 13:20:12 -08003169 const GrSwizzle& swizzle = caps.configSwizzle(config);
egdanielb7e7d572015-11-04 04:23:53 -08003170 for (int i = 0; i < 4; ++i) {
bsalomoncdee0092016-01-08 13:20:12 -08003171 glSwizzle[i] = get_component_enum_from_char(swizzle.c_str()[i]);
egdaniel574a4c12015-11-02 06:22:44 -08003172 }
3173}
3174
brianosmana167e742016-05-24 06:18:48 -07003175void GrGLGpu::bindTexture(int unitIdx, const GrTextureParams& params, bool allowSRGBInputs,
brianosmana6359362016-03-21 06:55:37 -07003176 GrGLTexture* texture) {
bsalomon49f085d2014-09-05 13:34:00 -07003177 SkASSERT(texture);
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00003178
reed856e9d92015-09-30 12:21:45 -07003179#ifdef SK_DEBUG
3180 if (!this->caps()->npotTextureTileSupport()) {
3181 const bool tileX = SkShader::kClamp_TileMode != params.getTileModeX();
3182 const bool tileY = SkShader::kClamp_TileMode != params.getTileModeY();
3183 if (tileX || tileY) {
3184 const int w = texture->width();
3185 const int h = texture->height();
3186 SkASSERT(SkIsPow2(w) && SkIsPow2(h));
3187 }
3188 }
3189#endif
3190
bsalomon@google.comb8670992012-07-25 21:27:09 +00003191 // If we created a rt/tex and rendered to it without using a texture and now we're texturing
3192 // from the rt it will still be the last bound texture, but it needs resolving. So keep this
bsalomon@google.com4c883782012-06-04 19:05:11 +00003193 // out of the "last != next" check.
bsalomon37dd3312014-11-03 08:47:23 -08003194 GrGLRenderTarget* texRT = static_cast<GrGLRenderTarget*>(texture->asRenderTarget());
bsalomon49f085d2014-09-05 13:34:00 -07003195 if (texRT) {
bsalomon@google.com4c883782012-06-04 19:05:11 +00003196 this->onResolveRenderTarget(texRT);
3197 }
3198
robertphillips8abb3702016-08-31 14:04:06 -07003199 uint32_t textureID = texture->uniqueID();
bsalomon10528f12015-10-14 12:54:52 -07003200 GrGLenum target = texture->target();
bsalomon1c63bf62014-07-22 13:09:46 -07003201 if (fHWBoundTextureUniqueIDs[unitIdx] != textureID) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00003202 this->setTextureUnit(unitIdx);
bsalomon10528f12015-10-14 12:54:52 -07003203 GL_CALL(BindTexture(target, texture->textureID()));
bsalomon1c63bf62014-07-22 13:09:46 -07003204 fHWBoundTextureUniqueIDs[unitIdx] = textureID;
bsalomon@google.com4c883782012-06-04 19:05:11 +00003205 }
3206
bsalomon@google.com4c883782012-06-04 19:05:11 +00003207 ResetTimestamp timestamp;
bsalomon@google.com34cccde2013-01-04 18:34:30 +00003208 const GrGLTexture::TexParams& oldTexParams = texture->getCachedTexParams(&timestamp);
bsalomon@google.com4c883782012-06-04 19:05:11 +00003209 bool setAll = timestamp < this->getResetTimestamp();
3210 GrGLTexture::TexParams newTexParams;
3211
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00003212 static GrGLenum glMinFilterModes[] = {
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00003213 GR_GL_NEAREST,
3214 GR_GL_LINEAR,
3215 GR_GL_LINEAR_MIPMAP_LINEAR
3216 };
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00003217 static GrGLenum glMagFilterModes[] = {
3218 GR_GL_NEAREST,
3219 GR_GL_LINEAR,
3220 GR_GL_LINEAR
3221 };
commit-bot@chromium.org47442312013-12-19 16:18:01 +00003222 GrTextureParams::FilterMode filterMode = params.filterMode();
bsalomonefd7d452014-10-23 14:17:46 -07003223
3224 if (GrTextureParams::kMipMap_FilterMode == filterMode) {
3225 if (!this->caps()->mipMapSupport() || GrPixelConfigIsCompressed(texture->config())) {
3226 filterMode = GrTextureParams::kBilerp_FilterMode;
3227 }
commit-bot@chromium.org47442312013-12-19 16:18:01 +00003228 }
bsalomonefd7d452014-10-23 14:17:46 -07003229
commit-bot@chromium.org47442312013-12-19 16:18:01 +00003230 newTexParams.fMinFilter = glMinFilterModes[filterMode];
3231 newTexParams.fMagFilter = glMagFilterModes[filterMode];
skia.committer@gmail.comaeefb2a2013-07-27 07:01:06 +00003232
brianosman33f6b3f2016-06-02 05:49:21 -07003233 if (GrPixelConfigIsSRGB(texture->config())) {
brianosmanfe199872016-06-13 07:59:48 -07003234 newTexParams.fSRGBDecode = allowSRGBInputs ? GR_GL_DECODE_EXT : GR_GL_SKIP_DECODE_EXT;
brianosman33f6b3f2016-06-02 05:49:21 -07003235 if (setAll || newTexParams.fSRGBDecode != oldTexParams.fSRGBDecode) {
brianosmanadf4fa62016-04-26 16:48:06 -07003236 this->setTextureUnit(unitIdx);
brianosman33f6b3f2016-06-02 05:49:21 -07003237 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SRGB_DECODE_EXT, newTexParams.fSRGBDecode));
cblume55f2d2d2016-02-26 13:20:48 -08003238 }
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00003239 }
bsalomon@google.com4c883782012-06-04 19:05:11 +00003240
brianosman33f6b3f2016-06-02 05:49:21 -07003241#ifdef SK_DEBUG
3242 // We were supposed to ensure MipMaps were up-to-date and built correctly before getting here.
3243 if (GrTextureParams::kMipMap_FilterMode == filterMode) {
3244 SkASSERT(!texture->texturePriv().mipMapsAreDirty());
3245 if (GrPixelConfigIsSRGB(texture->config())) {
brianosmanfe199872016-06-13 07:59:48 -07003246 SkSourceGammaTreatment gammaTreatment = allowSRGBInputs ?
3247 SkSourceGammaTreatment::kRespect : SkSourceGammaTreatment::kIgnore;
3248 SkASSERT(texture->texturePriv().gammaTreatment() == gammaTreatment);
brianosman33f6b3f2016-06-02 05:49:21 -07003249 }
3250 }
3251#endif
3252
cblume55f2d2d2016-02-26 13:20:48 -08003253 newTexParams.fMaxMipMapLevel = texture->texturePriv().maxMipMapLevel();
3254
bsalomon@google.comb8670992012-07-25 21:27:09 +00003255 newTexParams.fWrapS = tile_to_gl_wrap(params.getTileModeX());
3256 newTexParams.fWrapT = tile_to_gl_wrap(params.getTileModeY());
bsalomoncdee0092016-01-08 13:20:12 -08003257 get_tex_param_swizzle(texture->config(), this->glCaps(), newTexParams.fSwizzleRGBA);
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00003258 if (setAll || newTexParams.fMagFilter != oldTexParams.fMagFilter) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00003259 this->setTextureUnit(unitIdx);
bsalomon10528f12015-10-14 12:54:52 -07003260 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_MAG_FILTER, newTexParams.fMagFilter));
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00003261 }
3262 if (setAll || newTexParams.fMinFilter != oldTexParams.fMinFilter) {
3263 this->setTextureUnit(unitIdx);
bsalomon10528f12015-10-14 12:54:52 -07003264 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_MIN_FILTER, newTexParams.fMinFilter));
bsalomon@google.com4c883782012-06-04 19:05:11 +00003265 }
cblume55f2d2d2016-02-26 13:20:48 -08003266 if (setAll || newTexParams.fMaxMipMapLevel != oldTexParams.fMaxMipMapLevel) {
cblume09bd2c02016-03-01 14:08:28 -08003267 // These are not supported in ES2 contexts
3268 if (this->glCaps().mipMapLevelAndLodControlSupport()) {
3269 if (newTexParams.fMaxMipMapLevel != 0) {
3270 this->setTextureUnit(unitIdx);
3271 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_MIN_LOD, 0));
3272 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_BASE_LEVEL, 0));
3273 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_MAX_LOD,
3274 newTexParams.fMaxMipMapLevel));
3275 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_MAX_LEVEL,
3276 newTexParams.fMaxMipMapLevel));
3277 }
cblume55f2d2d2016-02-26 13:20:48 -08003278 }
3279 }
bsalomon@google.com4c883782012-06-04 19:05:11 +00003280 if (setAll || newTexParams.fWrapS != oldTexParams.fWrapS) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00003281 this->setTextureUnit(unitIdx);
bsalomon10528f12015-10-14 12:54:52 -07003282 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_WRAP_S, newTexParams.fWrapS));
bsalomon@google.com4c883782012-06-04 19:05:11 +00003283 }
3284 if (setAll || newTexParams.fWrapT != oldTexParams.fWrapT) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00003285 this->setTextureUnit(unitIdx);
bsalomon10528f12015-10-14 12:54:52 -07003286 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_WRAP_T, newTexParams.fWrapT));
bsalomon@google.com4c883782012-06-04 19:05:11 +00003287 }
bsalomoncdee0092016-01-08 13:20:12 -08003288 if (this->glCaps().textureSwizzleSupport() &&
bsalomon@google.com4c883782012-06-04 19:05:11 +00003289 (setAll || memcmp(newTexParams.fSwizzleRGBA,
3290 oldTexParams.fSwizzleRGBA,
3291 sizeof(newTexParams.fSwizzleRGBA)))) {
cdalton74b8d322016-04-11 14:47:28 -07003292 this->setTextureSwizzle(unitIdx, target, newTexParams.fSwizzleRGBA);
bsalomon@google.com4c883782012-06-04 19:05:11 +00003293 }
bsalomon@google.com34cccde2013-01-04 18:34:30 +00003294 texture->setCachedTexParams(newTexParams, this->getResetTimestamp());
bsalomon@google.com4c883782012-06-04 19:05:11 +00003295}
3296
csmartdalton1897cfd2016-06-03 08:50:54 -07003297void GrGLGpu::bindTexelBuffer(int unitIdx, GrPixelConfig texelConfig, GrGLBuffer* buffer) {
cdalton74b8d322016-04-11 14:47:28 -07003298 SkASSERT(this->glCaps().canUseConfigWithTexelBuffer(texelConfig));
3299 SkASSERT(unitIdx >= 0 && unitIdx < fHWBufferTextures.count());
cdalton74b8d322016-04-11 14:47:28 -07003300
3301 BufferTexture& buffTex = fHWBufferTextures[unitIdx];
3302
3303 if (!buffTex.fKnownBound) {
3304 if (!buffTex.fTextureID) {
3305 GL_CALL(GenTextures(1, &buffTex.fTextureID));
3306 if (!buffTex.fTextureID) {
3307 return;
3308 }
3309 }
3310
3311 this->setTextureUnit(unitIdx);
3312 GL_CALL(BindTexture(GR_GL_TEXTURE_BUFFER, buffTex.fTextureID));
3313
3314 buffTex.fKnownBound = true;
3315 }
3316
robertphillips8abb3702016-08-31 14:04:06 -07003317 if (buffer->uniqueID() != buffTex.fAttachedBufferUniqueID ||
csmartdalton1897cfd2016-06-03 08:50:54 -07003318 buffTex.fTexelConfig != texelConfig) {
cdalton74b8d322016-04-11 14:47:28 -07003319
3320 this->setTextureUnit(unitIdx);
csmartdalton1897cfd2016-06-03 08:50:54 -07003321 GL_CALL(TexBuffer(GR_GL_TEXTURE_BUFFER,
3322 this->glCaps().configSizedInternalFormat(texelConfig),
3323 buffer->bufferID()));
cdalton74b8d322016-04-11 14:47:28 -07003324
cdalton74b8d322016-04-11 14:47:28 -07003325 buffTex.fTexelConfig = texelConfig;
robertphillips8abb3702016-08-31 14:04:06 -07003326 buffTex.fAttachedBufferUniqueID = buffer->uniqueID();
cdalton74b8d322016-04-11 14:47:28 -07003327
3328 if (this->glCaps().textureSwizzleSupport() &&
3329 this->glCaps().configSwizzle(texelConfig) != buffTex.fSwizzle) {
3330 GrGLenum glSwizzle[4];
3331 get_tex_param_swizzle(texelConfig, this->glCaps(), glSwizzle);
3332 this->setTextureSwizzle(unitIdx, GR_GL_TEXTURE_BUFFER, glSwizzle);
3333 buffTex.fSwizzle = this->glCaps().configSwizzle(texelConfig);
3334 }
3335
3336 buffer->setHasAttachedToTexture();
3337 fHWMaxUsedBufferTextureUnit = SkTMax(unitIdx, fHWMaxUsedBufferTextureUnit);
3338 }
3339}
3340
brianosman33f6b3f2016-06-02 05:49:21 -07003341void GrGLGpu::generateMipmaps(const GrTextureParams& params, bool allowSRGBInputs,
3342 GrGLTexture* texture) {
3343 SkASSERT(texture);
3344
3345 // First, figure out if we need mips for this texture at all:
3346 GrTextureParams::FilterMode filterMode = params.filterMode();
3347
3348 if (GrTextureParams::kMipMap_FilterMode == filterMode) {
3349 if (!this->caps()->mipMapSupport() || GrPixelConfigIsCompressed(texture->config())) {
3350 filterMode = GrTextureParams::kBilerp_FilterMode;
3351 }
3352 }
3353
3354 if (GrTextureParams::kMipMap_FilterMode != filterMode) {
3355 return;
3356 }
3357
3358 // If this is an sRGB texture and the mips were previously built the "other" way
3359 // (gamma-correct vs. not), then we need to rebuild them. We don't need to check for
3360 // srgbSupport - we'll *never* get an sRGB pixel config if we don't support it.
brianosmanfe199872016-06-13 07:59:48 -07003361 SkSourceGammaTreatment gammaTreatment = allowSRGBInputs
3362 ? SkSourceGammaTreatment::kRespect : SkSourceGammaTreatment::kIgnore;
brianosman33f6b3f2016-06-02 05:49:21 -07003363 if (GrPixelConfigIsSRGB(texture->config()) &&
brianosmanfe199872016-06-13 07:59:48 -07003364 gammaTreatment != texture->texturePriv().gammaTreatment()) {
brianosman33f6b3f2016-06-02 05:49:21 -07003365 texture->texturePriv().dirtyMipMaps(true);
3366 }
3367
3368 // If the mips aren't dirty, we're done:
3369 if (!texture->texturePriv().mipMapsAreDirty()) {
3370 return;
3371 }
3372
3373 // If we created a rt/tex and rendered to it without using a texture and now we're texturing
3374 // from the rt it will still be the last bound texture, but it needs resolving.
3375 GrGLRenderTarget* texRT = static_cast<GrGLRenderTarget*>(texture->asRenderTarget());
3376 if (texRT) {
3377 this->onResolveRenderTarget(texRT);
3378 }
3379
3380 GrGLenum target = texture->target();
3381 this->setScratchTextureUnit();
3382 GL_CALL(BindTexture(target, texture->textureID()));
3383
3384 // Configure sRGB decode, if necessary. This state is the only thing needed for the driver
3385 // call (glGenerateMipmap) to work correctly. Our manual method dirties other state, too.
3386 if (GrPixelConfigIsSRGB(texture->config())) {
3387 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SRGB_DECODE_EXT,
3388 allowSRGBInputs ? GR_GL_DECODE_EXT : GR_GL_SKIP_DECODE_EXT));
3389 }
3390
3391 // Either do manual mipmap generation or (if that fails), just rely on the driver:
3392 if (!this->generateMipmap(texture, allowSRGBInputs)) {
3393 GL_CALL(GenerateMipmap(target));
3394 }
3395
brianosmanfe199872016-06-13 07:59:48 -07003396 texture->texturePriv().dirtyMipMaps(false);
brianosman33f6b3f2016-06-02 05:49:21 -07003397 texture->texturePriv().setMaxMipMapLevel(SkMipMap::ComputeLevelCount(
3398 texture->width(), texture->height()));
brianosmanfe199872016-06-13 07:59:48 -07003399 texture->texturePriv().setGammaTreatment(gammaTreatment);
brianosman33f6b3f2016-06-02 05:49:21 -07003400
3401 // We have potentially set lots of state on the texture. Easiest to dirty it all:
3402 texture->textureParamsModified();
3403}
3404
cdalton74b8d322016-04-11 14:47:28 -07003405void GrGLGpu::setTextureSwizzle(int unitIdx, GrGLenum target, const GrGLenum swizzle[]) {
3406 this->setTextureUnit(unitIdx);
3407 if (this->glStandard() == kGLES_GrGLStandard) {
3408 // ES3 added swizzle support but not GL_TEXTURE_SWIZZLE_RGBA.
3409 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SWIZZLE_R, swizzle[0]));
3410 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SWIZZLE_G, swizzle[1]));
3411 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SWIZZLE_B, swizzle[2]));
3412 GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SWIZZLE_A, swizzle[3]));
3413 } else {
3414 GR_STATIC_ASSERT(sizeof(swizzle[0]) == sizeof(GrGLint));
3415 GL_CALL(TexParameteriv(target, GR_GL_TEXTURE_SWIZZLE_RGBA,
3416 reinterpret_cast<const GrGLint*>(swizzle)));
3417 }
3418}
3419
egdaniel080e6732014-12-22 07:35:52 -08003420void GrGLGpu::flushColorWrite(bool writeColor) {
3421 if (!writeColor) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00003422 if (kNo_TriState != fHWWriteToColor) {
3423 GL_CALL(ColorMask(GR_GL_FALSE, GR_GL_FALSE,
3424 GR_GL_FALSE, GR_GL_FALSE));
3425 fHWWriteToColor = kNo_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +00003426 }
bsalomon@google.com978c8c62012-05-21 14:45:49 +00003427 } else {
3428 if (kYes_TriState != fHWWriteToColor) {
3429 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
3430 fHWWriteToColor = kYes_TriState;
3431 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00003432 }
bsalomon3e791242014-12-17 13:43:13 -08003433}
bsalomon@google.comd302f142011-03-03 13:54:13 +00003434
robertphillips5fa7f302016-07-21 09:21:04 -07003435void GrGLGpu::flushDrawFace(GrDrawFace face) {
bsalomon3e791242014-12-17 13:43:13 -08003436 if (fHWDrawFace != face) {
3437 switch (face) {
robertphillips5fa7f302016-07-21 09:21:04 -07003438 case GrDrawFace::kCCW:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00003439 GL_CALL(Enable(GR_GL_CULL_FACE));
3440 GL_CALL(CullFace(GR_GL_BACK));
bsalomon@google.comd302f142011-03-03 13:54:13 +00003441 break;
robertphillips5fa7f302016-07-21 09:21:04 -07003442 case GrDrawFace::kCW:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00003443 GL_CALL(Enable(GR_GL_CULL_FACE));
3444 GL_CALL(CullFace(GR_GL_FRONT));
bsalomon@google.comd302f142011-03-03 13:54:13 +00003445 break;
robertphillips5fa7f302016-07-21 09:21:04 -07003446 case GrDrawFace::kBoth:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00003447 GL_CALL(Disable(GR_GL_CULL_FACE));
bsalomon@google.comd302f142011-03-03 13:54:13 +00003448 break;
3449 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00003450 SkFAIL("Unknown draw face.");
bsalomon@google.comd302f142011-03-03 13:54:13 +00003451 }
bsalomon3e791242014-12-17 13:43:13 -08003452 fHWDrawFace = face;
bsalomon@google.comd302f142011-03-03 13:54:13 +00003453 }
reed@google.comac10a2d2010-12-22 21:39:39 +00003454}
3455
bsalomon861e1032014-12-16 07:33:49 -08003456void GrGLGpu::setTextureUnit(int unit) {
bsalomon1c63bf62014-07-22 13:09:46 -07003457 SkASSERT(unit >= 0 && unit < fHWBoundTextureUniqueIDs.count());
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00003458 if (unit != fHWActiveTextureUnitIdx) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00003459 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit));
bsalomon@google.com49209392012-06-05 15:13:46 +00003460 fHWActiveTextureUnitIdx = unit;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00003461 }
3462}
bsalomon@google.com316f99232011-01-13 21:28:12 +00003463
bsalomon861e1032014-12-16 07:33:49 -08003464void GrGLGpu::setScratchTextureUnit() {
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00003465 // Bind the last texture unit since it is the least likely to be used by GrGLProgram.
bsalomon1c63bf62014-07-22 13:09:46 -07003466 int lastUnitIdx = fHWBoundTextureUniqueIDs.count() - 1;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00003467 if (lastUnitIdx != fHWActiveTextureUnitIdx) {
3468 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + lastUnitIdx));
3469 fHWActiveTextureUnitIdx = lastUnitIdx;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00003470 }
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00003471 // clear out the this field so that if a program does use this unit it will rebind the correct
3472 // texture.
bsalomon1c63bf62014-07-22 13:09:46 -07003473 fHWBoundTextureUniqueIDs[lastUnitIdx] = SK_InvalidUniqueID;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00003474}
3475
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00003476// Determines whether glBlitFramebuffer could be used between src and dst.
bsalomon7ea33f52015-11-22 14:51:00 -08003477static inline bool can_blit_framebuffer(const GrSurface* dst,
3478 const GrSurface* src,
3479 const GrGLGpu* gpu) {
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00003480 if (gpu->glCaps().isConfigRenderable(dst->config(), dst->desc().fSampleCnt > 0) &&
bsalomon083617b2016-02-12 12:10:14 -08003481 gpu->glCaps().isConfigRenderable(src->config(), src->desc().fSampleCnt > 0)) {
3482 switch (gpu->glCaps().blitFramebufferSupport()) {
3483 case GrGLCaps::kNone_BlitFramebufferSupport:
3484 return false;
3485 case GrGLCaps::kNoScalingNoMirroring_BlitFramebufferSupport:
3486 // Our copy surface doesn't support scaling so just check for mirroring.
3487 if (dst->origin() != src->origin()) {
3488 return false;
3489 }
3490 break;
3491 case GrGLCaps::kFull_BlitFramebufferSupport:
3492 break;
3493 }
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00003494 // ES3 doesn't allow framebuffer blits when the src has MSAA and the configs don't match
3495 // or the rects are not the same (not just the same size but have the same edges).
3496 if (GrGLCaps::kES_3_0_MSFBOType == gpu->glCaps().msFBOType() &&
3497 (src->desc().fSampleCnt > 0 || src->config() != dst->config())) {
3498 return false;
3499 }
bsalomon7ea33f52015-11-22 14:51:00 -08003500 const GrGLTexture* dstTex = static_cast<const GrGLTexture*>(dst->asTexture());
3501 if (dstTex && dstTex->target() != GR_GL_TEXTURE_2D) {
3502 return false;
3503 }
3504 const GrGLTexture* srcTex = static_cast<const GrGLTexture*>(dst->asTexture());
3505 if (srcTex && srcTex->target() != GR_GL_TEXTURE_2D) {
3506 return false;
3507 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00003508 return true;
3509 } else {
3510 return false;
3511 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00003512}
bsalomon@google.comeb851172013-04-15 13:51:00 +00003513
bsalomon7ea33f52015-11-22 14:51:00 -08003514static inline bool can_copy_texsubimage(const GrSurface* dst,
3515 const GrSurface* src,
3516 const GrGLGpu* gpu) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00003517 // Table 3.9 of the ES2 spec indicates the supported formats with CopyTexSubImage
3518 // and BGRA isn't in the spec. There doesn't appear to be any extension that adds it. Perhaps
3519 // many drivers would allow it to work, but ANGLE does not.
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00003520 if (kGLES_GrGLStandard == gpu->glStandard() && gpu->glCaps().bgraIsInternalFormat() &&
bsalomon@google.comeb851172013-04-15 13:51:00 +00003521 (kBGRA_8888_GrPixelConfig == dst->config() || kBGRA_8888_GrPixelConfig == src->config())) {
3522 return false;
3523 }
3524 const GrGLRenderTarget* dstRT = static_cast<const GrGLRenderTarget*>(dst->asRenderTarget());
3525 // If dst is multisampled (and uses an extension where there is a separate MSAA renderbuffer)
3526 // then we don't want to copy to the texture but to the MSAA buffer.
egdanield803f272015-03-18 13:01:52 -07003527 if (dstRT && dstRT->renderFBOID() != dstRT->textureFBOID()) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00003528 return false;
3529 }
bsalomon@google.coma2719852013-04-17 14:25:27 +00003530 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
3531 // If the src is multisampled (and uses an extension where there is a separate MSAA
3532 // renderbuffer) then it is an invalid operation to call CopyTexSubImage
egdanield803f272015-03-18 13:01:52 -07003533 if (srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
bsalomon@google.coma2719852013-04-17 14:25:27 +00003534 return false;
3535 }
bsalomon7ea33f52015-11-22 14:51:00 -08003536
3537 const GrGLTexture* dstTex = static_cast<const GrGLTexture*>(dst->asTexture());
3538 // CopyTex(Sub)Image writes to a texture and we have no way of dynamically wrapping a RT in a
3539 // texture.
3540 if (!dstTex) {
3541 return false;
3542 }
3543
3544 const GrGLTexture* srcTex = static_cast<const GrGLTexture*>(src->asTexture());
cblume61214052016-01-26 09:10:48 -08003545
bsalomon7ea33f52015-11-22 14:51:00 -08003546 // Check that we could wrap the source in an FBO, that the dst is TEXTURE_2D, that no mirroring
3547 // is required.
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00003548 if (gpu->glCaps().isConfigRenderable(src->config(), src->desc().fSampleCnt > 0) &&
bsalomon7ea33f52015-11-22 14:51:00 -08003549 !GrPixelConfigIsCompressed(src->config()) &&
3550 (!srcTex || srcTex->target() == GR_GL_TEXTURE_2D) &&
3551 dstTex->target() == GR_GL_TEXTURE_2D &&
3552 dst->origin() == src->origin()) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00003553 return true;
3554 } else {
3555 return false;
3556 }
3557}
3558
3559// If a temporary FBO was created, its non-zero ID is returned. The viewport that the copy rect is
3560// relative to is output.
bsalomon10528f12015-10-14 12:54:52 -07003561void GrGLGpu::bindSurfaceFBOForCopy(GrSurface* surface, GrGLenum fboTarget, GrGLIRect* viewport,
3562 TempFBOTarget tempFBOTarget) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00003563 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(surface->asRenderTarget());
bsalomon083617b2016-02-12 12:10:14 -08003564 if (!rt) {
bsalomon49f085d2014-09-05 13:34:00 -07003565 SkASSERT(surface->asTexture());
bsalomon@google.comeb851172013-04-15 13:51:00 +00003566 GrGLuint texID = static_cast<GrGLTexture*>(surface->asTexture())->textureID();
bsalomon10528f12015-10-14 12:54:52 -07003567 GrGLenum target = static_cast<GrGLTexture*>(surface->asTexture())->target();
egdanield803f272015-03-18 13:01:52 -07003568 GrGLuint* tempFBOID;
3569 tempFBOID = kSrc_TempFBOTarget == tempFBOTarget ? &fTempSrcFBOID : &fTempDstFBOID;
egdaniel0f5f9672015-02-03 11:10:51 -08003570
egdanield803f272015-03-18 13:01:52 -07003571 if (0 == *tempFBOID) {
3572 GR_GL_CALL(this->glInterface(), GenFramebuffers(1, tempFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -08003573 }
3574
egdanield803f272015-03-18 13:01:52 -07003575 fStats.incRenderTargetBinds();
3576 GR_GL_CALL(this->glInterface(), BindFramebuffer(fboTarget, *tempFBOID));
3577 GR_GL_CALL(this->glInterface(), FramebufferTexture2D(fboTarget,
robertphillips754f4e92014-09-18 13:52:08 -07003578 GR_GL_COLOR_ATTACHMENT0,
bsalomon10528f12015-10-14 12:54:52 -07003579 target,
robertphillips754f4e92014-09-18 13:52:08 -07003580 texID,
3581 0));
bsalomon@google.comeb851172013-04-15 13:51:00 +00003582 viewport->fLeft = 0;
3583 viewport->fBottom = 0;
3584 viewport->fWidth = surface->width();
3585 viewport->fHeight = surface->height();
3586 } else {
egdanield803f272015-03-18 13:01:52 -07003587 fStats.incRenderTargetBinds();
3588 GR_GL_CALL(this->glInterface(), BindFramebuffer(fboTarget, rt->renderFBOID()));
bsalomon@google.comeb851172013-04-15 13:51:00 +00003589 *viewport = rt->getViewport();
3590 }
egdaniel0f5f9672015-02-03 11:10:51 -08003591}
3592
bsalomon10528f12015-10-14 12:54:52 -07003593void GrGLGpu::unbindTextureFBOForCopy(GrGLenum fboTarget, GrSurface* surface) {
cblume61214052016-01-26 09:10:48 -08003594 // bindSurfaceFBOForCopy temporarily binds textures that are not render targets to
bsalomon10528f12015-10-14 12:54:52 -07003595 if (!surface->asRenderTarget()) {
3596 SkASSERT(surface->asTexture());
3597 GrGLenum textureTarget = static_cast<GrGLTexture*>(surface->asTexture())->target();
3598 GR_GL_CALL(this->glInterface(), FramebufferTexture2D(fboTarget,
3599 GR_GL_COLOR_ATTACHMENT0,
3600 textureTarget,
3601 0,
3602 0));
3603 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00003604}
3605
egdaniel4bcd62e2016-08-31 07:37:31 -07003606bool GrGLGpu::initDescForDstCopy(const GrRenderTarget* src, GrSurfaceDesc* desc) const {
bsalomon6df86402015-06-01 10:41:49 -07003607 // If the src is a texture, we can implement the blit as a draw assuming the config is
3608 // renderable.
3609 if (src->asTexture() && this->caps()->isConfigRenderable(src->config(), false)) {
3610 desc->fOrigin = kDefault_GrSurfaceOrigin;
3611 desc->fFlags = kRenderTarget_GrSurfaceFlag;
3612 desc->fConfig = src->config();
3613 return true;
3614 }
3615
bsalomon7ea33f52015-11-22 14:51:00 -08003616 const GrGLTexture* srcTexture = static_cast<const GrGLTexture*>(src->asTexture());
3617 if (srcTexture && srcTexture->target() != GR_GL_TEXTURE_2D) {
3618 // Not supported for FBO blit or CopyTexSubImage
3619 return false;
3620 }
3621
bsalomon6df86402015-06-01 10:41:49 -07003622 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
bsalomonf90a02b2014-11-26 12:28:00 -08003623 // possible and we return false to fallback to creating a render target dst for render-to-
3624 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
3625 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
3626
bsalomon5c7d62d2016-06-08 10:02:42 -07003627 GrSurfaceOrigin originForBlitFramebuffer = kDefault_GrSurfaceOrigin;
3628 if (this->glCaps().blitFramebufferSupport() ==
brianosman1d202582016-06-22 08:30:40 -07003629 GrGLCaps::kNoScalingNoMirroring_BlitFramebufferSupport) {
bsalomon5c7d62d2016-06-08 10:02:42 -07003630 originForBlitFramebuffer = src->origin();
3631 }
3632
bsalomon@google.comeb851172013-04-15 13:51:00 +00003633 // Check for format issues with glCopyTexSubImage2D
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00003634 if (kGLES_GrGLStandard == this->glStandard() && this->glCaps().bgraIsInternalFormat() &&
bsalomon@google.comeb851172013-04-15 13:51:00 +00003635 kBGRA_8888_GrPixelConfig == src->config()) {
bsalomonf90a02b2014-11-26 12:28:00 -08003636 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
3637 // then we set up for that, otherwise fail.
3638 if (this->caps()->isConfigRenderable(kBGRA_8888_GrPixelConfig, false)) {
bsalomon5c7d62d2016-06-08 10:02:42 -07003639 desc->fOrigin = originForBlitFramebuffer;
bsalomon6bc1b5f2015-02-23 09:06:38 -08003640 desc->fFlags = kRenderTarget_GrSurfaceFlag;
bsalomonf90a02b2014-11-26 12:28:00 -08003641 desc->fConfig = kBGRA_8888_GrPixelConfig;
3642 return true;
3643 }
3644 return false;
bsalomon@google.coma2719852013-04-17 14:25:27 +00003645 }
3646
egdaniel4bcd62e2016-08-31 07:37:31 -07003647 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src);
3648 if (srcRT->renderFBOID() != srcRT->textureFBOID()) {
bsalomonf90a02b2014-11-26 12:28:00 -08003649 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO blit or
3650 // fail.
3651 if (this->caps()->isConfigRenderable(src->config(), false)) {
bsalomon5c7d62d2016-06-08 10:02:42 -07003652 desc->fOrigin = originForBlitFramebuffer;
bsalomon6bc1b5f2015-02-23 09:06:38 -08003653 desc->fFlags = kRenderTarget_GrSurfaceFlag;
bsalomonf90a02b2014-11-26 12:28:00 -08003654 desc->fConfig = src->config();
3655 return true;
3656 }
3657 return false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00003658 }
bsalomonf90a02b2014-11-26 12:28:00 -08003659
3660 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
3661 desc->fConfig = src->config();
3662 desc->fOrigin = src->origin();
3663 desc->fFlags = kNone_GrSurfaceFlags;
3664 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00003665}
3666
joshualitt1cbdcde2015-08-21 11:53:29 -07003667bool GrGLGpu::onCopySurface(GrSurface* dst,
3668 GrSurface* src,
3669 const SkIRect& srcRect,
3670 const SkIPoint& dstPoint) {
bsalomon7f9b2e42016-01-12 13:29:26 -08003671 // None of our copy methods can handle a swizzle. TODO: Make copySurfaceAsDraw handle the
3672 // swizzle.
3673 if (this->glCaps().glslCaps()->configOutputSwizzle(src->config()) !=
3674 this->glCaps().glslCaps()->configOutputSwizzle(dst->config())) {
3675 return false;
3676 }
bsalomon083617b2016-02-12 12:10:14 -08003677 // Don't prefer copying as a draw if the dst doesn't already have a FBO object.
3678 bool preferCopy = SkToBool(dst->asRenderTarget());
3679 if (preferCopy && src->asTexture()) {
cdaltone2e71c22016-04-07 18:13:29 -07003680 if (this->copySurfaceAsDraw(dst, src, srcRect, dstPoint)) {
3681 return true;
3682 }
bsalomon5df6fee2015-05-18 06:26:15 -07003683 }
cblume61214052016-01-26 09:10:48 -08003684
bsalomon6df86402015-06-01 10:41:49 -07003685 if (can_copy_texsubimage(dst, src, this)) {
3686 this->copySurfaceAsCopyTexSubImage(dst, src, srcRect, dstPoint);
3687 return true;
3688 }
3689
mtklein404b3b22015-05-18 09:29:10 -07003690 if (can_blit_framebuffer(dst, src, this)) {
bsalomon6df86402015-06-01 10:41:49 -07003691 return this->copySurfaceAsBlitFramebuffer(dst, src, srcRect, dstPoint);
3692 }
3693
bsalomon083617b2016-02-12 12:10:14 -08003694 if (!preferCopy && src->asTexture()) {
cdaltone2e71c22016-04-07 18:13:29 -07003695 if (this->copySurfaceAsDraw(dst, src, srcRect, dstPoint)) {
3696 return true;
3697 }
bsalomon083617b2016-02-12 12:10:14 -08003698 }
3699
bsalomon6df86402015-06-01 10:41:49 -07003700 return false;
3701}
3702
cdaltone2e71c22016-04-07 18:13:29 -07003703bool GrGLGpu::createCopyProgram(int progIdx) {
cdaltonc08f1962016-02-12 12:14:06 -08003704 const GrGLSLCaps* glslCaps = this->glCaps().glslCaps();
egdaniel990dbc82016-07-13 14:09:30 -07003705 static const GrSLType kSamplerTypes[3] = { kTexture2DSampler_GrSLType,
3706 kTextureExternalSampler_GrSLType,
3707 kTexture2DRectSampler_GrSLType };
3708 if (kTextureExternalSampler_GrSLType == kSamplerTypes[progIdx] &&
cdaltone2e71c22016-04-07 18:13:29 -07003709 !this->glCaps().glslCaps()->externalTextureSupport()) {
3710 return false;
cdaltondeacc972016-04-06 14:26:33 -07003711 }
egdaniel990dbc82016-07-13 14:09:30 -07003712 if (kTexture2DRectSampler_GrSLType == kSamplerTypes[progIdx] &&
cdaltone2e71c22016-04-07 18:13:29 -07003713 !this->glCaps().rectangleTextureSupport()) {
3714 return false;
3715 }
3716
3717 if (!fCopyProgramArrayBuffer) {
3718 static const GrGLfloat vdata[] = {
3719 0, 0,
3720 0, 1,
3721 1, 0,
3722 1, 1
3723 };
3724 fCopyProgramArrayBuffer.reset(GrGLBuffer::Create(this, sizeof(vdata), kVertex_GrBufferType,
3725 kStatic_GrAccessPattern, vdata));
3726 }
3727 if (!fCopyProgramArrayBuffer) {
3728 return false;
3729 }
3730
3731 SkASSERT(!fCopyPrograms[progIdx].fProgram);
3732 GL_CALL_RET(fCopyPrograms[progIdx].fProgram, CreateProgram());
3733 if (!fCopyPrograms[progIdx].fProgram) {
3734 return false;
3735 }
3736
3737 const char* version = glslCaps->versionDeclString();
3738 GrGLSLShaderVar aVertex("a_vertex", kVec2f_GrSLType, GrShaderVar::kAttribute_TypeModifier);
3739 GrGLSLShaderVar uTexCoordXform("u_texCoordXform", kVec4f_GrSLType,
3740 GrShaderVar::kUniform_TypeModifier);
3741 GrGLSLShaderVar uPosXform("u_posXform", kVec4f_GrSLType,
3742 GrShaderVar::kUniform_TypeModifier);
3743 GrGLSLShaderVar uTexture("u_texture", kSamplerTypes[progIdx],
3744 GrShaderVar::kUniform_TypeModifier);
3745 GrGLSLShaderVar vTexCoord("v_texCoord", kVec2f_GrSLType,
3746 GrShaderVar::kVaryingOut_TypeModifier);
3747 GrGLSLShaderVar oFragColor("o_FragColor", kVec4f_GrSLType,
3748 GrShaderVar::kOut_TypeModifier);
3749
3750 SkString vshaderTxt(version);
3751 if (glslCaps->noperspectiveInterpolationSupport()) {
3752 if (const char* extension = glslCaps->noperspectiveInterpolationExtensionString()) {
3753 vshaderTxt.appendf("#extension %s : require\n", extension);
3754 }
3755 vTexCoord.addModifier("noperspective");
3756 }
3757
3758 aVertex.appendDecl(glslCaps, &vshaderTxt);
3759 vshaderTxt.append(";");
3760 uTexCoordXform.appendDecl(glslCaps, &vshaderTxt);
3761 vshaderTxt.append(";");
3762 uPosXform.appendDecl(glslCaps, &vshaderTxt);
3763 vshaderTxt.append(";");
3764 vTexCoord.appendDecl(glslCaps, &vshaderTxt);
3765 vshaderTxt.append(";");
3766
3767 vshaderTxt.append(
3768 "// Copy Program VS\n"
3769 "void main() {"
3770 " v_texCoord = a_vertex.xy * u_texCoordXform.xy + u_texCoordXform.zw;"
3771 " gl_Position.xy = a_vertex * u_posXform.xy + u_posXform.zw;"
3772 " gl_Position.zw = vec2(0, 1);"
3773 "}"
3774 );
3775
3776 SkString fshaderTxt(version);
3777 if (glslCaps->noperspectiveInterpolationSupport()) {
3778 if (const char* extension = glslCaps->noperspectiveInterpolationExtensionString()) {
3779 fshaderTxt.appendf("#extension %s : require\n", extension);
3780 }
3781 }
egdaniel990dbc82016-07-13 14:09:30 -07003782 if (kSamplerTypes[progIdx] == kTextureExternalSampler_GrSLType) {
cdaltone2e71c22016-04-07 18:13:29 -07003783 fshaderTxt.appendf("#extension %s : require\n",
3784 glslCaps->externalTextureExtensionString());
3785 }
3786 GrGLSLAppendDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision, *glslCaps,
3787 &fshaderTxt);
3788 vTexCoord.setTypeModifier(GrShaderVar::kVaryingIn_TypeModifier);
3789 vTexCoord.appendDecl(glslCaps, &fshaderTxt);
3790 fshaderTxt.append(";");
3791 uTexture.appendDecl(glslCaps, &fshaderTxt);
3792 fshaderTxt.append(";");
cdaltone2e71c22016-04-07 18:13:29 -07003793 fshaderTxt.appendf(
3794 "// Copy Program FS\n"
3795 "void main() {"
ethannicholasdcfe6db2016-10-10 10:09:00 -07003796 " sk_FragColor = %s(u_texture, v_texCoord);"
cdaltone2e71c22016-04-07 18:13:29 -07003797 "}",
cdaltone2e71c22016-04-07 18:13:29 -07003798 GrGLSLTexture2DFunctionName(kVec2f_GrSLType, kSamplerTypes[progIdx], this->glslGeneration())
3799 );
3800
3801 const char* str;
3802 GrGLint length;
3803
3804 str = vshaderTxt.c_str();
3805 length = SkToInt(vshaderTxt.size());
3806 GrGLuint vshader = GrGLCompileAndAttachShader(*fGLContext, fCopyPrograms[progIdx].fProgram,
3807 GR_GL_VERTEX_SHADER, &str, &length, 1,
3808 &fStats);
3809
3810 str = fshaderTxt.c_str();
3811 length = SkToInt(fshaderTxt.size());
3812 GrGLuint fshader = GrGLCompileAndAttachShader(*fGLContext, fCopyPrograms[progIdx].fProgram,
3813 GR_GL_FRAGMENT_SHADER, &str, &length, 1,
3814 &fStats);
3815
3816 GL_CALL(LinkProgram(fCopyPrograms[progIdx].fProgram));
3817
3818 GL_CALL_RET(fCopyPrograms[progIdx].fTextureUniform,
3819 GetUniformLocation(fCopyPrograms[progIdx].fProgram, "u_texture"));
3820 GL_CALL_RET(fCopyPrograms[progIdx].fPosXformUniform,
3821 GetUniformLocation(fCopyPrograms[progIdx].fProgram, "u_posXform"));
3822 GL_CALL_RET(fCopyPrograms[progIdx].fTexCoordXformUniform,
3823 GetUniformLocation(fCopyPrograms[progIdx].fProgram, "u_texCoordXform"));
3824
3825 GL_CALL(BindAttribLocation(fCopyPrograms[progIdx].fProgram, 0, "a_vertex"));
3826
3827 GL_CALL(DeleteShader(vshader));
3828 GL_CALL(DeleteShader(fshader));
3829
3830 return true;
bsalomon6df86402015-06-01 10:41:49 -07003831}
3832
brianosman33f6b3f2016-06-02 05:49:21 -07003833bool GrGLGpu::createMipmapProgram(int progIdx) {
3834 const bool oddWidth = SkToBool(progIdx & 0x2);
3835 const bool oddHeight = SkToBool(progIdx & 0x1);
3836 const int numTaps = (oddWidth ? 2 : 1) * (oddHeight ? 2 : 1);
3837
3838 const GrGLSLCaps* glslCaps = this->glCaps().glslCaps();
3839
3840 SkASSERT(!fMipmapPrograms[progIdx].fProgram);
3841 GL_CALL_RET(fMipmapPrograms[progIdx].fProgram, CreateProgram());
3842 if (!fMipmapPrograms[progIdx].fProgram) {
3843 return false;
3844 }
3845
3846 const char* version = glslCaps->versionDeclString();
3847 GrGLSLShaderVar aVertex("a_vertex", kVec2f_GrSLType, GrShaderVar::kAttribute_TypeModifier);
3848 GrGLSLShaderVar uTexCoordXform("u_texCoordXform", kVec4f_GrSLType,
3849 GrShaderVar::kUniform_TypeModifier);
egdaniel990dbc82016-07-13 14:09:30 -07003850 GrGLSLShaderVar uTexture("u_texture", kTexture2DSampler_GrSLType,
3851 GrShaderVar::kUniform_TypeModifier);
brianosman33f6b3f2016-06-02 05:49:21 -07003852 // We need 1, 2, or 4 texture coordinates (depending on parity of each dimension):
3853 GrGLSLShaderVar vTexCoords[] = {
3854 GrGLSLShaderVar("v_texCoord0", kVec2f_GrSLType, GrShaderVar::kVaryingOut_TypeModifier),
3855 GrGLSLShaderVar("v_texCoord1", kVec2f_GrSLType, GrShaderVar::kVaryingOut_TypeModifier),
3856 GrGLSLShaderVar("v_texCoord2", kVec2f_GrSLType, GrShaderVar::kVaryingOut_TypeModifier),
3857 GrGLSLShaderVar("v_texCoord3", kVec2f_GrSLType, GrShaderVar::kVaryingOut_TypeModifier),
3858 };
3859 GrGLSLShaderVar oFragColor("o_FragColor", kVec4f_GrSLType,
3860 GrShaderVar::kOut_TypeModifier);
3861
3862 SkString vshaderTxt(version);
3863 if (glslCaps->noperspectiveInterpolationSupport()) {
3864 if (const char* extension = glslCaps->noperspectiveInterpolationExtensionString()) {
3865 vshaderTxt.appendf("#extension %s : require\n", extension);
3866 }
3867 vTexCoords[0].addModifier("noperspective");
3868 vTexCoords[1].addModifier("noperspective");
3869 vTexCoords[2].addModifier("noperspective");
3870 vTexCoords[3].addModifier("noperspective");
3871 }
3872
3873 aVertex.appendDecl(glslCaps, &vshaderTxt);
3874 vshaderTxt.append(";");
3875 uTexCoordXform.appendDecl(glslCaps, &vshaderTxt);
3876 vshaderTxt.append(";");
3877 for (int i = 0; i < numTaps; ++i) {
3878 vTexCoords[i].appendDecl(glslCaps, &vshaderTxt);
3879 vshaderTxt.append(";");
3880 }
3881
3882 vshaderTxt.append(
3883 "// Mipmap Program VS\n"
3884 "void main() {"
3885 " gl_Position.xy = a_vertex * vec2(2, 2) - vec2(1, 1);"
3886 " gl_Position.zw = vec2(0, 1);"
3887 );
3888
3889 // Insert texture coordinate computation:
3890 if (oddWidth && oddHeight) {
3891 vshaderTxt.append(
3892 " v_texCoord0 = a_vertex.xy * u_texCoordXform.yw;"
3893 " v_texCoord1 = a_vertex.xy * u_texCoordXform.yw + vec2(u_texCoordXform.x, 0);"
3894 " v_texCoord2 = a_vertex.xy * u_texCoordXform.yw + vec2(0, u_texCoordXform.z);"
3895 " v_texCoord3 = a_vertex.xy * u_texCoordXform.yw + u_texCoordXform.xz;"
3896 );
3897 } else if (oddWidth) {
3898 vshaderTxt.append(
3899 " v_texCoord0 = a_vertex.xy * vec2(u_texCoordXform.y, 1);"
3900 " v_texCoord1 = a_vertex.xy * vec2(u_texCoordXform.y, 1) + vec2(u_texCoordXform.x, 0);"
3901 );
3902 } else if (oddHeight) {
3903 vshaderTxt.append(
3904 " v_texCoord0 = a_vertex.xy * vec2(1, u_texCoordXform.w);"
3905 " v_texCoord1 = a_vertex.xy * vec2(1, u_texCoordXform.w) + vec2(0, u_texCoordXform.z);"
3906 );
3907 } else {
3908 vshaderTxt.append(
3909 " v_texCoord0 = a_vertex.xy;"
3910 );
3911 }
3912
3913 vshaderTxt.append("}");
3914
3915 SkString fshaderTxt(version);
3916 if (glslCaps->noperspectiveInterpolationSupport()) {
3917 if (const char* extension = glslCaps->noperspectiveInterpolationExtensionString()) {
3918 fshaderTxt.appendf("#extension %s : require\n", extension);
3919 }
3920 }
3921 GrGLSLAppendDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision, *glslCaps,
3922 &fshaderTxt);
3923 for (int i = 0; i < numTaps; ++i) {
3924 vTexCoords[i].setTypeModifier(GrShaderVar::kVaryingIn_TypeModifier);
3925 vTexCoords[i].appendDecl(glslCaps, &fshaderTxt);
3926 fshaderTxt.append(";");
3927 }
3928 uTexture.appendDecl(glslCaps, &fshaderTxt);
3929 fshaderTxt.append(";");
egdaniel990dbc82016-07-13 14:09:30 -07003930 const char* sampleFunction = GrGLSLTexture2DFunctionName(kVec2f_GrSLType,
3931 kTexture2DSampler_GrSLType,
brianosman33f6b3f2016-06-02 05:49:21 -07003932 this->glslGeneration());
3933 fshaderTxt.append(
3934 "// Mipmap Program FS\n"
3935 "void main() {"
3936 );
3937
3938 if (oddWidth && oddHeight) {
3939 fshaderTxt.appendf(
ethannicholasdcfe6db2016-10-10 10:09:00 -07003940 " sk_FragColor = (%s(u_texture, v_texCoord0) + %s(u_texture, v_texCoord1) + "
3941 " %s(u_texture, v_texCoord2) + %s(u_texture, v_texCoord3)) * 0.25;",
3942 sampleFunction, sampleFunction, sampleFunction, sampleFunction
brianosman33f6b3f2016-06-02 05:49:21 -07003943 );
3944 } else if (oddWidth || oddHeight) {
3945 fshaderTxt.appendf(
ethannicholasdcfe6db2016-10-10 10:09:00 -07003946 " sk_FragColor = (%s(u_texture, v_texCoord0) + %s(u_texture, v_texCoord1)) * 0.5;",
3947 sampleFunction, sampleFunction
brianosman33f6b3f2016-06-02 05:49:21 -07003948 );
3949 } else {
3950 fshaderTxt.appendf(
ethannicholasdcfe6db2016-10-10 10:09:00 -07003951 " sk_FragColor = %s(u_texture, v_texCoord0);",
3952 sampleFunction
brianosman33f6b3f2016-06-02 05:49:21 -07003953 );
3954 }
3955
3956 fshaderTxt.append("}");
3957
3958 const char* str;
3959 GrGLint length;
3960
3961 str = vshaderTxt.c_str();
3962 length = SkToInt(vshaderTxt.size());
3963 GrGLuint vshader = GrGLCompileAndAttachShader(*fGLContext, fMipmapPrograms[progIdx].fProgram,
3964 GR_GL_VERTEX_SHADER, &str, &length, 1,
3965 &fStats);
3966
3967 str = fshaderTxt.c_str();
3968 length = SkToInt(fshaderTxt.size());
3969 GrGLuint fshader = GrGLCompileAndAttachShader(*fGLContext, fMipmapPrograms[progIdx].fProgram,
3970 GR_GL_FRAGMENT_SHADER, &str, &length, 1,
3971 &fStats);
3972
3973 GL_CALL(LinkProgram(fMipmapPrograms[progIdx].fProgram));
3974
3975 GL_CALL_RET(fMipmapPrograms[progIdx].fTextureUniform,
3976 GetUniformLocation(fMipmapPrograms[progIdx].fProgram, "u_texture"));
3977 GL_CALL_RET(fMipmapPrograms[progIdx].fTexCoordXformUniform,
3978 GetUniformLocation(fMipmapPrograms[progIdx].fProgram, "u_texCoordXform"));
3979
3980 GL_CALL(BindAttribLocation(fMipmapPrograms[progIdx].fProgram, 0, "a_vertex"));
3981
3982 GL_CALL(DeleteShader(vshader));
3983 GL_CALL(DeleteShader(fshader));
3984
3985 return true;
3986}
3987
cdaltone2e71c22016-04-07 18:13:29 -07003988bool GrGLGpu::createWireRectProgram() {
3989 if (!fWireRectArrayBuffer) {
3990 static const GrGLfloat vdata[] = {
3991 0, 0,
3992 0, 1,
3993 1, 1,
3994 1, 0
3995 };
3996 fWireRectArrayBuffer.reset(GrGLBuffer::Create(this, sizeof(vdata), kVertex_GrBufferType,
3997 kStatic_GrAccessPattern, vdata));
3998 if (!fWireRectArrayBuffer) {
3999 return false;
4000 }
4001 }
4002
bsalomon6dea83f2015-12-03 12:58:06 -08004003 SkASSERT(!fWireRectProgram.fProgram);
cdaltone2e71c22016-04-07 18:13:29 -07004004 GL_CALL_RET(fWireRectProgram.fProgram, CreateProgram());
4005 if (!fWireRectProgram.fProgram) {
4006 return false;
4007 }
4008
bsalomon6dea83f2015-12-03 12:58:06 -08004009 GrGLSLShaderVar uColor("u_color", kVec4f_GrSLType, GrShaderVar::kUniform_TypeModifier);
4010 GrGLSLShaderVar uRect("u_rect", kVec4f_GrSLType, GrShaderVar::kUniform_TypeModifier);
4011 GrGLSLShaderVar aVertex("a_vertex", kVec2f_GrSLType, GrShaderVar::kAttribute_TypeModifier);
4012 const char* version = this->glCaps().glslCaps()->versionDeclString();
4013
4014 // The rect uniform specifies the rectangle in NDC space as a vec4 (left,top,right,bottom). The
4015 // program is used with a vbo containing the unit square. Vertices are computed from the rect
4016 // uniform using the 4 vbo vertices.
4017 SkString vshaderTxt(version);
4018 aVertex.appendDecl(this->glCaps().glslCaps(), &vshaderTxt);
4019 vshaderTxt.append(";");
4020 uRect.appendDecl(this->glCaps().glslCaps(), &vshaderTxt);
4021 vshaderTxt.append(";");
4022 vshaderTxt.append(
4023 "// Wire Rect Program VS\n"
4024 "void main() {"
4025 " gl_Position.x = u_rect.x + a_vertex.x * (u_rect.z - u_rect.x);"
4026 " gl_Position.y = u_rect.y + a_vertex.y * (u_rect.w - u_rect.y);"
4027 " gl_Position.zw = vec2(0, 1);"
4028 "}"
4029 );
4030
4031 GrGLSLShaderVar oFragColor("o_FragColor", kVec4f_GrSLType, GrShaderVar::kOut_TypeModifier);
4032
4033 SkString fshaderTxt(version);
4034 GrGLSLAppendDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision,
4035 *this->glCaps().glslCaps(),
4036 &fshaderTxt);
4037 uColor.appendDecl(this->glCaps().glslCaps(), &fshaderTxt);
4038 fshaderTxt.append(";");
bsalomon6dea83f2015-12-03 12:58:06 -08004039 fshaderTxt.appendf(
4040 "// Write Rect Program FS\n"
4041 "void main() {"
ethannicholasdcfe6db2016-10-10 10:09:00 -07004042 " sk_FragColor = %s;"
bsalomon6dea83f2015-12-03 12:58:06 -08004043 "}",
bsalomon6dea83f2015-12-03 12:58:06 -08004044 uColor.c_str()
4045 );
4046
bsalomon6dea83f2015-12-03 12:58:06 -08004047 const char* str;
4048 GrGLint length;
4049
4050 str = vshaderTxt.c_str();
4051 length = SkToInt(vshaderTxt.size());
4052 GrGLuint vshader = GrGLCompileAndAttachShader(*fGLContext, fWireRectProgram.fProgram,
4053 GR_GL_VERTEX_SHADER, &str, &length, 1,
4054 &fStats);
4055
4056 str = fshaderTxt.c_str();
4057 length = SkToInt(fshaderTxt.size());
4058 GrGLuint fshader = GrGLCompileAndAttachShader(*fGLContext, fWireRectProgram.fProgram,
4059 GR_GL_FRAGMENT_SHADER, &str, &length, 1,
4060 &fStats);
4061
4062 GL_CALL(LinkProgram(fWireRectProgram.fProgram));
4063
4064 GL_CALL_RET(fWireRectProgram.fColorUniform,
4065 GetUniformLocation(fWireRectProgram.fProgram, "u_color"));
4066 GL_CALL_RET(fWireRectProgram.fRectUniform,
4067 GetUniformLocation(fWireRectProgram.fProgram, "u_rect"));
4068 GL_CALL(BindAttribLocation(fWireRectProgram.fProgram, 0, "a_vertex"));
4069
4070 GL_CALL(DeleteShader(vshader));
4071 GL_CALL(DeleteShader(fshader));
cdaltone2e71c22016-04-07 18:13:29 -07004072
4073 return true;
bsalomon6dea83f2015-12-03 12:58:06 -08004074}
4075
4076void GrGLGpu::drawDebugWireRect(GrRenderTarget* rt, const SkIRect& rect, GrColor color) {
bsalomon7f9b2e42016-01-12 13:29:26 -08004077 // TODO: This should swizzle the output to match dst's config, though it is a debugging
4078 // visualization.
4079
bsalomon6dea83f2015-12-03 12:58:06 -08004080 this->handleDirtyContext();
4081 if (!fWireRectProgram.fProgram) {
cdaltone2e71c22016-04-07 18:13:29 -07004082 if (!this->createWireRectProgram()) {
4083 SkDebugf("Failed to create wire rect program.\n");
4084 return;
4085 }
bsalomon6dea83f2015-12-03 12:58:06 -08004086 }
4087
4088 int w = rt->width();
4089 int h = rt->height();
4090
4091 // Compute the edges of the rectangle (top,left,right,bottom) in NDC space. Must consider
4092 // whether the render target is flipped or not.
4093 GrGLfloat edges[4];
4094 edges[0] = SkIntToScalar(rect.fLeft) + 0.5f;
4095 edges[2] = SkIntToScalar(rect.fRight) - 0.5f;
4096 if (kBottomLeft_GrSurfaceOrigin == rt->origin()) {
4097 edges[1] = h - (SkIntToScalar(rect.fTop) + 0.5f);
4098 edges[3] = h - (SkIntToScalar(rect.fBottom) - 0.5f);
4099 } else {
4100 edges[1] = SkIntToScalar(rect.fTop) + 0.5f;
4101 edges[3] = SkIntToScalar(rect.fBottom) - 0.5f;
4102 }
4103 edges[0] = 2 * edges[0] / w - 1.0f;
4104 edges[1] = 2 * edges[1] / h - 1.0f;
4105 edges[2] = 2 * edges[2] / w - 1.0f;
4106 edges[3] = 2 * edges[3] / h - 1.0f;
4107
4108 GrGLfloat channels[4];
4109 static const GrGLfloat scale255 = 1.f / 255.f;
4110 channels[0] = GrColorUnpackR(color) * scale255;
4111 channels[1] = GrColorUnpackG(color) * scale255;
4112 channels[2] = GrColorUnpackB(color) * scale255;
4113 channels[3] = GrColorUnpackA(color) * scale255;
4114
4115 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(rt->asRenderTarget());
4116 this->flushRenderTarget(glRT, &rect);
4117
4118 GL_CALL(UseProgram(fWireRectProgram.fProgram));
4119 fHWProgramID = fWireRectProgram.fProgram;
4120
cdaltone2e71c22016-04-07 18:13:29 -07004121 fHWVertexArrayState.setVertexArrayID(this, 0);
bsalomon6dea83f2015-12-03 12:58:06 -08004122
cdaltone2e71c22016-04-07 18:13:29 -07004123 GrGLAttribArrayState* attribs = fHWVertexArrayState.bindInternalVertexArray(this);
cdalton793dc262016-02-08 10:11:47 -08004124 attribs->set(this, 0, fWireRectArrayBuffer, kVec2f_GrVertexAttribType, 2 * sizeof(GrGLfloat),
4125 0);
bsalomon6dea83f2015-12-03 12:58:06 -08004126 attribs->disableUnusedArrays(this, 0x1);
4127
4128 GL_CALL(Uniform4fv(fWireRectProgram.fRectUniform, 1, edges));
4129 GL_CALL(Uniform4fv(fWireRectProgram.fColorUniform, 1, channels));
4130
4131 GrXferProcessor::BlendInfo blendInfo;
4132 blendInfo.reset();
bsalomon7f9b2e42016-01-12 13:29:26 -08004133 this->flushBlend(blendInfo, GrSwizzle::RGBA());
bsalomon6dea83f2015-12-03 12:58:06 -08004134 this->flushColorWrite(true);
robertphillips5fa7f302016-07-21 09:21:04 -07004135 this->flushDrawFace(GrDrawFace::kBoth);
cdaltonaf8bc7d2016-02-05 09:35:20 -08004136 this->flushHWAAState(glRT, false, false);
bsalomon6dea83f2015-12-03 12:58:06 -08004137 this->disableScissor();
csmartdalton28341fa2016-08-17 10:00:21 -07004138 this->disableWindowRectangles();
bsalomon6dea83f2015-12-03 12:58:06 -08004139 GrStencilSettings stencil;
4140 stencil.setDisabled();
4141 this->flushStencil(stencil);
4142
4143 GL_CALL(DrawArrays(GR_GL_LINE_LOOP, 0, 4));
4144}
4145
4146
cdaltone2e71c22016-04-07 18:13:29 -07004147bool GrGLGpu::copySurfaceAsDraw(GrSurface* dst,
bsalomon6df86402015-06-01 10:41:49 -07004148 GrSurface* src,
4149 const SkIRect& srcRect,
4150 const SkIPoint& dstPoint) {
cdaltone2e71c22016-04-07 18:13:29 -07004151 GrGLTexture* srcTex = static_cast<GrGLTexture*>(src->asTexture());
4152 int progIdx = TextureTargetToCopyProgramIdx(srcTex->target());
4153
4154 if (!fCopyPrograms[progIdx].fProgram) {
4155 if (!this->createCopyProgram(progIdx)) {
4156 SkDebugf("Failed to create copy program.\n");
4157 return false;
4158 }
4159 }
4160
bsalomon6df86402015-06-01 10:41:49 -07004161 int w = srcRect.width();
4162 int h = srcRect.height();
4163
bsalomon6df86402015-06-01 10:41:49 -07004164 GrTextureParams params(SkShader::kClamp_TileMode, GrTextureParams::kNone_FilterMode);
brianosmana6359362016-03-21 06:55:37 -07004165 this->bindTexture(0, params, true, srcTex);
bsalomon6df86402015-06-01 10:41:49 -07004166
bsalomon083617b2016-02-12 12:10:14 -08004167 GrGLIRect dstVP;
4168 this->bindSurfaceFBOForCopy(dst, GR_GL_FRAMEBUFFER, &dstVP, kDst_TempFBOTarget);
4169 this->flushViewport(dstVP);
4170 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
4171
bsalomon6df86402015-06-01 10:41:49 -07004172 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, w, h);
bsalomon6df86402015-06-01 10:41:49 -07004173
bsalomon7ea33f52015-11-22 14:51:00 -08004174 GL_CALL(UseProgram(fCopyPrograms[progIdx].fProgram));
4175 fHWProgramID = fCopyPrograms[progIdx].fProgram;
bsalomon6df86402015-06-01 10:41:49 -07004176
cdaltone2e71c22016-04-07 18:13:29 -07004177 fHWVertexArrayState.setVertexArrayID(this, 0);
bsalomon6df86402015-06-01 10:41:49 -07004178
cdaltone2e71c22016-04-07 18:13:29 -07004179 GrGLAttribArrayState* attribs = fHWVertexArrayState.bindInternalVertexArray(this);
cdalton793dc262016-02-08 10:11:47 -08004180 attribs->set(this, 0, fCopyProgramArrayBuffer, kVec2f_GrVertexAttribType, 2 * sizeof(GrGLfloat),
4181 0);
bsalomond6246342015-06-04 13:57:00 -07004182 attribs->disableUnusedArrays(this, 0x1);
bsalomon6df86402015-06-01 10:41:49 -07004183
4184 // dst rect edges in NDC (-1 to 1)
4185 int dw = dst->width();
4186 int dh = dst->height();
4187 GrGLfloat dx0 = 2.f * dstPoint.fX / dw - 1.f;
4188 GrGLfloat dx1 = 2.f * (dstPoint.fX + w) / dw - 1.f;
4189 GrGLfloat dy0 = 2.f * dstPoint.fY / dh - 1.f;
4190 GrGLfloat dy1 = 2.f * (dstPoint.fY + h) / dh - 1.f;
4191 if (kBottomLeft_GrSurfaceOrigin == dst->origin()) {
4192 dy0 = -dy0;
4193 dy1 = -dy1;
4194 }
4195
bsalomone5286e02016-01-14 09:24:09 -08004196 GrGLfloat sx0 = (GrGLfloat)srcRect.fLeft;
4197 GrGLfloat sx1 = (GrGLfloat)(srcRect.fLeft + w);
4198 GrGLfloat sy0 = (GrGLfloat)srcRect.fTop;
4199 GrGLfloat sy1 = (GrGLfloat)(srcRect.fTop + h);
bsalomon6df86402015-06-01 10:41:49 -07004200 int sh = src->height();
bsalomon6df86402015-06-01 10:41:49 -07004201 if (kBottomLeft_GrSurfaceOrigin == src->origin()) {
bsalomone5286e02016-01-14 09:24:09 -08004202 sy0 = sh - sy0;
4203 sy1 = sh - sy1;
4204 }
4205 // src rect edges in normalized texture space (0 to 1) unless we're using a RECTANGLE texture.
4206 GrGLenum srcTarget = srcTex->target();
4207 if (GR_GL_TEXTURE_RECTANGLE != srcTarget) {
4208 int sw = src->width();
4209 sx0 /= sw;
4210 sx1 /= sw;
4211 sy0 /= sh;
4212 sy1 /= sh;
bsalomon6df86402015-06-01 10:41:49 -07004213 }
4214
bsalomon7ea33f52015-11-22 14:51:00 -08004215 GL_CALL(Uniform4f(fCopyPrograms[progIdx].fPosXformUniform, dx1 - dx0, dy1 - dy0, dx0, dy0));
4216 GL_CALL(Uniform4f(fCopyPrograms[progIdx].fTexCoordXformUniform,
4217 sx1 - sx0, sy1 - sy0, sx0, sy0));
4218 GL_CALL(Uniform1i(fCopyPrograms[progIdx].fTextureUniform, 0));
bsalomon6df86402015-06-01 10:41:49 -07004219
4220 GrXferProcessor::BlendInfo blendInfo;
4221 blendInfo.reset();
bsalomon7f9b2e42016-01-12 13:29:26 -08004222 this->flushBlend(blendInfo, GrSwizzle::RGBA());
bsalomon6df86402015-06-01 10:41:49 -07004223 this->flushColorWrite(true);
robertphillips5fa7f302016-07-21 09:21:04 -07004224 this->flushDrawFace(GrDrawFace::kBoth);
bsalomon083617b2016-02-12 12:10:14 -08004225 this->flushHWAAState(nullptr, false, false);
bsalomon6df86402015-06-01 10:41:49 -07004226 this->disableScissor();
csmartdalton28341fa2016-08-17 10:00:21 -07004227 this->disableWindowRectangles();
bsalomon6df86402015-06-01 10:41:49 -07004228 GrStencilSettings stencil;
4229 stencil.setDisabled();
4230 this->flushStencil(stencil);
4231
4232 GL_CALL(DrawArrays(GR_GL_TRIANGLE_STRIP, 0, 4));
bsalomon083617b2016-02-12 12:10:14 -08004233 this->unbindTextureFBOForCopy(GR_GL_FRAMEBUFFER, dst);
4234 this->didWriteToSurface(dst, &dstRect);
4235
cdaltone2e71c22016-04-07 18:13:29 -07004236 return true;
bsalomon6df86402015-06-01 10:41:49 -07004237}
4238
4239void GrGLGpu::copySurfaceAsCopyTexSubImage(GrSurface* dst,
4240 GrSurface* src,
4241 const SkIRect& srcRect,
4242 const SkIPoint& dstPoint) {
4243 SkASSERT(can_copy_texsubimage(dst, src, this));
bsalomon6df86402015-06-01 10:41:49 -07004244 GrGLIRect srcVP;
bsalomon10528f12015-10-14 12:54:52 -07004245 this->bindSurfaceFBOForCopy(src, GR_GL_FRAMEBUFFER, &srcVP, kSrc_TempFBOTarget);
bsalomon083617b2016-02-12 12:10:14 -08004246 GrGLTexture* dstTex = static_cast<GrGLTexture *>(dst->asTexture());
bsalomon6df86402015-06-01 10:41:49 -07004247 SkASSERT(dstTex);
4248 // We modified the bound FBO
4249 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
4250 GrGLIRect srcGLRect;
4251 srcGLRect.setRelativeTo(srcVP,
4252 srcRect.fLeft,
4253 srcRect.fTop,
4254 srcRect.width(),
4255 srcRect.height(),
4256 src->origin());
4257
4258 this->setScratchTextureUnit();
bsalomon10528f12015-10-14 12:54:52 -07004259 GL_CALL(BindTexture(dstTex->target(), dstTex->textureID()));
bsalomon6df86402015-06-01 10:41:49 -07004260 GrGLint dstY;
4261 if (kBottomLeft_GrSurfaceOrigin == dst->origin()) {
4262 dstY = dst->height() - (dstPoint.fY + srcGLRect.fHeight);
4263 } else {
4264 dstY = dstPoint.fY;
4265 }
bsalomon10528f12015-10-14 12:54:52 -07004266 GL_CALL(CopyTexSubImage2D(dstTex->target(), 0,
bsalomon083617b2016-02-12 12:10:14 -08004267 dstPoint.fX, dstY,
4268 srcGLRect.fLeft, srcGLRect.fBottom,
4269 srcGLRect.fWidth, srcGLRect.fHeight));
bsalomon10528f12015-10-14 12:54:52 -07004270 this->unbindTextureFBOForCopy(GR_GL_FRAMEBUFFER, src);
bsalomon083617b2016-02-12 12:10:14 -08004271 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
4272 srcRect.width(), srcRect.height());
4273 this->didWriteToSurface(dst, &dstRect);
bsalomon6df86402015-06-01 10:41:49 -07004274}
4275
4276bool GrGLGpu::copySurfaceAsBlitFramebuffer(GrSurface* dst,
4277 GrSurface* src,
4278 const SkIRect& srcRect,
4279 const SkIPoint& dstPoint) {
4280 SkASSERT(can_blit_framebuffer(dst, src, this));
4281 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
4282 srcRect.width(), srcRect.height());
4283 if (dst == src) {
4284 if (SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect)) {
4285 return false;
mtklein404b3b22015-05-18 09:29:10 -07004286 }
bsalomon5df6fee2015-05-18 06:26:15 -07004287 }
bsalomon6df86402015-06-01 10:41:49 -07004288
bsalomon6df86402015-06-01 10:41:49 -07004289 GrGLIRect dstVP;
4290 GrGLIRect srcVP;
bsalomon10528f12015-10-14 12:54:52 -07004291 this->bindSurfaceFBOForCopy(dst, GR_GL_DRAW_FRAMEBUFFER, &dstVP, kDst_TempFBOTarget);
4292 this->bindSurfaceFBOForCopy(src, GR_GL_READ_FRAMEBUFFER, &srcVP, kSrc_TempFBOTarget);
bsalomon6df86402015-06-01 10:41:49 -07004293 // We modified the bound FBO
4294 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
4295 GrGLIRect srcGLRect;
4296 GrGLIRect dstGLRect;
4297 srcGLRect.setRelativeTo(srcVP,
4298 srcRect.fLeft,
4299 srcRect.fTop,
4300 srcRect.width(),
4301 srcRect.height(),
4302 src->origin());
4303 dstGLRect.setRelativeTo(dstVP,
4304 dstRect.fLeft,
4305 dstRect.fTop,
4306 dstRect.width(),
4307 dstRect.height(),
4308 dst->origin());
4309
4310 // BlitFrameBuffer respects the scissor, so disable it.
4311 this->disableScissor();
csmartdalton28341fa2016-08-17 10:00:21 -07004312 this->disableWindowRectangles();
bsalomon6df86402015-06-01 10:41:49 -07004313
4314 GrGLint srcY0;
4315 GrGLint srcY1;
4316 // Does the blit need to y-mirror or not?
4317 if (src->origin() == dst->origin()) {
4318 srcY0 = srcGLRect.fBottom;
4319 srcY1 = srcGLRect.fBottom + srcGLRect.fHeight;
4320 } else {
4321 srcY0 = srcGLRect.fBottom + srcGLRect.fHeight;
4322 srcY1 = srcGLRect.fBottom;
4323 }
4324 GL_CALL(BlitFramebuffer(srcGLRect.fLeft,
4325 srcY0,
4326 srcGLRect.fLeft + srcGLRect.fWidth,
4327 srcY1,
4328 dstGLRect.fLeft,
4329 dstGLRect.fBottom,
4330 dstGLRect.fLeft + dstGLRect.fWidth,
4331 dstGLRect.fBottom + dstGLRect.fHeight,
4332 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
bsalomon10528f12015-10-14 12:54:52 -07004333 this->unbindTextureFBOForCopy(GR_GL_DRAW_FRAMEBUFFER, dst);
4334 this->unbindTextureFBOForCopy(GR_GL_READ_FRAMEBUFFER, src);
bsalomon083617b2016-02-12 12:10:14 -08004335 this->didWriteToSurface(dst, &dstRect);
bsalomon6df86402015-06-01 10:41:49 -07004336 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00004337}
4338
brianosman33f6b3f2016-06-02 05:49:21 -07004339// Manual implementation of mipmap generation, to work around driver bugs w/sRGB.
4340// Uses draw calls to do a series of downsample operations to successive mips.
4341// If this returns false, then the calling code falls back to using glGenerateMipmap.
4342bool GrGLGpu::generateMipmap(GrGLTexture* texture, bool gammaCorrect) {
brianosman09563ce2016-06-02 08:59:34 -07004343 // Our iterative downsample requires the ability to limit which level we're sampling:
4344 if (!this->glCaps().doManualMipmapping()) {
brianosman33f6b3f2016-06-02 05:49:21 -07004345 return false;
4346 }
4347
4348 // Mipmaps are only supported on 2D textures:
4349 if (GR_GL_TEXTURE_2D != texture->target()) {
4350 return false;
4351 }
4352
4353 // We need to be able to render to the texture for this to work:
4354 if (!this->caps()->isConfigRenderable(texture->config(), false)) {
4355 return false;
4356 }
4357
brianosman33f6b3f2016-06-02 05:49:21 -07004358 // If we're mipping an sRGB texture, we need to ensure FB sRGB is correct:
4359 if (GrPixelConfigIsSRGB(texture->config())) {
4360 // If we have write-control, just set the state that we want:
4361 if (this->glCaps().srgbWriteControl()) {
4362 this->flushFramebufferSRGB(gammaCorrect);
4363 } else if (!gammaCorrect) {
4364 // If we don't have write-control we can't do non-gamma-correct mipmapping:
4365 return false;
4366 }
4367 }
4368
4369 int width = texture->width();
4370 int height = texture->height();
4371 int levelCount = SkMipMap::ComputeLevelCount(width, height) + 1;
4372
4373 // Define all mips, if we haven't previously done so:
4374 if (0 == texture->texturePriv().maxMipMapLevel()) {
4375 GrGLenum internalFormat;
4376 GrGLenum externalFormat;
4377 GrGLenum externalType;
4378 if (!this->glCaps().getTexImageFormats(texture->config(), texture->config(),
4379 &internalFormat, &externalFormat, &externalType)) {
4380 return false;
4381 }
4382
4383 for (GrGLint level = 1; level < levelCount; ++level) {
4384 // Define the next mip:
4385 width = SkTMax(1, width / 2);
4386 height = SkTMax(1, height / 2);
4387 GL_ALLOC_CALL(this->glInterface(), TexImage2D(GR_GL_TEXTURE_2D, level, internalFormat,
4388 width, height, 0,
4389 externalFormat, externalType, nullptr));
4390 }
4391 }
4392
4393 // Create (if necessary), then bind temporary FBO:
4394 if (0 == fTempDstFBOID) {
4395 GL_CALL(GenFramebuffers(1, &fTempDstFBOID));
4396 }
4397 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fTempDstFBOID));
4398 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
4399
4400 // Bind the texture, to get things configured for filtering.
4401 // We'll be changing our base level further below:
4402 this->setTextureUnit(0);
4403 GrTextureParams params(SkShader::kClamp_TileMode, GrTextureParams::kBilerp_FilterMode);
4404 this->bindTexture(0, params, gammaCorrect, texture);
4405
4406 // Vertex data:
4407 if (!fMipmapProgramArrayBuffer) {
4408 static const GrGLfloat vdata[] = {
4409 0, 0,
4410 0, 1,
4411 1, 0,
4412 1, 1
4413 };
4414 fMipmapProgramArrayBuffer.reset(GrGLBuffer::Create(this, sizeof(vdata),
4415 kVertex_GrBufferType,
4416 kStatic_GrAccessPattern, vdata));
4417 }
4418 if (!fMipmapProgramArrayBuffer) {
4419 return false;
4420 }
4421
4422 fHWVertexArrayState.setVertexArrayID(this, 0);
4423
4424 GrGLAttribArrayState* attribs = fHWVertexArrayState.bindInternalVertexArray(this);
4425 attribs->set(this, 0, fMipmapProgramArrayBuffer, kVec2f_GrVertexAttribType,
4426 2 * sizeof(GrGLfloat), 0);
4427 attribs->disableUnusedArrays(this, 0x1);
4428
4429 // Set "simple" state once:
4430 GrXferProcessor::BlendInfo blendInfo;
4431 blendInfo.reset();
4432 this->flushBlend(blendInfo, GrSwizzle::RGBA());
4433 this->flushColorWrite(true);
robertphillips5fa7f302016-07-21 09:21:04 -07004434 this->flushDrawFace(GrDrawFace::kBoth);
brianosman33f6b3f2016-06-02 05:49:21 -07004435 this->flushHWAAState(nullptr, false, false);
4436 this->disableScissor();
csmartdalton28341fa2016-08-17 10:00:21 -07004437 this->disableWindowRectangles();
brianosman33f6b3f2016-06-02 05:49:21 -07004438 GrStencilSettings stencil;
4439 stencil.setDisabled();
4440 this->flushStencil(stencil);
4441
4442 // Do all the blits:
4443 width = texture->width();
4444 height = texture->height();
4445 GrGLIRect viewport;
4446 viewport.fLeft = 0;
4447 viewport.fBottom = 0;
4448 for (GrGLint level = 1; level < levelCount; ++level) {
4449 // Get and bind the program for this particular downsample (filter shape can vary):
4450 int progIdx = TextureSizeToMipmapProgramIdx(width, height);
4451 if (!fMipmapPrograms[progIdx].fProgram) {
4452 if (!this->createMipmapProgram(progIdx)) {
4453 SkDebugf("Failed to create mipmap program.\n");
4454 return false;
4455 }
4456 }
4457 GL_CALL(UseProgram(fMipmapPrograms[progIdx].fProgram));
4458 fHWProgramID = fMipmapPrograms[progIdx].fProgram;
4459
4460 // Texcoord uniform is expected to contain (1/w, (w-1)/w, 1/h, (h-1)/h)
4461 const float invWidth = 1.0f / width;
4462 const float invHeight = 1.0f / height;
4463 GL_CALL(Uniform4f(fMipmapPrograms[progIdx].fTexCoordXformUniform,
4464 invWidth, (width - 1) * invWidth, invHeight, (height - 1) * invHeight));
4465 GL_CALL(Uniform1i(fMipmapPrograms[progIdx].fTextureUniform, 0));
4466
4467 // Only sample from previous mip
4468 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_BASE_LEVEL, level - 1));
4469
4470 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER, GR_GL_COLOR_ATTACHMENT0,
4471 GR_GL_TEXTURE_2D, texture->textureID(), level));
4472
4473 width = SkTMax(1, width / 2);
4474 height = SkTMax(1, height / 2);
4475 viewport.fWidth = width;
4476 viewport.fHeight = height;
4477 this->flushViewport(viewport);
4478
4479 GL_CALL(DrawArrays(GR_GL_TRIANGLE_STRIP, 0, 4));
4480 }
4481
4482 // Unbind:
4483 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER, GR_GL_COLOR_ATTACHMENT0,
4484 GR_GL_TEXTURE_2D, 0, 0));
4485
4486 return true;
4487}
4488
csmartdalton0d28e572016-07-06 09:59:43 -07004489void GrGLGpu::onGetMultisampleSpecs(GrRenderTarget* rt, const GrStencilSettings& stencil,
4490 int* effectiveSampleCnt, SamplePattern* samplePattern) {
csmartdaltonf9635992016-08-10 11:09:07 -07004491 SkASSERT(!rt->isMixedSampled() || rt->renderTargetPriv().getStencilAttachment() ||
cdalton28f45b92016-03-07 13:58:26 -08004492 stencil.isDisabled());
4493
4494 this->flushStencil(stencil);
4495 this->flushHWAAState(rt, true, !stencil.isDisabled());
4496 this->flushRenderTarget(static_cast<GrGLRenderTarget*>(rt), &SkIRect::EmptyIRect());
4497
4498 if (0 != this->caps()->maxRasterSamples()) {
4499 GR_GL_GetIntegerv(this->glInterface(), GR_GL_EFFECTIVE_RASTER_SAMPLES, effectiveSampleCnt);
4500 } else {
4501 GR_GL_GetIntegerv(this->glInterface(), GR_GL_SAMPLES, effectiveSampleCnt);
4502 }
4503
4504 SkASSERT(*effectiveSampleCnt >= rt->desc().fSampleCnt);
4505
4506 if (this->caps()->sampleLocationsSupport()) {
csmartdalton0d28e572016-07-06 09:59:43 -07004507 samplePattern->reset(*effectiveSampleCnt);
cdalton28f45b92016-03-07 13:58:26 -08004508 for (int i = 0; i < *effectiveSampleCnt; ++i) {
4509 GrGLfloat pos[2];
4510 GL_CALL(GetMultisamplefv(GR_GL_SAMPLE_POSITION, i, pos));
4511 if (kTopLeft_GrSurfaceOrigin == rt->origin()) {
csmartdalton0d28e572016-07-06 09:59:43 -07004512 (*samplePattern)[i].set(pos[0], pos[1]);
cdalton28f45b92016-03-07 13:58:26 -08004513 } else {
csmartdalton0d28e572016-07-06 09:59:43 -07004514 (*samplePattern)[i].set(pos[0], 1 - pos[1]);
cdalton28f45b92016-03-07 13:58:26 -08004515 }
4516 }
4517 }
4518}
4519
cdalton231c5fd2015-05-13 12:35:36 -07004520void GrGLGpu::xferBarrier(GrRenderTarget* rt, GrXferBarrierType type) {
bsalomoncb02b382015-08-12 11:14:50 -07004521 SkASSERT(type);
cdalton9954bc32015-04-29 14:17:00 -07004522 switch (type) {
cdalton231c5fd2015-05-13 12:35:36 -07004523 case kTexture_GrXferBarrierType: {
4524 GrGLRenderTarget* glrt = static_cast<GrGLRenderTarget*>(rt);
4525 if (glrt->textureFBOID() != glrt->renderFBOID()) {
4526 // The render target uses separate storage so no need for glTextureBarrier.
4527 // FIXME: The render target will resolve automatically when its texture is bound,
4528 // but we could resolve only the bounds that will be read if we do it here instead.
4529 return;
4530 }
cdalton9954bc32015-04-29 14:17:00 -07004531 SkASSERT(this->caps()->textureBarrierSupport());
4532 GL_CALL(TextureBarrier());
4533 return;
cdalton231c5fd2015-05-13 12:35:36 -07004534 }
cdalton8917d622015-05-06 13:40:21 -07004535 case kBlend_GrXferBarrierType:
bsalomon4b91f762015-05-19 09:29:46 -07004536 SkASSERT(GrCaps::kAdvanced_BlendEquationSupport ==
cdalton8917d622015-05-06 13:40:21 -07004537 this->caps()->blendEquationSupport());
4538 GL_CALL(BlendBarrier());
4539 return;
bsalomoncb02b382015-08-12 11:14:50 -07004540 default: break; // placate compiler warnings that kNone not handled
cdalton9954bc32015-04-29 14:17:00 -07004541 }
4542}
4543
jvanverth88957922015-07-14 11:02:52 -07004544GrBackendObject GrGLGpu::createTestingOnlyBackendTexture(void* pixels, int w, int h,
egdaniel0a3a7f72016-06-24 09:22:31 -07004545 GrPixelConfig config, bool /*isRT*/) {
bsalomon926cb022015-12-17 18:15:11 -08004546 if (!this->caps()->isConfigTexturable(config)) {
4547 return false;
4548 }
bsalomon091f60c2015-11-10 11:54:56 -08004549 GrGLTextureInfo* info = new GrGLTextureInfo;
4550 info->fTarget = GR_GL_TEXTURE_2D;
kkinnunen546eb5c2015-12-11 00:05:33 -08004551 info->fID = 0;
bsalomon091f60c2015-11-10 11:54:56 -08004552 GL_CALL(GenTextures(1, &info->fID));
jvanverth672bb7f2015-07-13 07:19:57 -07004553 GL_CALL(ActiveTexture(GR_GL_TEXTURE0));
4554 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, 1));
bsalomon091f60c2015-11-10 11:54:56 -08004555 GL_CALL(BindTexture(info->fTarget, info->fID));
bsalomone63ffef2016-02-05 07:17:34 -08004556 fHWBoundTextureUniqueIDs[0] = 0;
bsalomon091f60c2015-11-10 11:54:56 -08004557 GL_CALL(TexParameteri(info->fTarget, GR_GL_TEXTURE_MAG_FILTER, GR_GL_NEAREST));
4558 GL_CALL(TexParameteri(info->fTarget, GR_GL_TEXTURE_MIN_FILTER, GR_GL_NEAREST));
4559 GL_CALL(TexParameteri(info->fTarget, GR_GL_TEXTURE_WRAP_S, GR_GL_CLAMP_TO_EDGE));
4560 GL_CALL(TexParameteri(info->fTarget, GR_GL_TEXTURE_WRAP_T, GR_GL_CLAMP_TO_EDGE));
jvanverth672bb7f2015-07-13 07:19:57 -07004561
bsalomon76148af2016-01-12 11:13:47 -08004562 GrGLenum internalFormat;
4563 GrGLenum externalFormat;
4564 GrGLenum externalType;
4565
4566 if (!this->glCaps().getTexImageFormats(config, config, &internalFormat, &externalFormat,
4567 &externalType)) {
4568 delete info;
4569#ifdef SK_IGNORE_GL_TEXTURE_TARGET
4570 return 0;
4571#else
4572 return reinterpret_cast<GrBackendObject>(nullptr);
4573#endif
4574 }
jvanverth672bb7f2015-07-13 07:19:57 -07004575
bsalomon091f60c2015-11-10 11:54:56 -08004576 GL_CALL(TexImage2D(info->fTarget, 0, internalFormat, w, h, 0, externalFormat,
jvanverth672bb7f2015-07-13 07:19:57 -07004577 externalType, pixels));
4578
bsalomon091f60c2015-11-10 11:54:56 -08004579#ifdef SK_IGNORE_GL_TEXTURE_TARGET
4580 GrGLuint id = info->fID;
4581 delete info;
4582 return id;
4583#else
4584 return reinterpret_cast<GrBackendObject>(info);
4585#endif
jvanverth672bb7f2015-07-13 07:19:57 -07004586}
4587
jvanverth88957922015-07-14 11:02:52 -07004588bool GrGLGpu::isTestingOnlyBackendTexture(GrBackendObject id) const {
bsalomon091f60c2015-11-10 11:54:56 -08004589#ifdef SK_IGNORE_GL_TEXTURE_TARGET
jvanverth672bb7f2015-07-13 07:19:57 -07004590 GrGLuint texID = (GrGLuint)id;
bsalomon091f60c2015-11-10 11:54:56 -08004591#else
4592 GrGLuint texID = reinterpret_cast<const GrGLTextureInfo*>(id)->fID;
4593#endif
jvanverth672bb7f2015-07-13 07:19:57 -07004594
4595 GrGLboolean result;
4596 GL_CALL_RET(result, IsTexture(texID));
4597
4598 return (GR_GL_TRUE == result);
4599}
4600
bsalomone63ffef2016-02-05 07:17:34 -08004601void GrGLGpu::deleteTestingOnlyBackendTexture(GrBackendObject id, bool abandonTexture) {
bsalomon091f60c2015-11-10 11:54:56 -08004602#ifdef SK_IGNORE_GL_TEXTURE_TARGET
jvanverth672bb7f2015-07-13 07:19:57 -07004603 GrGLuint texID = (GrGLuint)id;
bsalomon091f60c2015-11-10 11:54:56 -08004604#else
4605 const GrGLTextureInfo* info = reinterpret_cast<const GrGLTextureInfo*>(id);
4606 GrGLuint texID = info->fID;
4607#endif
4608
bsalomon67d76202015-11-11 12:40:42 -08004609 if (!abandonTexture) {
4610 GL_CALL(DeleteTextures(1, &texID));
4611 }
bsalomon091f60c2015-11-10 11:54:56 -08004612
4613#ifndef SK_IGNORE_GL_TEXTURE_TARGET
4614 delete info;
4615#endif
jvanverth672bb7f2015-07-13 07:19:57 -07004616}
4617
joshualitt8fd844f2015-12-02 13:36:47 -08004618void GrGLGpu::resetShaderCacheForTesting() const {
4619 fProgramCache->abandon();
4620}
4621
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00004622///////////////////////////////////////////////////////////////////////////////
bsalomon6df86402015-06-01 10:41:49 -07004623
cdaltone2e71c22016-04-07 18:13:29 -07004624GrGLAttribArrayState* GrGLGpu::HWVertexArrayState::bindInternalVertexArray(GrGLGpu* gpu,
csmartdalton485a1202016-07-13 10:16:32 -07004625 const GrBuffer* ibuf) {
robertphillips@google.com4f65a272013-03-26 19:40:46 +00004626 GrGLAttribArrayState* attribState;
4627
cdaltone2e71c22016-04-07 18:13:29 -07004628 if (gpu->glCaps().isCoreProfile()) {
4629 if (!fCoreProfileVertexArray) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00004630 GrGLuint arrayID;
4631 GR_GL_CALL(gpu->glInterface(), GenVertexArrays(1, &arrayID));
4632 int attrCount = gpu->glCaps().maxVertexAttributes();
cdaltone2e71c22016-04-07 18:13:29 -07004633 fCoreProfileVertexArray = new GrGLVertexArray(arrayID, attrCount);
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00004634 }
cdaltone2e71c22016-04-07 18:13:29 -07004635 if (ibuf) {
4636 attribState = fCoreProfileVertexArray->bindWithIndexBuffer(gpu, ibuf);
bsalomon6df86402015-06-01 10:41:49 -07004637 } else {
cdaltone2e71c22016-04-07 18:13:29 -07004638 attribState = fCoreProfileVertexArray->bind(gpu);
bsalomon6df86402015-06-01 10:41:49 -07004639 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00004640 } else {
cdaltone2e71c22016-04-07 18:13:29 -07004641 if (ibuf) {
4642 // bindBuffer implicitly binds VAO 0 when binding an index buffer.
4643 gpu->bindBuffer(kIndex_GrBufferType, ibuf);
bsalomon@google.com6918d482013-03-07 19:09:11 +00004644 } else {
4645 this->setVertexArrayID(gpu, 0);
4646 }
4647 int attrCount = gpu->glCaps().maxVertexAttributes();
4648 if (fDefaultVertexArrayAttribState.count() != attrCount) {
4649 fDefaultVertexArrayAttribState.resize(attrCount);
4650 }
4651 attribState = &fDefaultVertexArrayAttribState;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00004652 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00004653 return attribState;
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00004654}
bsalomone179a912016-01-20 06:18:10 -08004655
4656bool GrGLGpu::onMakeCopyForTextureParams(GrTexture* texture, const GrTextureParams& textureParams,
4657 GrTextureProducer::CopyParams* copyParams) const {
4658 if (textureParams.isTiled() ||
4659 GrTextureParams::kMipMap_FilterMode == textureParams.filterMode()) {
4660 GrGLTexture* glTexture = static_cast<GrGLTexture*>(texture);
4661 if (GR_GL_TEXTURE_EXTERNAL == glTexture->target() ||
4662 GR_GL_TEXTURE_RECTANGLE == glTexture->target()) {
4663 copyParams->fFilter = GrTextureParams::kNone_FilterMode;
4664 copyParams->fWidth = texture->width();
4665 copyParams->fHeight = texture->height();
4666 return true;
4667 }
4668 }
4669 return false;
4670}
jvanverth84741b32016-09-30 08:39:02 -07004671
4672GrFence SK_WARN_UNUSED_RESULT GrGLGpu::insertFence() const {
4673 GrGLsync fence;
4674 GL_CALL_RET(fence, FenceSync(GR_GL_SYNC_GPU_COMMANDS_COMPLETE, 0));
4675 return (GrFence)fence;
4676}
4677
4678bool GrGLGpu::waitFence(GrFence fence, uint64_t timeout) const {
4679 GrGLenum result;
4680 GL_CALL_RET(result, ClientWaitSync((GrGLsync)fence, GR_GL_SYNC_FLUSH_COMMANDS_BIT, timeout));
4681 return (GR_GL_CONDITION_SATISFIED == result);
4682}
4683
4684void GrGLGpu::deleteFence(GrFence fence) const {
4685 GL_CALL(DeleteSync((GrGLsync)fence));
4686}