summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/Extensions3D.h
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-05-24 11:24:40 +0100
committerBen Murdoch <benm@google.com>2011-06-02 09:53:15 +0100
commit81bc750723a18f21cd17d1b173cd2a4dda9cea6e (patch)
tree7a9e5ed86ff429fd347a25153107221543909b19 /Source/WebCore/platform/graphics/Extensions3D.h
parent94088a6d336c1dd80a1e734af51e96abcbb689a7 (diff)
downloadexternal_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.zip
external_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.tar.gz
external_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.tar.bz2
Merge WebKit at r80534: Intial merge by Git
Change-Id: Ia7a83357124c9e1cdb1debf55d9661ec0bd09a61
Diffstat (limited to 'Source/WebCore/platform/graphics/Extensions3D.h')
-rw-r--r--Source/WebCore/platform/graphics/Extensions3D.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/Source/WebCore/platform/graphics/Extensions3D.h b/Source/WebCore/platform/graphics/Extensions3D.h
index 6d6efe5..5d5a5b7 100644
--- a/Source/WebCore/platform/graphics/Extensions3D.h
+++ b/Source/WebCore/platform/graphics/Extensions3D.h
@@ -26,6 +26,8 @@
#ifndef Extensions3D_h
#define Extensions3D_h
+#include "GraphicsTypes3D.h"
+
#include <wtf/text/WTFString.h>
namespace WebCore {
@@ -53,6 +55,7 @@ public:
// GL_OES_texture_float
// GL_OES_standard_derivatives
// GL_OES_rgb8_rgba8
+ // GL_OES_vertex_array_object
// Takes full name of extension; for example,
// "GL_EXT_texture_format_BGRA8888".
@@ -92,6 +95,9 @@ public:
// GL_OES_rgb8_rgba8 names
RGB8_OES = 0x8051,
RGBA8_OES = 0x8058,
+
+ // GL_OES_vertex_array_object names
+ VERTEX_ARRAY_BINDING_OES = 0x85B5,
};
// GL_ARB_robustness
@@ -101,7 +107,13 @@ public:
virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY0, long dstX1, long dstY1, unsigned long mask, unsigned long filter) = 0;
// GL_ANGLE_framebuffer_multisample
- virtual void renderbufferStorageMultisample(unsigned long target, unsigned long samples, unsigned long internalformat, unsigned long width, unsigned long height) = 0;
+ virtual void renderbufferStorageMultisample(unsigned long target, unsigned long samples, unsigned long internalformat, unsigned long width, unsigned long height) = 0;
+
+ // GL_OES_vertex_array_object
+ virtual Platform3DObject createVertexArrayOES() = 0;
+ virtual void deleteVertexArrayOES(Platform3DObject) = 0;
+ virtual GC3Dboolean isVertexArrayOES(Platform3DObject) = 0;
+ virtual void bindVertexArrayOES(Platform3DObject) = 0;
};
} // namespace WebCore