| Index: Source/core/html/canvas/OESVertexArrayObject.cpp
|
| diff --git a/Source/core/html/canvas/OESVertexArrayObject.cpp b/Source/core/html/canvas/OESVertexArrayObject.cpp
|
| index a449da0aad880fdc9a10297ce6372b69e2ff6490..9585e901d0c4c6b562bffbda07d9d506cec2837e 100644
|
| --- a/Source/core/html/canvas/OESVertexArrayObject.cpp
|
| +++ b/Source/core/html/canvas/OESVertexArrayObject.cpp
|
| @@ -28,12 +28,12 @@
|
| #include "core/html/canvas/OESVertexArrayObject.h"
|
|
|
| #include "bindings/v8/ExceptionState.h"
|
| -#include "core/html/canvas/WebGLRenderingContext.h"
|
| +#include "core/html/canvas/WebGLRenderingContextBase.h"
|
| #include "core/html/canvas/WebGLVertexArrayObjectOES.h"
|
|
|
| namespace WebCore {
|
|
|
| -OESVertexArrayObject::OESVertexArrayObject(WebGLRenderingContext* context)
|
| +OESVertexArrayObject::OESVertexArrayObject(WebGLRenderingContextBase* context)
|
| : WebGLExtension(context)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -44,12 +44,12 @@ OESVertexArrayObject::~OESVertexArrayObject()
|
| {
|
| }
|
|
|
| -WebGLExtension::ExtensionName OESVertexArrayObject::name() const
|
| +WebGLExtensionName OESVertexArrayObject::name() const
|
| {
|
| return OESVertexArrayObjectName;
|
| }
|
|
|
| -PassRefPtr<OESVertexArrayObject> OESVertexArrayObject::create(WebGLRenderingContext* context)
|
| +PassRefPtr<OESVertexArrayObject> OESVertexArrayObject::create(WebGLRenderingContextBase* context)
|
| {
|
| return adoptRef(new OESVertexArrayObject(context));
|
| }
|
| @@ -107,7 +107,7 @@ void OESVertexArrayObject::bindVertexArrayOES(WebGLVertexArrayObjectOES* arrayOb
|
| }
|
| }
|
|
|
| -bool OESVertexArrayObject::supported(WebGLRenderingContext* context)
|
| +bool OESVertexArrayObject::supported(WebGLRenderingContextBase* context)
|
| {
|
| return context->extensionsUtil()->supportsExtension("GL_OES_vertex_array_object");
|
| }
|
|
|