git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
BUILD FIX (r144358): Add UNUSED_PARAM() macros to WebCore::Extensions3DOpenGL::drawBu...
[WebKit-https.git]
/
Source
/
WebCore
/
platform
/
graphics
/
opengl
/
Extensions3DOpenGL.cpp
diff --git
a/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp
b/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp
index f17541a21b5c7849ac34cac5f185170443609ce4..17ee0b2e1f632f567e3bedd4e69cff8700424e0c 100644
(file)
--- a/
Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp
+++ b/
Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp
@@
-194,6
+194,9
@@
void Extensions3DOpenGL::drawBuffersEXT(GC3Dsizei n, const GC3Denum* bufs)
// FIXME: implement support for other platforms.
#if PLATFORM(MAC)
::glDrawBuffersARB(n, bufs);
+#else
+ UNUSED_PARAM(n);
+ UNUSED_PARAM(bufs);
#endif
}