Modify it to adjust Tizen IVI enviroment
[platform/upstream/kmscon.git] / src / uterm_drm3d_internal.h
1 /*
2  * uterm - Linux User-Space Terminal drm3d 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_DRM3D_INTERNAL_H
29 #define UTERM_DRM3D_INTERNAL_H
30
31 #define EGL_EGLEXT_PROTOTYPES
32 #define GL_GLEXT_PROTOTYPES
33
34 #include <EGL/egl.h>
35 #include <EGL/eglext.h>
36 #include <errno.h>
37 #include <fcntl.h>
38 #include <gbm.h>
39 #include <GLES2/gl2.h>
40 #include <GLES2/gl2ext.h>
41 #include <inttypes.h>
42 #include <stdbool.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <unistd.h>
46 #include <xf86drm.h>
47 #include <xf86drmMode.h>
48 #include "uterm_video.h"
49
50 /* thanks khronos for breaking backwards compatibility.. */
51 #if !defined(GL_UNPACK_ROW_LENGTH) && defined(GL_UNPACK_ROW_LENGTH_EXT)
52 #  define GL_UNPACK_ROW_LENGTH GL_UNPACK_ROW_LENGTH_EXT
53 #endif
54
55 struct uterm_drm3d_rb {
56         struct uterm_display *disp;
57         struct gbm_bo *bo;
58         uint32_t fb;
59 };
60
61 struct uterm_drm3d_display {
62         struct gbm_surface *gbm;
63         EGLSurface surface;
64         struct uterm_drm3d_rb *current;
65         struct uterm_drm3d_rb *next;
66 };
67
68 struct uterm_drm3d_video {
69         struct gbm_device *gbm;
70         EGLDisplay disp;
71         EGLConfig conf;
72         EGLContext ctx;
73
74         unsigned int sinit;
75         bool supports_rowlen;
76         GLuint tex;
77
78         struct gl_shader *fill_shader;
79         GLuint uni_fill_proj;
80
81         struct gl_shader *blend_shader;
82         GLuint uni_blend_proj;
83         GLuint uni_blend_tex;
84         GLuint uni_blend_fgcol;
85         GLuint uni_blend_bgcol;
86
87         struct gl_shader *blit_shader;
88         GLuint uni_blit_proj;
89         GLuint uni_blit_tex;
90 };
91
92 int uterm_drm3d_display_use(struct uterm_display *disp, bool *opengl);
93 void uterm_drm3d_deinit_shaders(struct uterm_video *video);
94 int uterm_drm3d_display_blit(struct uterm_display *disp,
95                              const struct uterm_video_buffer *buf,
96                              unsigned int x, unsigned int y);
97 int uterm_drm3d_display_fake_blendv(struct uterm_display *disp,
98                                     const struct uterm_video_blend_req *req,
99                                     size_t num);
100 int uterm_drm3d_display_fill(struct uterm_display *disp,
101                              uint8_t r, uint8_t g, uint8_t b,
102                              unsigned int x, unsigned int y,
103                              unsigned int width, unsigned int height);
104
105 #endif /* UTERM_DRM3D_INTERNAL_H */