packaging: Update dependencies and bump version to 0.9.23
[profile/ivi/ico-uxf-weston-plugin.git] / tests / test-thumbnail.c
1 /*
2  * Copyright © 2013 TOYOTA MOTOR CORPORATION
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting documentation, and
8  * that the name of the copyright holders not be used in advertising or
9  * publicity pertaining to distribution of the software without specific,
10  * written prior permission.  The copyright holders make no representations
11  * about the suitability of this software for any purpose.  It is provided "as
12  * is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20  * OF THIS SOFTWARE.
21  */
22 /**
23  * @brief   Uint test thumbnail routines
24  *
25  * @date    Sep-05-2013
26  */
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <unistd.h>
32 #include "test-common.h"
33
34 /*--------------------------------------------------------------------------*/
35 /**
36  * @brief   opengl_thumbnail: get application buffer thumbnail
37  *
38  * @param[in]   display     Wayland display
39  * @param[in]   surfaceid   UIFW surface Id
40  * @param[in]   dpy         EGL display
41  * @param[in]   ctx         EGL context
42  * @param[in]   target      EGL buffer name(Id)
43  * @param[in]   width       Widown width
44  * @param[in]   height      Window height
45  * @param[in]   stride      Window stride
46  * @param[in]   format      Buffer format
47  * @return      nothing
48  */
49 /*--------------------------------------------------------------------------*/
50 void
51 opengl_thumbnail(struct wl_display *display, uint32_t surfaceid, EGLDisplay dpy,
52                  EGLConfig conf, EGLSurface egl_surface, EGLContext ctx,
53                  uint32_t target, int width, int height, int stride, uint32_t format)
54 {
55     print_log("opengl_thumbnail: Not support.");
56 }
57