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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureES30.h

Issue 2354713004: Implement WEBGL_compressed_texture_es3_0 extension for WebGL 1/2 (Closed)
Patch Set: fixup Created 4 years, 3 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
Index: third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureES30.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TCsRGB.h b/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureES30.h
similarity index 53%
copy from third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TCsRGB.h
copy to third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureES30.h
index c64b6fb51f7341063412283d6c673bbaf5e148df..957e48f9c0a67d85341ea5340e9afb1920d5942f 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TCsRGB.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureES30.h
@@ -2,27 +2,27 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WebGLCompressedTextureS3TCsRGB_h
-#define WebGLCompressedTextureS3TCsRGB_h
+#ifndef WebGLCompressedTextureES30_h
+#define WebGLCompressedTextureES30_h
#include "modules/webgl/WebGLExtension.h"
namespace blink {
-class WebGLCompressedTextureS3TCsRGB final : public WebGLExtension {
+class WebGLCompressedTextureES30 final : public WebGLExtension {
DEFINE_WRAPPERTYPEINFO();
public:
- static WebGLCompressedTextureS3TCsRGB* create(WebGLRenderingContextBase*);
+ static WebGLCompressedTextureES30* create(WebGLRenderingContextBase*);
static bool supported(WebGLRenderingContextBase*);
static const char* extensionName();
- ~WebGLCompressedTextureS3TCsRGB() override;
+ ~WebGLCompressedTextureES30() override;
WebGLExtensionName name() const override;
private:
- explicit WebGLCompressedTextureS3TCsRGB(WebGLRenderingContextBase*);
+ explicit WebGLCompressedTextureES30(WebGLRenderingContextBase*);
};
} // namespace blink
-#endif // WebGLCompressedTextureS3TCsRGB_h
+#endif // WebGLCompressedTextureES30_h

Powered by Google App Engine
This is Rietveld 408576698