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

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

Issue 2337833002: Implement WEBGL_compressed_texture_s3tc_srgb (Closed)
Patch Set: Implement WEBGL_compressed_texture_s3tc_srgb 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/WebGLCompressedTextureS3TCsRGB.h
diff --git a/third_party/WebKit/Source/modules/webgl/OESStandardDerivatives.h b/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TCsRGB.h
similarity index 77%
copy from third_party/WebKit/Source/modules/webgl/OESStandardDerivatives.h
copy to third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TCsRGB.h
index 43ba2e3b3db4c83c819c00d5098f2d039646d11c..6531673ae1740c38f77d644593f869f086da8ddd 100644
--- a/third_party/WebKit/Source/modules/webgl/OESStandardDerivatives.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TCsRGB.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
+ * Copyright (C) 2016 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -23,27 +23,27 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef OESStandardDerivatives_h
-#define OESStandardDerivatives_h
+#ifndef WebGLCompressedTextureS3TCsRGB_h
+#define WebGLCompressedTextureS3TCsRGB_h
#include "modules/webgl/WebGLExtension.h"
namespace blink {
-class OESStandardDerivatives final : public WebGLExtension {
+class WebGLCompressedTextureS3TCsRGB final : public WebGLExtension {
DEFINE_WRAPPERTYPEINFO();
public:
- static OESStandardDerivatives* create(WebGLRenderingContextBase*);
+ static WebGLCompressedTextureS3TCsRGB* create(WebGLRenderingContextBase*);
static bool supported(WebGLRenderingContextBase*);
static const char* extensionName();
- ~OESStandardDerivatives() override;
+ ~WebGLCompressedTextureS3TCsRGB() override;
WebGLExtensionName name() const override;
private:
- explicit OESStandardDerivatives(WebGLRenderingContextBase*);
+ explicit WebGLCompressedTextureS3TCsRGB(WebGLRenderingContextBase*);
};
} // namespace blink
-#endif // OESStandardDerivatives_h
+#endif // WebGLCompressedTextureS3TCsRGB_h

Powered by Google App Engine
This is Rietveld 408576698