| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "GrGLGpu.h" | 8 #include "GrGLGpu.h" |
| 9 #include "GrGLGLSL.h" | 9 #include "GrGLGLSL.h" |
| 10 #include "GrGLStencilAttachment.h" | 10 #include "GrGLStencilAttachment.h" |
| (...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE)); | 922 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE)); |
| 923 } | 923 } |
| 924 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, config_alignment(dataConfig)
)); | 924 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, config_alignment(dataConfig)
)); |
| 925 } | 925 } |
| 926 bool succeeded = true; | 926 bool succeeded = true; |
| 927 if (kNewTexture_UploadType == uploadType) { | 927 if (kNewTexture_UploadType == uploadType) { |
| 928 if (dataOrOffset && | 928 if (dataOrOffset && |
| 929 !(0 == left && 0 == top && desc.fWidth == width && desc.fHeight == h
eight)) { | 929 !(0 == left && 0 == top && desc.fWidth == width && desc.fHeight == h
eight)) { |
| 930 succeeded = false; | 930 succeeded = false; |
| 931 } else { | 931 } else { |
| 932 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface()); | 932 if (desc.fTextureStorageAllocator.fAllocateTextureStorage) { |
| 933 GL_ALLOC_CALL(this->glInterface(), TexImage2D(target, 0, internalFor
mat, desc.fWidth, | 933 if (dataOrOffset) { |
| 934 desc.fHeight, 0, exter
nalFormat, | 934 GL_CALL(TexSubImage2D(target, |
| 935 externalType, dataOrOf
fset)); | 935 0, // level |
| 936 GrGLenum error = check_alloc_error(desc, this->glInterface()); | 936 left, top, |
| 937 if (error != GR_GL_NO_ERROR) { | 937 width, height, |
| 938 succeeded = false; | 938 externalFormat, externalType, dataOrOf
fset)); |
| 939 } | 939 } |
| 940 } else {
|
| 941 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
|
| 942 GL_ALLOC_CALL(this->glInterface(), TexImage2D(
|
| 943 target, 0, internalFormat, desc.fWidth, desc.fHeight, 0, ext
ernalFormat, |
| 944 externalType, dataOrOffset));
|
| 945 GrGLenum error = check_alloc_error(desc, this->glInterface()); |
| 946 if (error != GR_GL_NO_ERROR) {
|
| 947 succeeded = false;
|
| 948 } |
| 949 } |
| 940 } | 950 } |
| 941 } else { | 951 } else { |
| 942 if (swFlipY || glFlipY) { | 952 if (swFlipY || glFlipY) { |
| 943 top = desc.fHeight - (top + height); | 953 top = desc.fHeight - (top + height); |
| 944 } | 954 } |
| 945 GL_CALL(TexSubImage2D(target, | 955 GL_CALL(TexSubImage2D(target, |
| 946 0, // level | 956 0, // level |
| 947 left, top, | 957 left, top, |
| 948 width, height, | 958 width, height, |
| 949 externalFormat, externalType, dataOrOffset)); | 959 externalFormat, externalType, dataOrOffset)); |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 const void* srcData, size_t rowBytes) { | 1208 const void* srcData, size_t rowBytes) { |
| 1199 // We fail if the MSAA was requested and is not available. | 1209 // We fail if the MSAA was requested and is not available. |
| 1200 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleC
nt) { | 1210 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleC
nt) { |
| 1201 //SkDebugf("MSAA RT requested but not supported on this platform."); | 1211 //SkDebugf("MSAA RT requested but not supported on this platform."); |
| 1202 return return_null_texture(); | 1212 return return_null_texture(); |
| 1203 } | 1213 } |
| 1204 | 1214 |
| 1205 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag); | 1215 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag); |
| 1206 | 1216 |
| 1207 GrGLTexture::IDDesc idDesc; | 1217 GrGLTexture::IDDesc idDesc; |
| 1208 idDesc.fInfo.fID = 0; | |
| 1209 GL_CALL(GenTextures(1, &idDesc.fInfo.fID)); | |
| 1210 idDesc.fLifeCycle = lifeCycle; | 1218 idDesc.fLifeCycle = lifeCycle; |
| 1211 // We only support GL_TEXTURE_2D at the moment. | 1219 GrGLTexture::TexParams initialTexParams; |
| 1212 idDesc.fInfo.fTarget = GR_GL_TEXTURE_2D; | 1220 if (!this->createTextureImpl(desc, &idDesc.fInfo, renderTarget, srcData, |
| 1213 | 1221 &initialTexParams, rowBytes)) { |
| 1214 if (!idDesc.fInfo.fID) { | |
| 1215 return return_null_texture(); | 1222 return return_null_texture(); |
| 1216 } | 1223 } |
| 1217 | 1224 |
| 1218 this->setScratchTextureUnit(); | |
| 1219 GL_CALL(BindTexture(idDesc.fInfo.fTarget, idDesc.fInfo.fID)); | |
| 1220 | |
| 1221 if (renderTarget && this->glCaps().textureUsageSupport()) { | |
| 1222 // provides a hint about how this texture will be used | |
| 1223 GL_CALL(TexParameteri(idDesc.fInfo.fTarget, | |
| 1224 GR_GL_TEXTURE_USAGE, | |
| 1225 GR_GL_FRAMEBUFFER_ATTACHMENT)); | |
| 1226 } | |
| 1227 | |
| 1228 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some | |
| 1229 // drivers have a bug where an FBO won't be complete if it includes a | |
| 1230 // texture that is not mipmap complete (considering the filter in use). | |
| 1231 GrGLTexture::TexParams initialTexParams; | |
| 1232 // we only set a subset here so invalidate first | |
| 1233 initialTexParams.invalidate(); | |
| 1234 initialTexParams.fMinFilter = GR_GL_NEAREST; | |
| 1235 initialTexParams.fMagFilter = GR_GL_NEAREST; | |
| 1236 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE; | |
| 1237 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE; | |
| 1238 GL_CALL(TexParameteri(idDesc.fInfo.fTarget, | |
| 1239 GR_GL_TEXTURE_MAG_FILTER, | |
| 1240 initialTexParams.fMagFilter)); | |
| 1241 GL_CALL(TexParameteri(idDesc.fInfo.fTarget, | |
| 1242 GR_GL_TEXTURE_MIN_FILTER, | |
| 1243 initialTexParams.fMinFilter)); | |
| 1244 GL_CALL(TexParameteri(idDesc.fInfo.fTarget, | |
| 1245 GR_GL_TEXTURE_WRAP_S, | |
| 1246 initialTexParams.fWrapS)); | |
| 1247 GL_CALL(TexParameteri(idDesc.fInfo.fTarget, | |
| 1248 GR_GL_TEXTURE_WRAP_T, | |
| 1249 initialTexParams.fWrapT)); | |
| 1250 if (!this->uploadTexData(desc, idDesc.fInfo.fTarget, kNewTexture_UploadType,
0, 0, | |
| 1251 desc.fWidth, desc.fHeight, | |
| 1252 desc.fConfig, srcData, rowBytes)) { | |
| 1253 GL_CALL(DeleteTextures(1, &idDesc.fInfo.fID)); | |
| 1254 return return_null_texture(); | |
| 1255 } | |
| 1256 | |
| 1257 GrGLTexture* tex; | 1225 GrGLTexture* tex; |
| 1258 if (renderTarget) { | 1226 if (renderTarget) { |
| 1259 // unbind the texture from the texture unit before binding it to the fra
me buffer | 1227 // unbind the texture from the texture unit before binding it to the fra
me buffer |
| 1260 GL_CALL(BindTexture(idDesc.fInfo.fTarget, 0)); | 1228 GL_CALL(BindTexture(idDesc.fInfo.fTarget, 0)); |
| 1261 GrGLRenderTarget::IDDesc rtIDDesc; | 1229 GrGLRenderTarget::IDDesc rtIDDesc; |
| 1262 | 1230 |
| 1263 if (!this->createRenderTargetObjects(desc, lifeCycle, idDesc.fInfo, &rtI
DDesc)) { | 1231 if (!this->createRenderTargetObjects(desc, lifeCycle, idDesc.fInfo, &rtI
DDesc)) { |
| 1264 GL_CALL(DeleteTextures(1, &idDesc.fInfo.fID)); | 1232 GL_CALL(DeleteTextures(1, &idDesc.fInfo.fID)); |
| 1265 return return_null_texture(); | 1233 return return_null_texture(); |
| 1266 } | 1234 } |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1466 GL_CALL(DeleteRenderbuffers(1, &sbRBID)); | 1434 GL_CALL(DeleteRenderbuffers(1, &sbRBID)); |
| 1467 } | 1435 } |
| 1468 GL_CALL(DeleteTextures(1, &colorID)); | 1436 GL_CALL(DeleteTextures(1, &colorID)); |
| 1469 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, 0)); | 1437 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, 0)); |
| 1470 GL_CALL(DeleteFramebuffers(1, &fb)); | 1438 GL_CALL(DeleteFramebuffers(1, &fb)); |
| 1471 fGLContext->caps()->setStencilFormatIndexForConfig(config, firstWorkingS
tencilFormatIndex); | 1439 fGLContext->caps()->setStencilFormatIndexForConfig(config, firstWorkingS
tencilFormatIndex); |
| 1472 } | 1440 } |
| 1473 return this->glCaps().getStencilFormatIndexForConfig(config); | 1441 return this->glCaps().getStencilFormatIndexForConfig(config); |
| 1474 } | 1442 } |
| 1475 | 1443 |
| 1444 bool GrGLGpu::createTextureImpl(const GrSurfaceDesc& desc, GrGLTextureInfo* info
, |
| 1445 bool renderTarget, const void* srcData, |
| 1446 GrGLTexture::TexParams* initialTexParams, size_t
rowBytes) { |
| 1447 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some |
| 1448 // drivers have a bug where an FBO won't be complete if it includes a |
| 1449 // texture that is not mipmap complete (considering the filter in use). |
| 1450 |
| 1451 // we only set a subset here so invalidate first |
| 1452 initialTexParams->invalidate(); |
| 1453 initialTexParams->fMinFilter = GR_GL_NEAREST; |
| 1454 initialTexParams->fMagFilter = GR_GL_NEAREST; |
| 1455 initialTexParams->fWrapS = GR_GL_CLAMP_TO_EDGE; |
| 1456 initialTexParams->fWrapT = GR_GL_CLAMP_TO_EDGE; |
| 1457 |
| 1458 if (desc.fTextureStorageAllocator.fAllocateTextureStorage) { |
| 1459 return this->createTextureExternalAllocatorImpl(desc, info, srcData, row
Bytes); |
| 1460 } |
| 1461 |
| 1462 info->fID = 0; |
| 1463 info->fTarget = GR_GL_TEXTURE_2D; |
| 1464 GL_CALL(GenTextures(1, &(info->fID))); |
| 1465 |
| 1466 if (!info->fID) { |
| 1467 return false; |
| 1468 } |
| 1469 |
| 1470 this->setScratchTextureUnit(); |
| 1471 GL_CALL(BindTexture(info->fTarget, info->fID)); |
| 1472 |
| 1473 if (renderTarget && this->glCaps().textureUsageSupport()) { |
| 1474 // provides a hint about how this texture will be used |
| 1475 GL_CALL(TexParameteri(info->fTarget, |
| 1476 GR_GL_TEXTURE_USAGE, |
| 1477 GR_GL_FRAMEBUFFER_ATTACHMENT)); |
| 1478 } |
| 1479 |
| 1480 GL_CALL(TexParameteri(info->fTarget, |
| 1481 GR_GL_TEXTURE_MAG_FILTER, |
| 1482 initialTexParams->fMagFilter)); |
| 1483 GL_CALL(TexParameteri(info->fTarget, |
| 1484 GR_GL_TEXTURE_MIN_FILTER, |
| 1485 initialTexParams->fMinFilter)); |
| 1486 GL_CALL(TexParameteri(info->fTarget, |
| 1487 GR_GL_TEXTURE_WRAP_S, |
| 1488 initialTexParams->fWrapS)); |
| 1489 GL_CALL(TexParameteri(info->fTarget, |
| 1490 GR_GL_TEXTURE_WRAP_T, |
| 1491 initialTexParams->fWrapT)); |
| 1492 if (!this->uploadTexData(desc, info->fTarget, kNewTexture_UploadType, 0, 0, |
| 1493 desc.fWidth, desc.fHeight, |
| 1494 desc.fConfig, srcData, rowBytes)) { |
| 1495 GL_CALL(DeleteTextures(1, &(info->fID))); |
| 1496 return false; |
| 1497 } |
| 1498 return true; |
| 1499 } |
| 1500 |
| 1501 bool GrGLGpu::createTextureExternalAllocatorImpl( |
| 1502 const GrSurfaceDesc& desc, GrGLTextureInfo* info, const void* srcData, s
ize_t rowBytes) { |
| 1503 switch (desc.fTextureStorageAllocator.fAllocateTextureStorage( |
| 1504 desc.fTextureStorageAllocator.fCtx, reinterpret_cast<GrBacke
ndObject>(info), |
| 1505 desc.fWidth, desc.fHeight, desc.fConfig, srcData, desc.fOrig
in)) { |
| 1506 case GrTextureStorageAllocator::Result::kSucceededAndUploaded: |
| 1507 return true; |
| 1508 case GrTextureStorageAllocator::Result::kFailed: |
| 1509 return false; |
| 1510 case GrTextureStorageAllocator::Result::kSucceededWithoutUpload: |
| 1511 break; |
| 1512 } |
| 1513 |
| 1514 if (!this->uploadTexData(desc, info->fTarget, kNewTexture_UploadType, 0, 0, |
| 1515 desc.fWidth, desc.fHeight, |
| 1516 desc.fConfig, srcData, rowBytes)) { |
| 1517 desc.fTextureStorageAllocator.fDeallocateTextureStorage( |
| 1518 desc.fTextureStorageAllocator.fCtx, reinterpret_cast<GrBackendOb
ject>(info)); |
| 1519 return false; |
| 1520 } |
| 1521 return true; |
| 1522 } |
| 1523 |
| 1476 GrStencilAttachment* GrGLGpu::createStencilAttachmentForRenderTarget(const GrRen
derTarget* rt, | 1524 GrStencilAttachment* GrGLGpu::createStencilAttachmentForRenderTarget(const GrRen
derTarget* rt, |
| 1477 int width, | 1525 int width, |
| 1478 int height)
{ | 1526 int height)
{ |
| 1479 // All internally created RTs are also textures. We don't create | 1527 // All internally created RTs are also textures. We don't create |
| 1480 // SBs for a client's standalone RT (that is a RT that isn't also a texture)
. | 1528 // SBs for a client's standalone RT (that is a RT that isn't also a texture)
. |
| 1481 SkASSERT(rt->asTexture()); | 1529 SkASSERT(rt->asTexture()); |
| 1482 SkASSERT(width >= rt->width()); | 1530 SkASSERT(width >= rt->width()); |
| 1483 SkASSERT(height >= rt->height()); | 1531 SkASSERT(height >= rt->height()); |
| 1484 | 1532 |
| 1485 int samples = rt->numStencilSamples(); | 1533 int samples = rt->numStencilSamples(); |
| (...skipping 2357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3843 if (GR_GL_TEXTURE_EXTERNAL == glTexture->target() || | 3891 if (GR_GL_TEXTURE_EXTERNAL == glTexture->target() || |
| 3844 GR_GL_TEXTURE_RECTANGLE == glTexture->target()) { | 3892 GR_GL_TEXTURE_RECTANGLE == glTexture->target()) { |
| 3845 copyParams->fFilter = GrTextureParams::kNone_FilterMode; | 3893 copyParams->fFilter = GrTextureParams::kNone_FilterMode; |
| 3846 copyParams->fWidth = texture->width(); | 3894 copyParams->fWidth = texture->width(); |
| 3847 copyParams->fHeight = texture->height(); | 3895 copyParams->fHeight = texture->height(); |
| 3848 return true; | 3896 return true; |
| 3849 } | 3897 } |
| 3850 } | 3898 } |
| 3851 return false; | 3899 return false; |
| 3852 } | 3900 } |
| OLD | NEW |