Title: [162600] trunk/Source/WebCore
Revision
162600
Author
changseok...@collabora.com
Date
2014-01-23 00:10:47 -0800 (Thu, 23 Jan 2014)

Log Message

Unreviewed build fix for gles after r162565. Add missing definitions.

* platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp:
(WebCore::GraphicsContext3D::drawArraysInstanced):
(WebCore::GraphicsContext3D::drawElementsInstanced):
(WebCore::GraphicsContext3D::vertexAttribDivisor):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (162599 => 162600)


--- trunk/Source/WebCore/ChangeLog	2014-01-23 07:53:48 UTC (rev 162599)
+++ trunk/Source/WebCore/ChangeLog	2014-01-23 08:10:47 UTC (rev 162600)
@@ -1,3 +1,12 @@
+2014-01-23  ChangSeok Oh  <changseok...@collabora.com>
+
+        Unreviewed build fix for gles after r162565. Add missing definitions.
+
+        * platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp:
+        (WebCore::GraphicsContext3D::drawArraysInstanced):
+        (WebCore::GraphicsContext3D::drawElementsInstanced):
+        (WebCore::GraphicsContext3D::vertexAttribDivisor):
+
 2014-01-22  Carlos Garcia Campos  <cgar...@igalia.com>
 
         [GLIB] Use GUniquePtr instead of GOwnPtr

Modified: trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp (162599 => 162600)


--- trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp	2014-01-23 07:53:48 UTC (rev 162599)
+++ trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp	2014-01-23 08:10:47 UTC (rev 162600)
@@ -206,7 +206,29 @@
     ::glClearDepthf(depth);
 }
 
+void GraphicsContext3D::drawArraysInstanced(GC3Denum mode, GC3Dint first, GC3Dsizei count, GC3Dsizei primcount)
+{
+    UNUSED_PARAM(mode);
+    UNUSED_PARAM(first);
+    UNUSED_PARAM(count);
+    UNUSED_PARAM(primcount);
+}
 
+void GraphicsContext3D::drawElementsInstanced(GC3Denum mode, GC3Dsizei count, GC3Denum type, GC3Dintptr offset, GC3Dsizei primcount)
+{
+    UNUSED_PARAM(mode);
+    UNUSED_PARAM(count);
+    UNUSED_PARAM(type);
+    UNUSED_PARAM(offset);
+    UNUSED_PARAM(primcount);
+}
+
+void GraphicsContext3D::vertexAttribDivisor(GC3Duint index, GC3Duint divisor)
+{
+    UNUSED_PARAM(index);
+    UNUSED_PARAM(divisor);
+}
+
 Extensions3D* GraphicsContext3D::getExtensions()
 {
     if (!m_extensions)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to