Fix compile error in MS-Windows. 55/239055/1
authorVictor Cebollada <v.cebollada@samsung.com>
Tue, 21 Jul 2020 10:46:59 +0000 (11:46 +0100)
committerVictor Cebollada <v.cebollada@samsung.com>
Tue, 21 Jul 2020 10:55:49 +0000 (11:55 +0100)
* The patch "Modify parameters of CreateNativeSurface()" adds a new parameter
  to the RenderSurfaceFactory that is not added in the implementation for
  MS Windows

* Couple of warnings 'struct/class declaration' removed.

Change-Id: If68666e14c78f20c1480afa5b2e9e6ed125d5bb8
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
dali/devel-api/adaptor-framework/window-devel.h
dali/internal/window-system/windows/render-surface-factory-win.h

index 8b19720..2f83702 100644 (file)
@@ -27,9 +27,9 @@
 
 namespace Dali
 {
-class KeyEvent;
+struct KeyEvent;
 class TouchData;
-class WheelEvent;
+struct WheelEvent;
 class RenderTaskList;
 
 namespace DevelWindow
index 436ad70..a4e6626 100755 (executable)
@@ -34,7 +34,7 @@ public:
 
   std::unique_ptr< PixmapRenderSurface > CreatePixmapRenderSurface( Dali::PositionSize positionSize, Any surface, bool isTransparent = false ) override;
 
-  std::unique_ptr< NativeRenderSurface > CreateNativeRenderSurface( SurfaceSize surfaceSize, bool isTransparent = false ) override;
+  std::unique_ptr< NativeRenderSurface > CreateNativeRenderSurface(SurfaceSize surfaceSize, Any surface, bool isTransparent = false) override;
 };
 
 } // namespace Adaptor