| Index: third_party/WebKit/Source/platform/graphics/test/MockWebGraphicsContext3D.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/test/MockWebGraphicsContext3D.h b/third_party/WebKit/Source/platform/graphics/test/MockWebGraphicsContext3D.h
|
| index 46fc70b1911e0f1a1db9ce1e2fd79aafccd591b9..761c1a1289770229c132698f579b88fabac27900 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/test/MockWebGraphicsContext3D.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/test/MockWebGraphicsContext3D.h
|
| @@ -47,8 +47,6 @@ public:
|
|
|
| virtual void blitFramebufferCHROMIUM(WGC3Dint srcX0, WGC3Dint srcY0, WGC3Dint srcX1, WGC3Dint srcY1, WGC3Dint dstX0, WGC3Dint dstY0, WGC3Dint dstX1, WGC3Dint dstY1, WGC3Dbitfield mask, WGC3Denum filter) { }
|
|
|
| - virtual void drawElements(WGC3Denum mode, WGC3Dsizei count, WGC3Denum type, WGC3Dintptr offset) { }
|
| -
|
| virtual bool getActiveAttrib(WebGLId program, WGC3Duint index, ActiveInfo&) { return false; }
|
| virtual bool getActiveUniform(WebGLId program, WGC3Duint index, ActiveInfo&) { return false; }
|
| virtual Attributes getContextAttributes() { return m_attrs; }
|
| @@ -57,12 +55,9 @@ public:
|
| virtual WebString getShaderInfoLog(WebGLId shader) { return WebString(); }
|
| virtual WebString getShaderSource(WebGLId shader) { return WebString(); }
|
| virtual WebString getString(WGC3Denum name) { return WebString(); }
|
| - virtual WGC3Dsizeiptr getVertexAttribOffset(WGC3Duint index, WGC3Denum pname) { return 0; }
|
|
|
| virtual void shaderSource(WebGLId shader, const WGC3Dchar* string) { }
|
|
|
| - virtual void vertexAttribPointer(WGC3Duint index, WGC3Dint size, WGC3Denum type, WGC3Dboolean normalized, WGC3Dsizei stride, WGC3Dintptr offset) { }
|
| -
|
| virtual void genBuffers(WGC3Dsizei count, WebGLId* ids)
|
| {
|
| for (int i = 0; i < count; ++i)
|
|
|