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

Unified Diff: Source/core/html/canvas/EXTBlendMinMax.h

Issue 287563002: Added Blink-side support for EXT_blend_minmax WebGL extension (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Made sure validation set the right glError Created 6 years, 7 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 | « Source/core/core.gypi ('k') | Source/core/html/canvas/EXTBlendMinMax.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/EXTBlendMinMax.h
diff --git a/Source/core/html/canvas/EXTShaderTextureLOD.h b/Source/core/html/canvas/EXTBlendMinMax.h
similarity index 59%
copy from Source/core/html/canvas/EXTShaderTextureLOD.h
copy to Source/core/html/canvas/EXTBlendMinMax.h
index 342d94d09659257ce7cfb3b0da5d65ef34282989..4c6421760ded73956982c12ca9e6e853a21fc0c8 100644
--- a/Source/core/html/canvas/EXTShaderTextureLOD.h
+++ b/Source/core/html/canvas/EXTBlendMinMax.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef EXTShaderTextureLOD_h
-#define EXTShaderTextureLOD_h
+#ifndef EXTBlendMinMax_h
+#define EXTBlendMinMax_h
#include "bindings/v8/ScriptWrappable.h"
#include "core/html/canvas/WebGLExtension.h"
@@ -11,19 +11,19 @@
namespace WebCore {
-class EXTShaderTextureLOD FINAL : public WebGLExtension, public ScriptWrappable {
+class EXTBlendMinMax FINAL : public WebGLExtension, public ScriptWrappable {
public:
- static PassRefPtr<EXTShaderTextureLOD> create(WebGLRenderingContextBase*);
+ static PassRefPtr<EXTBlendMinMax> create(WebGLRenderingContextBase*);
static bool supported(WebGLRenderingContextBase*);
static const char* extensionName();
- virtual ~EXTShaderTextureLOD();
+ virtual ~EXTBlendMinMax();
virtual WebGLExtensionName name() const OVERRIDE;
private:
- EXTShaderTextureLOD(WebGLRenderingContextBase*);
+ EXTBlendMinMax(WebGLRenderingContextBase*);
};
} // namespace WebCore
-#endif // EXTShaderTextureLOD_h
+#endif // EXTBlendMinMax_h
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/html/canvas/EXTBlendMinMax.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698