diff options
author | halcanary <halcanary@google.com> | 2015-11-07 05:29:00 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-07 05:29:00 -0800 |
commit | 6950de6c4166fabb35e6c756fc009e0cf1c47819 (patch) | |
tree | a5a647d549cde1ecf97fab0f118f1fb4bfdcf732 /src/gpu | |
parent | 844a0b425741f07cb233332405143931586bbb7d (diff) |
Comments Style: s/skbug.com/bug.skia.org/
DOCS_PREVIEW= https://skia.org/?cl=1432503003
Review URL: https://codereview.chromium.org/1432503003
Diffstat (limited to 'src/gpu')
-rw-r--r-- | src/gpu/GrBufferAllocPool.cpp | 2 | ||||
-rw-r--r-- | src/gpu/GrClipMaskManager.cpp | 2 | ||||
-rw-r--r-- | src/gpu/GrResourceProvider.cpp | 2 | ||||
-rw-r--r-- | src/gpu/GrResourceProvider.h | 4 | ||||
-rw-r--r-- | src/gpu/effects/GrConvexPolyEffect.cpp | 2 | ||||
-rw-r--r-- | src/gpu/gl/GrGLCaps.cpp | 6 |
6 files changed, 9 insertions, 9 deletions
diff --git a/src/gpu/GrBufferAllocPool.cpp b/src/gpu/GrBufferAllocPool.cpp index 210ab44c68..73b70bf861 100644 --- a/src/gpu/GrBufferAllocPool.cpp +++ b/src/gpu/GrBufferAllocPool.cpp @@ -320,7 +320,7 @@ GrGeometryBuffer* GrBufferAllocPool::getBuffer(size_t size) { GrResourceProvider* rp = fGpu->getContext()->resourceProvider(); static const GrResourceProvider::BufferUsage kUsage = GrResourceProvider::kDynamic_BufferUsage; - // Shouldn't have to use this flag (http://skbug.com/4156) + // Shouldn't have to use this flag (https://bug.skia.org/4156) static const uint32_t kFlags = GrResourceProvider::kNoPendingIO_Flag; if (kIndex_BufferType == fBufferType) { return rp->createIndexBuffer(size, kUsage, kFlags); diff --git a/src/gpu/GrClipMaskManager.cpp b/src/gpu/GrClipMaskManager.cpp index 076871ca05..3e802d7135 100644 --- a/src/gpu/GrClipMaskManager.cpp +++ b/src/gpu/GrClipMaskManager.cpp @@ -594,7 +594,7 @@ GrTexture* GrClipMaskManager::createAlphaClipMask(int32_t elementsGenID, texture, translate, element); if (Element::kRect_Type != element->getType() && !pr) { // useSWOnlyPath should now filter out all cases where gpu-side mask merging would - // be performed (i.e., pr would be NULL for a non-rect path). See skbug.com/4519 + // be performed (i.e., pr would be NULL for a non-rect path). See https://bug.skia.org/4519 // for rationale and details. SkASSERT(0); continue; diff --git a/src/gpu/GrResourceProvider.cpp b/src/gpu/GrResourceProvider.cpp index 5fa4e4beac..31568144a2 100644 --- a/src/gpu/GrResourceProvider.cpp +++ b/src/gpu/GrResourceProvider.cpp @@ -158,7 +158,7 @@ GrBatchAtlas* GrResourceProvider::createAtlas(GrPixelConfig config, // We don't want to flush the context so we claim we're in the middle of flushing so as to // guarantee we do not recieve a texture with pending IO - // TODO: Determine how to avoid having to do this. (http://skbug.com/4156) + // TODO: Determine how to avoid having to do this. (https://bug.skia.org/4156) static const uint32_t kFlags = GrResourceProvider::kNoPendingIO_Flag; GrTexture* texture = this->createApproxTexture(desc, kFlags); if (!texture) { diff --git a/src/gpu/GrResourceProvider.h b/src/gpu/GrResourceProvider.h index a709c70564..6c5737191b 100644 --- a/src/gpu/GrResourceProvider.h +++ b/src/gpu/GrResourceProvider.h @@ -31,7 +31,7 @@ class SkTypeface; * * This currently inherits from GrTextureProvider non-publically to force callers to provider * make a flags (pendingIO) decision and not use the GrTP methods that don't take flags. This - * can be relaxed once http://skbug.com/4156 is fixed. + * can be relaxed once https://bug.skia.org/4156 is fixed. */ class GrResourceProvider : protected GrTextureProvider { public: @@ -98,7 +98,7 @@ public: * set when accessing resources during a GrDrawTarget flush. This includes the execution of * GrBatch objects. The reason is that these memory operations are done immediately and * will occur out of order WRT the operations being flushed. - * Make this automatic: http://skbug.com/4156 + * Make this automatic: https://bug.skia.org/4156 */ kNoPendingIO_Flag = kNoPendingIO_ScratchTextureFlag, }; diff --git a/src/gpu/effects/GrConvexPolyEffect.cpp b/src/gpu/effects/GrConvexPolyEffect.cpp index d22a3472a5..b37964d6b8 100644 --- a/src/gpu/effects/GrConvexPolyEffect.cpp +++ b/src/gpu/effects/GrConvexPolyEffect.cpp @@ -212,7 +212,7 @@ void GrGLConvexPolyEffect::emitCode(EmitArgs& args) { fsBuilder->codeAppend("\t\talpha *= edge;\n"); } - // Woe is me. See skbug.com/2149. + // Woe is me. See https://bug.skia.org/2149 . if (kTegra2_GrGLRenderer == args.fBuilder->ctxInfo().renderer()) { fsBuilder->codeAppend("\t\tif (-1.0 == alpha) {\n\t\t\tdiscard;\n\t\t}\n"); } diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp index c6a42cfc54..f5ce0afff2 100644 --- a/src/gpu/gl/GrGLCaps.cpp +++ b/src/gpu/gl/GrGLCaps.cpp @@ -164,7 +164,7 @@ void GrGLCaps::init(const GrContextOptions& contextOptions, // All the above srgb extensions support toggling srgb writes fSRGBWriteControl = srgbSupport; } else { - // See http://skbug.com/4148 for PowerVR issue. + // See https://bug.skia.org/4148 for PowerVR issue. srgbSupport = kPowerVRRogue_GrGLRenderer != ctxInfo.renderer() && (ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB")); // ES through 3.1 requires EXT_srgb_write_control to support toggling @@ -262,7 +262,7 @@ void GrGLCaps::init(const GrContextOptions& contextOptions, } } -#if 0 // Disabled due to http://skbug.com/4454 +#if 0 // Disabled due to https://bug.skia.org/4454 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location"); #else fBindUniformLocationSupport = false; @@ -789,7 +789,7 @@ void GrGLCaps::initConfigTexturableTable(const GrGLContextInfo& ctxInfo, const G fConfigTextureSupport[kRGBA_4444_GrPixelConfig] = true; fConfigTextureSupport[kRGBA_8888_GrPixelConfig] = true; - // Disable this for now, while we investigate skbug.com/4333 + // Disable this for now, while we investigate https://bug.skia.org/4333 if (false) { // Check for 8-bit palette.. GrGLint numFormats; |