| Index: Source/core/html/canvas/WebGLTexture.h
|
| diff --git a/Source/core/html/canvas/WebGLTexture.h b/Source/core/html/canvas/WebGLTexture.h
|
| index d766c3f617ed17a544c68bebff104612405fbc39..1773fe767b444aad633505ba0d30968f64f86c66 100644
|
| --- a/Source/core/html/canvas/WebGLTexture.h
|
| +++ b/Source/core/html/canvas/WebGLTexture.h
|
| @@ -47,6 +47,9 @@ public:
|
| GC3Denum getTarget() const { return m_target; }
|
|
|
| int getMinFilter() const { return m_minFilter; }
|
| + int getMagFilter() const { return m_magFilter; };
|
| + int getWrapS() const { return m_wrapS; }
|
| + int getWrapT() const { return m_wrapT; }
|
|
|
| void setLevelInfo(GC3Denum target, GC3Dint level, GC3Denum internalFormat, GC3Dsizei width, GC3Dsizei height, GC3Denum type);
|
|
|
|
|