Modify it to adjust Tizen IVI enviroment
[platform/upstream/kmscon.git] / src / uterm_drm2d_internal.h
1 /*
2  * uterm - Linux User-Space Terminal drm2d module
3  *
4  * Copyright (c) 2011-2013 David Herrmann <dh.herrmann@googlemail.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files
8  * (the "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included
15  * in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25
26 /* Internal definitions */
27
28 #ifndef UTERM_DRM2D_INTERNAL_H
29 #define UTERM_DRM2D_INTERNAL_H
30
31 #include <inttypes.h>
32 #include <limits.h>
33 #include <stdbool.h>
34 #include <stdlib.h>
35 #include "uterm_video.h"
36
37 struct uterm_drm2d_rb {
38         uint32_t fb;
39         uint32_t handle;
40         uint32_t stride;
41         uint64_t size;
42         void *map;
43 };
44
45 struct uterm_drm2d_display {
46         int current_rb;
47         struct uterm_drm2d_rb rb[2];
48 };
49
50 struct uterm_drm2d_video {
51         int fd;
52         struct ev_fd *efd;
53 };
54
55 int uterm_drm2d_display_blit(struct uterm_display *disp,
56                              const struct uterm_video_buffer *buf,
57                              unsigned int x, unsigned int y);
58 int uterm_drm2d_display_fake_blendv(struct uterm_display *disp,
59                                     const struct uterm_video_blend_req *req,
60                                     size_t num);
61 int uterm_drm2d_display_fill(struct uterm_display *disp,
62                              uint8_t r, uint8_t g, uint8_t b,
63                              unsigned int x, unsigned int y,
64                              unsigned int width, unsigned int height);
65
66 #endif /* UTERM_DRM2D_INTERNAL_H */