| Index: Source/WebCore/platform/graphics/GraphicsContext3D.h
|
| diff --git a/Source/WebCore/platform/graphics/GraphicsContext3D.h b/Source/WebCore/platform/graphics/GraphicsContext3D.h
|
| index 2162a046550009eb105993b6f00c33d7dd55d160..5ee89ff0153ad7e59bb1131d81c99209979ebc73 100644
|
| --- a/Source/WebCore/platform/graphics/GraphicsContext3D.h
|
| +++ b/Source/WebCore/platform/graphics/GraphicsContext3D.h
|
| @@ -673,7 +673,7 @@ public:
|
| void stencilOp(GC3Denum fail, GC3Denum zfail, GC3Denum zpass);
|
| void stencilOpSeparate(GC3Denum face, GC3Denum fail, GC3Denum zfail, GC3Denum zpass);
|
|
|
| - bool texImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, const void* pixels);
|
| + void texImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, const void* pixels);
|
| void texParameterf(GC3Denum target, GC3Denum pname, GC3Dfloat param);
|
| void texParameteri(GC3Denum target, GC3Denum pname, GC3Dint param);
|
| void texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, const void* pixels);
|
|
|