Remove an unused header file 30/177730/3
authorHeeyong Song <heeyong.song@samsung.com>
Thu, 3 May 2018 07:12:07 +0000 (16:12 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Wed, 9 May 2018 23:24:16 +0000 (08:24 +0900)
Change-Id: Ibd1eb97c25827f003563cf920f6e13b78cb538b5

dali/internal/window-system/tizen-wayland/window-render-surface-ecore-wl.cpp
dali/internal/window-system/tizen-wayland/wl-types.h [deleted file]

index 467635b..50d0777 100644 (file)
@@ -23,7 +23,6 @@
 #include <dali/integration-api/debug.h>
 
 // INTERNAL INCLUDES
-#include <dali/internal/window-system/tizen-wayland/wl-types.h>
 #include <dali/internal/graphics/gles20/egl-implementation.h>
 #include <dali/internal/adaptor/common/adaptor-impl.h>
 #include <dali/integration-api/trigger-event-factory-interface.h>
diff --git a/dali/internal/window-system/tizen-wayland/wl-types.h b/dali/internal/window-system/tizen-wayland/wl-types.h
deleted file mode 100644 (file)
index d01b31d..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-#ifndef __DALI_WL_TYPES_H__
-#define __DALI_WL_TYPES_H__
-
-/*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-// EXTERNAL INCLUDES
-#include <wayland-client.h> // from wayland-devel package
-
-#ifdef WAYLAND_EXTENSIONS_SUPPORTED
-#include <wayland-extension/xdg-shell-client-protocol.h>   // from wayland
-#include <wayland-extension/text-client-protocol.h>
-#endif
-
-namespace Dali
-{
-
-typedef ::wl_display WlDisplay;
-typedef ::wl_surface WlSurface;
-typedef ::wl_array WlArray;
-typedef ::wl_output WlOutput;
-
-typedef ::wl_shell WlShell;
-typedef ::wl_shell_surface WlShellSurface;
-
-typedef ::wl_registry WlRegistry;
-typedef ::wl_compositor WlCompositor;
-typedef ::wl_seat WlSeat;
-typedef ::wl_pointer WlPointer;
-typedef ::wl_keyboard WlKeyboard;
-typedef ::wl_touch WlTouch;
-
-typedef ::wl_seat_listener WlSeatListener;
-typedef ::wl_pointer_listener WlPointerListener;
-typedef ::wl_touch_listener WlTouchListener;
-typedef ::wl_keyboard_listener WlKeyboardListener;
-
-#ifdef WAYLAND_EXTENSIONS_SUPPORTED
-typedef ::xdg_shell WlXdgShell;
-typedef ::xdg_surface WlXdgShellSurface;
-typedef ::wl_text_input_manager WlTextInputManager;   // See Tizen wayland-extensions/protocol/text.xml
-typedef ::wl_text_input WlTextInput;                  // See Tizen wayland-extensions/protocol/text.xml
-typedef ::wl_text_input_listener WlTextInputListener; // See Tizen wayland-extensions/protocol/text.xml
-
-#else
-typedef void* WlXdgShell;
-typedef void* WlXdgShellSurface;
-typedef void* WlTextInputManager;
-typedef void* WlTextInput;
-typedef void* WlTextInputListener;
-
-#endif
-
-} // namespace Dali
-
-#endif /* __DALI_WL_TYPES_H__ */