[3.0] Update with the moving of mutex, conditional wait under a threading folder
[platform/core/uifw/dali-adaptor.git] / adaptors / x11 / ecore-x-render-surface-factory.cpp
index 4e1fee8..552ea12 100644 (file)
  */
 
 // INTERNAL INCLUDES
-#include "pixmap-render-surface.h"
+#include <pixmap-render-surface.h>
 
 namespace Dali
 {
 
-namespace Internal
-{
-
-namespace Adaptor
-{
-
 namespace ECore
 {
 
-DALI_EXPORT_API RenderSurface* CreatePixmapSurface(
+DALI_EXPORT_API PixmapRenderSurface* CreatePixmapSurface(
   PositionSize       positionSize,
   Any                surface,
-  Any                display,
   const std::string& name,
-  bool               isTransparent )
+  bool               isTransparent)
 {
-  return new PixmapRenderSurface( positionSize, surface, display, name, isTransparent );
+  return new PixmapRenderSurface(positionSize, surface, name, isTransparent);
 }
 
-} // namespace ECore
-
-} // namespace Adaptor
 
-} // namespace Internal
+} // namespace ECore
 
 } // namespace Dali