You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
4.1 KiB
133 lines
4.1 KiB
12 years ago
|
/*
|
||
|
* Copyright © 2012 John Kåre Alsaker
|
||
|
*
|
||
10 years ago
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||
|
* a copy of this software and associated documentation files (the
|
||
|
* "Software"), to deal in the Software without restriction, including
|
||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||
|
* the following conditions:
|
||
12 years ago
|
*
|
||
10 years ago
|
* The above copyright notice and this permission notice (including the
|
||
|
* next paragraph) shall be included in all copies or substantial
|
||
|
* portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||
|
* SOFTWARE.
|
||
12 years ago
|
*/
|
||
|
|
||
12 years ago
|
#include "config.h"
|
||
|
|
||
|
#include "compositor.h"
|
||
12 years ago
|
|
||
12 years ago
|
#ifdef ENABLE_EGL
|
||
|
|
||
12 years ago
|
#include <EGL/egl.h>
|
||
10 years ago
|
#include <EGL/eglext.h>
|
||
12 years ago
|
|
||
12 years ago
|
#else
|
||
|
|
||
|
typedef int EGLint;
|
||
10 years ago
|
typedef int EGLenum;
|
||
12 years ago
|
typedef void *EGLDisplay;
|
||
|
typedef void *EGLSurface;
|
||
10 years ago
|
typedef void *EGLConfig;
|
||
12 years ago
|
typedef intptr_t EGLNativeDisplayType;
|
||
|
typedef intptr_t EGLNativeWindowType;
|
||
11 years ago
|
#define EGL_DEFAULT_DISPLAY ((EGLNativeDisplayType)0)
|
||
12 years ago
|
|
||
10 years ago
|
#endif /* ENABLE_EGL */
|
||
|
|
||
10 years ago
|
#ifndef EGL_EXT_platform_base
|
||
|
typedef EGLDisplay (*PFNEGLGETPLATFORMDISPLAYEXTPROC) (EGLenum platform, void *native_display, const EGLint *attrib_list);
|
||
|
typedef EGLSurface (*PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list);
|
||
|
#endif
|
||
|
|
||
10 years ago
|
#ifndef EGL_PLATFORM_GBM_KHR
|
||
|
#define EGL_PLATFORM_GBM_KHR 0x31D7
|
||
|
#endif
|
||
|
|
||
|
#ifndef EGL_PLATFORM_WAYLAND_KHR
|
||
|
#define EGL_PLATFORM_WAYLAND_KHR 0x31D8
|
||
|
#endif
|
||
|
|
||
|
#ifndef EGL_PLATFORM_X11_KHR
|
||
|
#define EGL_PLATFORM_X11_KHR 0x31D5
|
||
12 years ago
|
#endif
|
||
11 years ago
|
|
||
10 years ago
|
#define NO_EGL_PLATFORM 0
|
||
|
|
||
11 years ago
|
enum gl_renderer_border_side {
|
||
|
GL_RENDERER_BORDER_TOP = 0,
|
||
|
GL_RENDERER_BORDER_LEFT = 1,
|
||
|
GL_RENDERER_BORDER_RIGHT = 2,
|
||
|
GL_RENDERER_BORDER_BOTTOM = 3,
|
||
|
};
|
||
|
|
||
11 years ago
|
struct gl_renderer_interface {
|
||
|
const EGLint *opaque_attribs;
|
||
|
const EGLint *alpha_attribs;
|
||
|
|
||
|
int (*create)(struct weston_compositor *ec,
|
||
10 years ago
|
EGLenum platform,
|
||
|
void *native_window,
|
||
11 years ago
|
const EGLint *attribs,
|
||
10 years ago
|
const EGLint *visual_id,
|
||
|
const int n_ids);
|
||
11 years ago
|
|
||
|
EGLDisplay (*display)(struct weston_compositor *ec);
|
||
|
|
||
|
int (*output_create)(struct weston_output *output,
|
||
10 years ago
|
EGLNativeWindowType window_for_legacy,
|
||
|
void *window_for_platform,
|
||
11 years ago
|
const EGLint *attribs,
|
||
10 years ago
|
const EGLint *visual_id,
|
||
|
const int n_ids);
|
||
11 years ago
|
|
||
|
void (*output_destroy)(struct weston_output *output);
|
||
|
|
||
|
EGLSurface (*output_surface)(struct weston_output *output);
|
||
|
|
||
11 years ago
|
/* Sets the output border.
|
||
|
*
|
||
|
* The side specifies the side for which we are setting the border.
|
||
|
* The width and height are the width and height of the border.
|
||
|
* The tex_width patemeter specifies the width of the actual
|
||
|
* texture; this may be larger than width if the data is not
|
||
|
* tightly packed.
|
||
|
*
|
||
|
* The top and bottom textures will extend over the sides to the
|
||
11 years ago
|
* full width of the bordered window. The right and left edges,
|
||
|
* however, will extend only to the top and bottom of the
|
||
11 years ago
|
* compositor surface. This is demonstrated by the picture below:
|
||
|
*
|
||
|
* +-----------------------+
|
||
|
* | TOP |
|
||
|
* +-+-------------------+-+
|
||
|
* | | | |
|
||
|
* |L| |R|
|
||
|
* |E| |I|
|
||
|
* |F| |G|
|
||
|
* |T| |H|
|
||
|
* | | |T|
|
||
|
* | | | |
|
||
|
* +-+-------------------+-+
|
||
|
* | BOTTOM |
|
||
|
* +-----------------------+
|
||
|
*/
|
||
|
void (*output_set_border)(struct weston_output *output,
|
||
|
enum gl_renderer_border_side side,
|
||
|
int32_t width, int32_t height,
|
||
|
int32_t tex_width, unsigned char *data);
|
||
|
|
||
11 years ago
|
void (*print_egl_error_state)(void);
|
||
|
};
|
||
|
|