tizen beta release
[framework/web/webkit-efl.git] / Source / WebCore / platform / graphics / gpu / efl / DrawingBufferEfl.cpp
index 2896257..412a815 100755 (executable)
@@ -25,7 +25,7 @@
 
 #include "config.h"
 
-#if ENABLE(ACCELERATED_2D_CANVAS_EFL) || ENABLE(WEBGL)
+#if ENABLE(TIZEN_ACCELERATED_2D_CANVAS_EFL) || ENABLE(WEBGL)
 
 #include "DrawingBuffer.h"
 
@@ -34,12 +34,13 @@ namespace WebCore {
 DrawingBuffer::DrawingBuffer(GraphicsContext3D* context,
                              const IntSize& size,
                              bool multisampleExtensionSupported,
-                             bool packedDepthStencilExtensionSupported)
+                             bool packedDepthStencilExtensionSupported,
+                             bool separateBackingTexture)
     : m_context(context)
     , m_size(-1, -1)
     , m_multisampleExtensionSupported(multisampleExtensionSupported)
     , m_packedDepthStencilExtensionSupported(packedDepthStencilExtensionSupported)
-#if !ENABLE(ACCELERATED_2D_CANVAS_EFL)
+#if !ENABLE(TIZEN_ACCELERATED_2D_CANVAS_EFL)
     , m_fbo(context->createFramebuffer())
 #endif
     , m_colorBuffer(0)