Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.cpp

Issue 2814853002: Blink Rename follow-up: S3TCsRGB should become _s3tc_srgb (not _s3t_cs_rgb). (Closed)
Patch Set: Changed the spelling to ...s3tc_srgb_... Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.cpp b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.cpp
index 0b4a7a2d908d90092c550c1c3c33f0e2ef4a1f26..9ae8b8a816318230dc51890d396605d75d0559f1 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.cpp
@@ -199,7 +199,7 @@ void WebGLRenderingContext::RegisterContextExtensions() {
RegisterExtension<WebGLCompressedTextureS3TC>(
webgl_compressed_texture_s3tc_, kApprovedExtension, kBothPrefixes);
RegisterExtension<WebGLCompressedTextureS3TCsRGB>(
- webgl_compressed_texture_s3t_cs_rgb_, kDraftExtension, kBothPrefixes);
+ webgl_compressed_texture_s3tc_srgb_, kDraftExtension, kBothPrefixes);
RegisterExtension<WebGLDebugRendererInfo>(webgl_debug_renderer_info_);
RegisterExtension<WebGLDebugShaders>(webgl_debug_shaders_);
RegisterExtension<WebGLDepthTexture>(webgl_depth_texture_, kApprovedExtension,
@@ -234,7 +234,7 @@ DEFINE_TRACE(WebGLRenderingContext) {
visitor->Trace(webgl_compressed_texture_etc1_);
visitor->Trace(webgl_compressed_texture_pvrtc_);
visitor->Trace(webgl_compressed_texture_s3tc_);
- visitor->Trace(webgl_compressed_texture_s3t_cs_rgb_);
+ visitor->Trace(webgl_compressed_texture_s3tc_srgb_);
visitor->Trace(webgl_depth_texture_);
WebGLRenderingContextBase::Trace(visitor);
}
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698