2011-12-08 12:24:40 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2011-12-08 12:24:40 -05:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Intel Corporation.
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* 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:
|
2011-12-08 12:24:40 -05:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2011-12-08 12:24:40 -05:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* 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.
|
2011-12-08 12:24:40 -05:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Authors:
|
2011-12-09 11:10:01 -05:00
|
|
|
* Rob Bradford <rob@linux.intel.com>
|
|
|
|
* Kristian Høgsberg (from eglkms.c)
|
|
|
|
* Benjamin Franzke (from eglkms.c)
|
2011-12-08 12:24:40 -05:00
|
|
|
* Robert Bragg <robert@linux.intel.com>
|
|
|
|
* Neil Roberts <neil@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
2014-01-28 14:07:15 -05:00
|
|
|
#include <stddef.h>
|
2011-12-09 11:10:01 -05:00
|
|
|
#include <drm.h>
|
2011-12-19 12:17:28 -05:00
|
|
|
#include <xf86drm.h>
|
2011-12-09 11:10:01 -05:00
|
|
|
#include <xf86drmMode.h>
|
|
|
|
#include <gbm.h>
|
|
|
|
#include <glib.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <unistd.h>
|
2011-12-19 12:17:28 -05:00
|
|
|
#include <string.h>
|
2012-01-25 14:29:29 -05:00
|
|
|
#include <stdlib.h>
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2011-12-08 12:24:40 -05:00
|
|
|
#include "cogl-winsys-egl-kms-private.h"
|
|
|
|
#include "cogl-winsys-egl-private.h"
|
2011-12-09 11:10:01 -05:00
|
|
|
#include "cogl-renderer-private.h"
|
|
|
|
#include "cogl-framebuffer-private.h"
|
|
|
|
#include "cogl-onscreen-private.h"
|
2012-03-06 13:21:28 -05:00
|
|
|
#include "cogl-kms-renderer.h"
|
2012-01-30 06:06:41 -05:00
|
|
|
#include "cogl-kms-display.h"
|
2012-09-06 12:33:20 -04:00
|
|
|
#include "cogl-version.h"
|
2012-08-31 14:28:27 -04:00
|
|
|
#include "cogl-error-private.h"
|
2013-04-16 18:46:03 -04:00
|
|
|
#include "cogl-poll-private.h"
|
2011-12-09 11:10:01 -05:00
|
|
|
|
|
|
|
static const CoglWinsysEGLVtable _cogl_winsys_egl_vtable;
|
|
|
|
|
2011-12-19 10:37:26 -05:00
|
|
|
static const CoglWinsysVtable *parent_vtable;
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
typedef struct _CoglRendererKMS
|
|
|
|
{
|
|
|
|
int fd;
|
2014-02-28 09:40:31 -05:00
|
|
|
int opened_fd;
|
2011-12-09 11:10:01 -05:00
|
|
|
struct gbm_device *gbm;
|
2013-04-18 09:19:43 -04:00
|
|
|
CoglClosure *swap_notify_idle;
|
2011-12-09 11:10:01 -05:00
|
|
|
} CoglRendererKMS;
|
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
typedef struct _CoglOutputKMS
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
|
|
|
drmModeConnector *connector;
|
|
|
|
drmModeEncoder *encoder;
|
2012-01-25 14:29:29 -05:00
|
|
|
drmModeCrtc *saved_crtc;
|
|
|
|
drmModeModeInfo *modes;
|
|
|
|
int n_modes;
|
2011-12-09 11:10:01 -05:00
|
|
|
drmModeModeInfo mode;
|
2012-01-25 14:29:29 -05:00
|
|
|
} CoglOutputKMS;
|
|
|
|
|
|
|
|
typedef struct _CoglDisplayKMS
|
|
|
|
{
|
|
|
|
GList *outputs;
|
2013-07-30 11:20:01 -04:00
|
|
|
GList *crtcs;
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
int width, height;
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBool pending_set_crtc;
|
2012-08-13 10:43:30 -04:00
|
|
|
struct gbm_surface *dummy_gbm_surface;
|
2013-07-30 11:20:01 -04:00
|
|
|
|
|
|
|
CoglOnscreen *onscreen;
|
2011-12-09 11:10:01 -05:00
|
|
|
} CoglDisplayKMS;
|
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
typedef struct _CoglFlipKMS
|
|
|
|
{
|
|
|
|
CoglOnscreen *onscreen;
|
|
|
|
int pending;
|
|
|
|
} CoglFlipKMS;
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
typedef struct _CoglOnscreenKMS
|
|
|
|
{
|
2011-12-19 10:37:26 -05:00
|
|
|
struct gbm_surface *surface;
|
|
|
|
uint32_t current_fb_id;
|
|
|
|
uint32_t next_fb_id;
|
|
|
|
struct gbm_bo *current_bo;
|
|
|
|
struct gbm_bo *next_bo;
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBool pending_swap_notify;
|
2015-02-18 09:24:14 -05:00
|
|
|
|
|
|
|
EGLSurface *pending_egl_surface;
|
|
|
|
struct gbm_surface *pending_surface;
|
2011-12-09 11:10:01 -05:00
|
|
|
} CoglOnscreenKMS;
|
|
|
|
|
|
|
|
static const char device_name[] = "/dev/dri/card0";
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cogl_winsys_renderer_disconnect (CoglRenderer *renderer)
|
|
|
|
{
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
|
|
|
|
eglTerminate (egl_renderer->edpy);
|
|
|
|
|
2014-03-12 12:09:01 -04:00
|
|
|
if (kms_renderer->opened_fd >= 0)
|
|
|
|
close (kms_renderer->opened_fd);
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
g_slice_free (CoglRendererKMS, kms_renderer);
|
|
|
|
g_slice_free (CoglRendererEGL, egl_renderer);
|
|
|
|
}
|
|
|
|
|
2013-04-18 11:26:21 -04:00
|
|
|
static void
|
|
|
|
flush_pending_swap_notify_cb (void *data,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
CoglFramebuffer *framebuffer = data;
|
|
|
|
|
|
|
|
if (framebuffer->type == COGL_FRAMEBUFFER_TYPE_ONSCREEN)
|
|
|
|
{
|
|
|
|
CoglOnscreen *onscreen = COGL_ONSCREEN (framebuffer);
|
|
|
|
CoglOnscreenEGL *egl_onscreen = onscreen->winsys;
|
|
|
|
CoglOnscreenKMS *kms_onscreen = egl_onscreen->platform;
|
|
|
|
|
|
|
|
if (kms_onscreen->pending_swap_notify)
|
|
|
|
{
|
|
|
|
CoglFrameInfo *info = g_queue_pop_head (&onscreen->pending_frame_infos);
|
|
|
|
|
|
|
|
_cogl_onscreen_notify_frame_sync (onscreen, info);
|
|
|
|
_cogl_onscreen_notify_complete (onscreen, info);
|
|
|
|
kms_onscreen->pending_swap_notify = FALSE;
|
|
|
|
|
|
|
|
cogl_object_unref (info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
flush_pending_swap_notify_idle (void *user_data)
|
|
|
|
{
|
|
|
|
CoglContext *context = user_data;
|
|
|
|
CoglRendererEGL *egl_renderer = context->display->renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
|
|
|
|
/* This needs to be disconnected before invoking the callbacks in
|
|
|
|
* case the callbacks cause it to be queued again */
|
|
|
|
_cogl_closure_disconnect (kms_renderer->swap_notify_idle);
|
|
|
|
kms_renderer->swap_notify_idle = NULL;
|
|
|
|
|
|
|
|
g_list_foreach (context->framebuffers,
|
|
|
|
flush_pending_swap_notify_cb,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_current_bo (CoglOnscreen *onscreen)
|
|
|
|
{
|
|
|
|
CoglOnscreenEGL *egl_onscreen = onscreen->winsys;
|
|
|
|
CoglOnscreenKMS *kms_onscreen = egl_onscreen->platform;
|
|
|
|
CoglContext *context = COGL_FRAMEBUFFER (onscreen)->context;
|
|
|
|
CoglRenderer *renderer = context->display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
|
|
|
|
if (kms_onscreen->current_fb_id)
|
|
|
|
{
|
|
|
|
drmModeRmFB (kms_renderer->fd,
|
|
|
|
kms_onscreen->current_fb_id);
|
|
|
|
kms_onscreen->current_fb_id = 0;
|
|
|
|
}
|
|
|
|
if (kms_onscreen->current_bo)
|
|
|
|
{
|
|
|
|
gbm_surface_release_buffer (kms_onscreen->surface,
|
|
|
|
kms_onscreen->current_bo);
|
|
|
|
kms_onscreen->current_bo = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-24 01:12:52 -04:00
|
|
|
static void
|
|
|
|
queue_swap_notify_for_onscreen (CoglOnscreen *onscreen)
|
|
|
|
{
|
|
|
|
CoglOnscreenEGL *egl_onscreen = onscreen->winsys;
|
|
|
|
CoglOnscreenKMS *kms_onscreen = egl_onscreen->platform;
|
|
|
|
CoglContext *context = COGL_FRAMEBUFFER (onscreen)->context;
|
|
|
|
CoglRenderer *renderer = context->display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
|
|
|
|
/* We only want to notify that the swap is complete when the
|
|
|
|
* application calls cogl_context_dispatch so instead of
|
|
|
|
* immediately notifying we queue an idle callback */
|
|
|
|
if (!kms_renderer->swap_notify_idle)
|
|
|
|
{
|
|
|
|
kms_renderer->swap_notify_idle =
|
|
|
|
_cogl_poll_renderer_add_idle (renderer,
|
|
|
|
flush_pending_swap_notify_idle,
|
|
|
|
context,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
kms_onscreen->pending_swap_notify = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-18 11:26:21 -04:00
|
|
|
static void
|
|
|
|
page_flip_handler (int fd,
|
|
|
|
unsigned int frame,
|
|
|
|
unsigned int sec,
|
|
|
|
unsigned int usec,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
CoglFlipKMS *flip = data;
|
|
|
|
|
|
|
|
/* We're only ready to dispatch a swap notification once all outputs
|
|
|
|
* have flipped... */
|
|
|
|
flip->pending--;
|
|
|
|
if (flip->pending == 0)
|
|
|
|
{
|
|
|
|
CoglOnscreen *onscreen = flip->onscreen;
|
|
|
|
CoglOnscreenEGL *egl_onscreen = onscreen->winsys;
|
|
|
|
CoglOnscreenKMS *kms_onscreen = egl_onscreen->platform;
|
|
|
|
|
2014-04-24 01:12:52 -04:00
|
|
|
queue_swap_notify_for_onscreen (onscreen);
|
2013-04-18 11:26:21 -04:00
|
|
|
|
|
|
|
free_current_bo (onscreen);
|
|
|
|
|
|
|
|
kms_onscreen->current_fb_id = kms_onscreen->next_fb_id;
|
|
|
|
kms_onscreen->next_fb_id = 0;
|
|
|
|
|
|
|
|
kms_onscreen->current_bo = kms_onscreen->next_bo;
|
|
|
|
kms_onscreen->next_bo = NULL;
|
|
|
|
|
|
|
|
cogl_object_unref (flip->onscreen);
|
|
|
|
|
|
|
|
g_slice_free (CoglFlipKMS, flip);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_drm_event (CoglRendererKMS *kms_renderer)
|
|
|
|
{
|
|
|
|
drmEventContext evctx;
|
|
|
|
|
|
|
|
memset (&evctx, 0, sizeof evctx);
|
|
|
|
evctx.version = DRM_EVENT_CONTEXT_VERSION;
|
|
|
|
evctx.page_flip_handler = page_flip_handler;
|
|
|
|
drmHandleEvent (kms_renderer->fd, &evctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-05-13 21:51:55 -04:00
|
|
|
dispatch_kms_events (void *user_data, int revents)
|
2013-04-18 11:26:21 -04:00
|
|
|
{
|
|
|
|
CoglRenderer *renderer = user_data;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
|
2013-05-13 21:51:55 -04:00
|
|
|
if (!revents)
|
|
|
|
return;
|
|
|
|
|
2013-04-18 11:26:21 -04:00
|
|
|
handle_drm_event (kms_renderer);
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2011-12-09 11:10:01 -05:00
|
|
|
_cogl_winsys_renderer_connect (CoglRenderer *renderer,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error)
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
|
|
|
CoglRendererEGL *egl_renderer;
|
|
|
|
CoglRendererKMS *kms_renderer;
|
|
|
|
|
|
|
|
renderer->winsys = g_slice_new0 (CoglRendererEGL);
|
|
|
|
egl_renderer = renderer->winsys;
|
|
|
|
|
|
|
|
egl_renderer->platform_vtable = &_cogl_winsys_egl_vtable;
|
|
|
|
egl_renderer->platform = g_slice_new0 (CoglRendererKMS);
|
|
|
|
kms_renderer = egl_renderer->platform;
|
|
|
|
|
2014-02-28 09:40:31 -05:00
|
|
|
kms_renderer->fd = -1;
|
|
|
|
kms_renderer->opened_fd = -1;
|
|
|
|
|
|
|
|
if (renderer->kms_fd >= 0)
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
2014-02-28 09:40:31 -05:00
|
|
|
kms_renderer->fd = renderer->kms_fd;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
kms_renderer->opened_fd = open (device_name, O_RDWR);
|
|
|
|
kms_renderer->fd = kms_renderer->opened_fd;
|
|
|
|
if (kms_renderer->fd < 0)
|
|
|
|
{
|
|
|
|
/* Probably permissions error */
|
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
|
|
|
COGL_WINSYS_ERROR_INIT,
|
|
|
|
"Couldn't open %s", device_name);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-12-09 11:10:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
kms_renderer->gbm = gbm_create_device (kms_renderer->fd);
|
|
|
|
if (kms_renderer->gbm == NULL)
|
|
|
|
{
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2011-12-09 11:10:01 -05:00
|
|
|
COGL_WINSYS_ERROR_INIT,
|
|
|
|
"Couldn't create gbm device");
|
|
|
|
goto close_fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
egl_renderer->edpy = eglGetDisplay ((EGLNativeDisplayType)kms_renderer->gbm);
|
|
|
|
if (egl_renderer->edpy == EGL_NO_DISPLAY)
|
|
|
|
{
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2011-12-09 11:10:01 -05:00
|
|
|
COGL_WINSYS_ERROR_INIT,
|
|
|
|
"Couldn't get eglDisplay");
|
|
|
|
goto destroy_gbm_device;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_cogl_winsys_egl_renderer_connect_common (renderer, error))
|
|
|
|
goto egl_terminate;
|
|
|
|
|
2013-04-16 18:46:03 -04:00
|
|
|
_cogl_poll_renderer_add_fd (renderer,
|
|
|
|
kms_renderer->fd,
|
2013-04-18 11:26:21 -04:00
|
|
|
COGL_POLL_FD_EVENT_IN,
|
2013-05-13 21:51:55 -04:00
|
|
|
NULL, /* no prepare callback */
|
2013-04-18 11:26:21 -04:00
|
|
|
dispatch_kms_events,
|
|
|
|
renderer);
|
2011-12-19 12:17:28 -05:00
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
egl_terminate:
|
|
|
|
eglTerminate (egl_renderer->edpy);
|
|
|
|
destroy_gbm_device:
|
|
|
|
gbm_device_destroy (kms_renderer->gbm);
|
|
|
|
close_fd:
|
2014-02-28 09:40:31 -05:00
|
|
|
if (kms_renderer->opened_fd >= 0)
|
|
|
|
close (kms_renderer->opened_fd);
|
2011-12-09 11:10:01 -05:00
|
|
|
|
|
|
|
_cogl_winsys_renderer_disconnect (renderer);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-01-25 14:29:29 -05:00
|
|
|
is_connector_excluded (int id,
|
|
|
|
int *excluded_connectors,
|
|
|
|
int n_excluded_connectors)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < n_excluded_connectors; i++)
|
|
|
|
if (excluded_connectors[i] == id)
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static drmModeConnector *
|
|
|
|
find_connector (int fd,
|
|
|
|
drmModeRes *resources,
|
|
|
|
int *excluded_connectors,
|
|
|
|
int n_excluded_connectors)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < resources->count_connectors; i++)
|
|
|
|
{
|
|
|
|
drmModeConnector *connector =
|
|
|
|
drmModeGetConnector (fd, resources->connectors[i]);
|
|
|
|
|
|
|
|
if (connector &&
|
|
|
|
connector->connection == DRM_MODE_CONNECTED &&
|
|
|
|
connector->count_modes > 0 &&
|
|
|
|
!is_connector_excluded (connector->connector_id,
|
|
|
|
excluded_connectors,
|
|
|
|
n_excluded_connectors))
|
|
|
|
return connector;
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-01-25 14:29:29 -05:00
|
|
|
find_mirror_modes (drmModeModeInfo *modes0,
|
|
|
|
int n_modes0,
|
|
|
|
drmModeModeInfo *modes1,
|
|
|
|
int n_modes1,
|
|
|
|
drmModeModeInfo *mode1_out,
|
|
|
|
drmModeModeInfo *mode0_out)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < n_modes0; i++)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
drmModeModeInfo *mode0 = &modes0[i];
|
|
|
|
for (j = 0; j < n_modes1; j++)
|
|
|
|
{
|
|
|
|
drmModeModeInfo *mode1 = &modes1[j];
|
|
|
|
if (mode1->hdisplay == mode0->hdisplay &&
|
|
|
|
mode1->vdisplay == mode0->vdisplay)
|
|
|
|
{
|
|
|
|
*mode0_out = *mode0;
|
|
|
|
*mode1_out = *mode1;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static drmModeModeInfo builtin_1024x768 =
|
|
|
|
{
|
2013-07-30 11:20:01 -04:00
|
|
|
63500, /* clock */
|
|
|
|
1024, 1072, 1176, 1328, 0,
|
|
|
|
768, 771, 775, 798, 0,
|
|
|
|
59920,
|
|
|
|
DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC,
|
|
|
|
0,
|
|
|
|
"1024x768"
|
2012-01-25 14:29:29 -05:00
|
|
|
};
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-01-25 14:29:29 -05:00
|
|
|
is_panel (int type)
|
|
|
|
{
|
|
|
|
return (type == DRM_MODE_CONNECTOR_LVDS ||
|
|
|
|
type == DRM_MODE_CONNECTOR_eDP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglOutputKMS *
|
|
|
|
find_output (int _index,
|
|
|
|
int fd,
|
|
|
|
drmModeRes *resources,
|
|
|
|
int *excluded_connectors,
|
|
|
|
int n_excluded_connectors,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error)
|
2012-01-25 14:29:29 -05:00
|
|
|
{
|
|
|
|
char *connector_env_name = g_strdup_printf ("COGL_KMS_CONNECTOR%d", _index);
|
|
|
|
char *mode_env_name;
|
|
|
|
drmModeConnector *connector;
|
|
|
|
drmModeEncoder *encoder;
|
|
|
|
CoglOutputKMS *output;
|
|
|
|
drmModeModeInfo *modes;
|
|
|
|
int n_modes;
|
|
|
|
|
|
|
|
if (getenv (connector_env_name))
|
|
|
|
{
|
|
|
|
unsigned long id = strtoul (getenv (connector_env_name), NULL, 10);
|
|
|
|
connector = drmModeGetConnector (fd, id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
connector = NULL;
|
|
|
|
g_free (connector_env_name);
|
|
|
|
|
|
|
|
if (connector == NULL)
|
|
|
|
connector = find_connector (fd, resources,
|
|
|
|
excluded_connectors, n_excluded_connectors);
|
|
|
|
if (connector == NULL)
|
|
|
|
{
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2012-01-25 14:29:29 -05:00
|
|
|
COGL_WINSYS_ERROR_INIT,
|
|
|
|
"No currently active connector found");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: At this point it seems connector->encoder_id may be an invalid id of 0
|
|
|
|
* even though the connector is marked as connected. Referencing ->encoders[0]
|
|
|
|
* seems more reliable. */
|
|
|
|
encoder = drmModeGetEncoder (fd, connector->encoders[0]);
|
|
|
|
|
|
|
|
output = g_slice_new0 (CoglOutputKMS);
|
|
|
|
output->connector = connector;
|
|
|
|
output->encoder = encoder;
|
|
|
|
output->saved_crtc = drmModeGetCrtc (fd, encoder->crtc_id);
|
|
|
|
|
|
|
|
if (is_panel (connector->connector_type))
|
|
|
|
{
|
|
|
|
n_modes = connector->count_modes + 1;
|
|
|
|
modes = g_new (drmModeModeInfo, n_modes);
|
|
|
|
memcpy (modes, connector->modes,
|
|
|
|
sizeof (drmModeModeInfo) * connector->count_modes);
|
|
|
|
/* TODO: parse EDID */
|
|
|
|
modes[n_modes - 1] = builtin_1024x768;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
n_modes = connector->count_modes;
|
|
|
|
modes = g_new (drmModeModeInfo, n_modes);
|
|
|
|
memcpy (modes, connector->modes,
|
|
|
|
sizeof (drmModeModeInfo) * n_modes);
|
|
|
|
}
|
|
|
|
|
|
|
|
mode_env_name = g_strdup_printf ("COGL_KMS_CONNECTOR%d_MODE", _index);
|
|
|
|
if (getenv (mode_env_name))
|
|
|
|
{
|
|
|
|
const char *name = getenv (mode_env_name);
|
|
|
|
int i;
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBool found = FALSE;
|
2012-01-25 14:29:29 -05:00
|
|
|
drmModeModeInfo mode;
|
|
|
|
|
|
|
|
for (i = 0; i < n_modes; i++)
|
|
|
|
{
|
|
|
|
if (strcmp (modes[i].name, name) == 0)
|
|
|
|
{
|
|
|
|
found = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
g_free (mode_env_name);
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2012-01-25 14:29:29 -05:00
|
|
|
COGL_WINSYS_ERROR_INIT,
|
|
|
|
"COGL_KMS_CONNECTOR%d_MODE of %s could not be found",
|
|
|
|
_index, name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
n_modes = 1;
|
|
|
|
mode = modes[i];
|
|
|
|
g_free (modes);
|
|
|
|
modes = g_new (drmModeModeInfo, 1);
|
|
|
|
modes[0] = mode;
|
|
|
|
}
|
|
|
|
g_free (mode_env_name);
|
|
|
|
|
|
|
|
output->modes = modes;
|
|
|
|
output->n_modes = n_modes;
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2012-01-30 06:06:41 -05:00
|
|
|
static void
|
|
|
|
setup_crtc_modes (CoglDisplay *display, int fb_id)
|
2012-01-25 14:29:29 -05:00
|
|
|
{
|
2012-01-30 06:06:41 -05:00
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
CoglRendererEGL *egl_renderer = display->renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
GList *l;
|
|
|
|
|
2013-07-30 11:20:01 -04:00
|
|
|
for (l = kms_display->crtcs; l; l = l->next)
|
2012-01-25 14:29:29 -05:00
|
|
|
{
|
2013-07-30 11:20:01 -04:00
|
|
|
CoglKmsCrtc *crtc = l->data;
|
|
|
|
|
2012-01-30 06:06:41 -05:00
|
|
|
int ret = drmModeSetCrtc (kms_renderer->fd,
|
2013-07-30 11:20:01 -04:00
|
|
|
crtc->id,
|
|
|
|
fb_id, crtc->x, crtc->y,
|
|
|
|
crtc->connectors, crtc->count,
|
|
|
|
crtc->count ? &crtc->mode : NULL);
|
|
|
|
if (ret)
|
|
|
|
g_warning ("Failed to set crtc mode %s: %m", crtc->mode.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
flip_all_crtcs (CoglDisplay *display, CoglFlipKMS *flip, int fb_id)
|
|
|
|
{
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
CoglRendererEGL *egl_renderer = display->renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
for (l = kms_display->crtcs; l; l = l->next)
|
|
|
|
{
|
|
|
|
CoglKmsCrtc *crtc = l->data;
|
|
|
|
int ret;
|
|
|
|
|
2014-05-21 14:24:52 -04:00
|
|
|
if (crtc->count == 0 || crtc->ignore)
|
2013-07-30 11:20:01 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
ret = drmModePageFlip (kms_renderer->fd,
|
|
|
|
crtc->id, fb_id,
|
|
|
|
DRM_MODE_PAGE_FLIP_EVENT, flip);
|
|
|
|
|
2012-01-30 06:06:41 -05:00
|
|
|
if (ret)
|
2013-07-30 11:20:01 -04:00
|
|
|
{
|
|
|
|
g_warning ("Failed to flip: %m");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
flip->pending++;
|
2012-01-25 14:29:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-30 11:20:01 -04:00
|
|
|
static void
|
|
|
|
crtc_free (CoglKmsCrtc *crtc)
|
|
|
|
{
|
|
|
|
g_free (crtc->connectors);
|
|
|
|
g_slice_free (CoglKmsCrtc, crtc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglKmsCrtc *
|
|
|
|
crtc_copy (CoglKmsCrtc *from)
|
|
|
|
{
|
|
|
|
CoglKmsCrtc *new;
|
|
|
|
|
|
|
|
new = g_slice_new (CoglKmsCrtc);
|
|
|
|
|
|
|
|
*new = *from;
|
|
|
|
new->connectors = g_memdup (from->connectors, from->count * sizeof(uint32_t));
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2011-12-09 11:10:01 -05:00
|
|
|
_cogl_winsys_egl_display_setup (CoglDisplay *display,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error)
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display;
|
|
|
|
CoglRendererEGL *egl_renderer = display->renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
drmModeRes *resources;
|
2012-01-25 14:29:29 -05:00
|
|
|
CoglOutputKMS *output0, *output1;
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBool mirror;
|
2013-07-30 11:20:01 -04:00
|
|
|
CoglKmsCrtc *crtc0, *crtc1;
|
2011-12-09 11:10:01 -05:00
|
|
|
|
|
|
|
kms_display = g_slice_new0 (CoglDisplayKMS);
|
|
|
|
egl_display->platform = kms_display;
|
|
|
|
|
|
|
|
resources = drmModeGetResources (kms_renderer->fd);
|
|
|
|
if (!resources)
|
|
|
|
{
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2011-12-09 11:10:01 -05:00
|
|
|
COGL_WINSYS_ERROR_INIT,
|
|
|
|
"drmModeGetResources failed");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
output0 = find_output (0,
|
|
|
|
kms_renderer->fd,
|
|
|
|
resources,
|
|
|
|
NULL,
|
|
|
|
0, /* n excluded connectors */
|
|
|
|
error);
|
|
|
|
kms_display->outputs = g_list_append (kms_display->outputs, output0);
|
|
|
|
if (!output0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (getenv ("COGL_KMS_MIRROR"))
|
|
|
|
mirror = TRUE;
|
|
|
|
else
|
|
|
|
mirror = FALSE;
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
if (mirror)
|
|
|
|
{
|
|
|
|
int exclude_connector = output0->connector->connector_id;
|
|
|
|
output1 = find_output (1,
|
|
|
|
kms_renderer->fd,
|
|
|
|
resources,
|
|
|
|
&exclude_connector,
|
|
|
|
1, /* n excluded connectors */
|
|
|
|
error);
|
|
|
|
if (!output1)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
kms_display->outputs = g_list_append (kms_display->outputs, output1);
|
|
|
|
|
|
|
|
if (!find_mirror_modes (output0->modes, output0->n_modes,
|
|
|
|
output1->modes, output1->n_modes,
|
|
|
|
&output0->mode,
|
|
|
|
&output1->mode))
|
|
|
|
{
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2012-01-25 14:29:29 -05:00
|
|
|
COGL_WINSYS_ERROR_INIT,
|
|
|
|
"Failed to find matching modes for mirroring");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-12-09 11:10:01 -05:00
|
|
|
}
|
2012-01-25 14:29:29 -05:00
|
|
|
else
|
2013-07-30 11:20:01 -04:00
|
|
|
{
|
|
|
|
output0->mode = output0->modes[0];
|
|
|
|
output1 = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
crtc0 = g_slice_new (CoglKmsCrtc);
|
|
|
|
crtc0->id = output0->encoder->crtc_id;
|
|
|
|
crtc0->x = 0;
|
|
|
|
crtc0->y = 0;
|
|
|
|
crtc0->mode = output0->mode;
|
|
|
|
crtc0->connectors = g_new (uint32_t, 1);
|
|
|
|
crtc0->connectors[0] = output0->connector->connector_id;
|
|
|
|
crtc0->count = 1;
|
|
|
|
kms_display->crtcs = g_list_prepend (kms_display->crtcs, crtc0);
|
|
|
|
|
|
|
|
if (output1)
|
|
|
|
{
|
|
|
|
crtc1 = g_slice_new (CoglKmsCrtc);
|
|
|
|
crtc1->id = output1->encoder->crtc_id;
|
|
|
|
crtc1->x = 0;
|
|
|
|
crtc1->y = 0;
|
|
|
|
crtc1->mode = output1->mode;
|
|
|
|
crtc1->connectors = g_new (uint32_t, 1);
|
|
|
|
crtc1->connectors[0] = output1->connector->connector_id;
|
|
|
|
crtc1->count = 1;
|
|
|
|
kms_display->crtcs = g_list_prepend (kms_display->crtcs, crtc1);
|
|
|
|
}
|
2012-01-25 14:29:29 -05:00
|
|
|
|
2012-01-30 06:06:41 -05:00
|
|
|
kms_display->width = output0->mode.hdisplay;
|
|
|
|
kms_display->height = output0->mode.vdisplay;
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2012-01-30 06:06:41 -05:00
|
|
|
/* We defer setting the crtc modes until the first swap_buffers request of a
|
|
|
|
* CoglOnscreen framebuffer. */
|
|
|
|
kms_display->pending_set_crtc = TRUE;
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
static void
|
|
|
|
output_free (int fd, CoglOutputKMS *output)
|
|
|
|
{
|
|
|
|
if (output->modes)
|
|
|
|
g_free (output->modes);
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
if (output->encoder)
|
|
|
|
drmModeFreeEncoder (output->encoder);
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
if (output->connector)
|
|
|
|
{
|
|
|
|
if (output->saved_crtc)
|
|
|
|
{
|
|
|
|
int ret = drmModeSetCrtc (fd,
|
|
|
|
output->saved_crtc->crtc_id,
|
|
|
|
output->saved_crtc->buffer_id,
|
|
|
|
output->saved_crtc->x,
|
|
|
|
output->saved_crtc->y,
|
|
|
|
&output->connector->connector_id, 1,
|
|
|
|
&output->saved_crtc->mode);
|
|
|
|
if (ret)
|
|
|
|
g_warning (G_STRLOC ": Error restoring saved CRTC");
|
|
|
|
}
|
|
|
|
drmModeFreeConnector (output->connector);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slice_free (CoglOutputKMS, output);
|
2011-12-09 11:10:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cogl_winsys_egl_display_destroy (CoglDisplay *display)
|
|
|
|
{
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
2012-01-25 14:29:29 -05:00
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
CoglRenderer *renderer = display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
for (l = kms_display->outputs; l; l = l->next)
|
|
|
|
output_free (kms_renderer->fd, l->data);
|
|
|
|
g_list_free (kms_display->outputs);
|
|
|
|
kms_display->outputs = NULL;
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2013-07-30 11:20:01 -04:00
|
|
|
g_list_free_full (kms_display->crtcs, (GDestroyNotify) crtc_free);
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
g_slice_free (CoglDisplayKMS, egl_display->platform);
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2011-12-19 10:37:26 -05:00
|
|
|
_cogl_winsys_egl_context_created (CoglDisplay *display,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error)
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
2012-08-13 10:43:30 -04:00
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
CoglRenderer *renderer = display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
|
2014-04-01 09:54:39 -04:00
|
|
|
if ((egl_renderer->private_features &
|
|
|
|
COGL_EGL_WINSYS_FEATURE_SURFACELESS_CONTEXT) == 0)
|
2012-08-13 10:43:30 -04:00
|
|
|
{
|
2014-04-01 09:54:39 -04:00
|
|
|
kms_display->dummy_gbm_surface =
|
|
|
|
gbm_surface_create (kms_renderer->gbm,
|
|
|
|
16, 16,
|
|
|
|
GBM_FORMAT_XRGB8888,
|
|
|
|
GBM_BO_USE_RENDERING);
|
|
|
|
if (!kms_display->dummy_gbm_surface)
|
|
|
|
{
|
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
|
|
|
COGL_WINSYS_ERROR_CREATE_CONTEXT,
|
|
|
|
"Failed to create dummy GBM surface");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-08-13 10:43:30 -04:00
|
|
|
|
2014-04-01 09:54:39 -04:00
|
|
|
egl_display->dummy_surface =
|
|
|
|
eglCreateWindowSurface (egl_renderer->edpy,
|
|
|
|
egl_display->egl_config,
|
|
|
|
(EGLNativeWindowType)
|
|
|
|
kms_display->dummy_gbm_surface,
|
|
|
|
NULL);
|
|
|
|
if (egl_display->dummy_surface == EGL_NO_SURFACE)
|
|
|
|
{
|
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
|
|
|
COGL_WINSYS_ERROR_CREATE_CONTEXT,
|
|
|
|
"Failed to create dummy EGL surface");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-08-13 10:43:30 -04:00
|
|
|
}
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2012-03-05 22:21:30 -05:00
|
|
|
if (!_cogl_winsys_egl_make_current (display,
|
2012-08-13 10:43:30 -04:00
|
|
|
egl_display->dummy_surface,
|
|
|
|
egl_display->dummy_surface,
|
2012-03-05 22:21:30 -05:00
|
|
|
egl_display->egl_context))
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2011-12-09 11:10:01 -05:00
|
|
|
COGL_WINSYS_ERROR_CREATE_CONTEXT,
|
|
|
|
"Failed to make context current");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cogl_winsys_egl_cleanup_context (CoglDisplay *display)
|
|
|
|
{
|
2012-08-13 10:43:30 -04:00
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
CoglRenderer *renderer = display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
|
|
|
|
if (egl_display->dummy_surface != EGL_NO_SURFACE)
|
|
|
|
{
|
|
|
|
eglDestroySurface (egl_renderer->edpy, egl_display->dummy_surface);
|
|
|
|
egl_display->dummy_surface = EGL_NO_SURFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (kms_display->dummy_gbm_surface != NULL)
|
|
|
|
{
|
|
|
|
gbm_surface_destroy (kms_display->dummy_gbm_surface);
|
|
|
|
kms_display->dummy_gbm_surface = NULL;
|
|
|
|
}
|
2011-12-09 11:10:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-02-07 12:59:51 -05:00
|
|
|
_cogl_winsys_onscreen_swap_buffers_with_damage (CoglOnscreen *onscreen,
|
|
|
|
const int *rectangles,
|
|
|
|
int n_rectangles)
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
|
|
|
CoglContext *context = COGL_FRAMEBUFFER (onscreen)->context;
|
|
|
|
CoglDisplayEGL *egl_display = context->display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
CoglRenderer *renderer = context->display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
CoglOnscreenEGL *egl_onscreen = onscreen->winsys;
|
|
|
|
CoglOnscreenKMS *kms_onscreen = egl_onscreen->platform;
|
2012-08-07 09:56:45 -04:00
|
|
|
uint32_t handle, stride;
|
2012-01-25 14:29:29 -05:00
|
|
|
CoglFlipKMS *flip;
|
2011-12-19 12:17:28 -05:00
|
|
|
|
|
|
|
/* If we already have a pending swap then block until it completes */
|
|
|
|
while (kms_onscreen->next_fb_id != 0)
|
|
|
|
handle_drm_event (kms_renderer);
|
2011-12-19 10:37:26 -05:00
|
|
|
|
2015-02-18 09:24:14 -05:00
|
|
|
if (kms_onscreen->pending_egl_surface)
|
|
|
|
{
|
|
|
|
eglDestroySurface (egl_renderer->edpy, egl_onscreen->egl_surface);
|
|
|
|
egl_onscreen->egl_surface = kms_onscreen->pending_egl_surface;
|
|
|
|
kms_onscreen->pending_egl_surface = NULL;
|
|
|
|
|
|
|
|
_cogl_framebuffer_winsys_update_size (COGL_FRAMEBUFFER (kms_display->onscreen),
|
|
|
|
kms_display->width, kms_display->height);
|
|
|
|
context->current_draw_buffer_changes |= COGL_FRAMEBUFFER_STATE_BIND;
|
|
|
|
}
|
2012-02-07 12:59:51 -05:00
|
|
|
parent_vtable->onscreen_swap_buffers_with_damage (onscreen,
|
|
|
|
rectangles,
|
|
|
|
n_rectangles);
|
2011-12-19 10:37:26 -05:00
|
|
|
|
2015-02-18 09:24:14 -05:00
|
|
|
if (kms_onscreen->pending_surface)
|
|
|
|
{
|
|
|
|
free_current_bo (onscreen);
|
|
|
|
gbm_surface_destroy (kms_onscreen->surface);
|
|
|
|
kms_onscreen->surface = kms_onscreen->pending_surface;
|
|
|
|
kms_onscreen->pending_surface = NULL;
|
|
|
|
}
|
2011-12-19 10:37:26 -05:00
|
|
|
/* Now we need to set the CRTC to whatever is the front buffer */
|
2011-12-19 12:17:28 -05:00
|
|
|
kms_onscreen->next_bo = gbm_surface_lock_front_buffer (kms_onscreen->surface);
|
2011-12-19 10:37:26 -05:00
|
|
|
|
2012-09-06 12:33:20 -04:00
|
|
|
#if (COGL_VERSION_ENCODE (COGL_GBM_MAJOR, COGL_GBM_MINOR, COGL_GBM_MICRO) >= \
|
|
|
|
COGL_VERSION_ENCODE (8, 1, 0))
|
2012-08-07 09:56:45 -04:00
|
|
|
stride = gbm_bo_get_stride (kms_onscreen->next_bo);
|
|
|
|
#else
|
|
|
|
stride = gbm_bo_get_pitch (kms_onscreen->next_bo);
|
|
|
|
#endif
|
2011-12-19 12:17:28 -05:00
|
|
|
handle = gbm_bo_get_handle (kms_onscreen->next_bo).u32;
|
2011-12-19 10:37:26 -05:00
|
|
|
|
|
|
|
if (drmModeAddFB (kms_renderer->fd,
|
|
|
|
kms_display->width,
|
|
|
|
kms_display->height,
|
|
|
|
24, /* depth */
|
|
|
|
32, /* bpp */
|
2012-08-07 09:56:45 -04:00
|
|
|
stride,
|
2011-12-19 10:37:26 -05:00
|
|
|
handle,
|
2012-01-25 14:29:29 -05:00
|
|
|
&kms_onscreen->next_fb_id))
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
2012-01-25 14:29:29 -05:00
|
|
|
g_warning ("Failed to create new back buffer handle: %m");
|
|
|
|
gbm_surface_release_buffer (kms_onscreen->surface,
|
|
|
|
kms_onscreen->next_bo);
|
|
|
|
kms_onscreen->next_bo = NULL;
|
|
|
|
kms_onscreen->next_fb_id = 0;
|
|
|
|
return;
|
2011-12-19 12:17:28 -05:00
|
|
|
}
|
2012-01-25 14:29:29 -05:00
|
|
|
|
2012-01-30 06:06:41 -05:00
|
|
|
/* If this is the first framebuffer to be presented then we now setup the
|
2013-07-30 11:20:01 -04:00
|
|
|
* crtc modes, else we flip from the previous buffer */
|
2012-01-30 06:06:41 -05:00
|
|
|
if (kms_display->pending_set_crtc)
|
|
|
|
{
|
|
|
|
setup_crtc_modes (context->display, kms_onscreen->next_fb_id);
|
|
|
|
kms_display->pending_set_crtc = FALSE;
|
|
|
|
}
|
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
flip = g_slice_new0 (CoglFlipKMS);
|
|
|
|
flip->onscreen = onscreen;
|
|
|
|
|
2013-07-30 11:20:01 -04:00
|
|
|
flip_all_crtcs (context->display, flip, kms_onscreen->next_fb_id);
|
2012-01-25 14:29:29 -05:00
|
|
|
|
|
|
|
if (flip->pending == 0)
|
|
|
|
{
|
|
|
|
drmModeRmFB (kms_renderer->fd, kms_onscreen->next_fb_id);
|
2011-12-19 12:17:28 -05:00
|
|
|
gbm_surface_release_buffer (kms_onscreen->surface,
|
|
|
|
kms_onscreen->next_bo);
|
|
|
|
kms_onscreen->next_bo = NULL;
|
|
|
|
kms_onscreen->next_fb_id = 0;
|
2012-01-25 14:29:29 -05:00
|
|
|
g_slice_free (CoglFlipKMS, flip);
|
|
|
|
flip = NULL;
|
2014-04-24 01:12:52 -04:00
|
|
|
|
|
|
|
queue_swap_notify_for_onscreen (onscreen);
|
2012-01-25 14:29:29 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Ensure the onscreen remains valid while it has any pending flips... */
|
|
|
|
cogl_object_ref (flip->onscreen);
|
2011-12-09 11:10:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2011-12-19 14:28:30 -05:00
|
|
|
_cogl_winsys_egl_context_init (CoglContext *context,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error)
|
2011-12-19 14:28:30 -05:00
|
|
|
{
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_SWAP_BUFFERS_EVENT, TRUE);
|
2012-11-12 11:58:10 -05:00
|
|
|
/* TODO: remove this deprecated feature */
|
2011-12-19 14:28:30 -05:00
|
|
|
COGL_FLAGS_SET (context->winsys_features,
|
|
|
|
COGL_WINSYS_FEATURE_SWAP_BUFFERS_EVENT,
|
|
|
|
TRUE);
|
2012-11-12 11:58:10 -05:00
|
|
|
COGL_FLAGS_SET (context->winsys_features,
|
|
|
|
COGL_WINSYS_FEATURE_SYNC_AND_COMPLETE_EVENT,
|
|
|
|
TRUE);
|
2011-12-19 14:28:30 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2011-12-09 11:10:01 -05:00
|
|
|
_cogl_winsys_onscreen_init (CoglOnscreen *onscreen,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error)
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
|
|
|
CoglFramebuffer *framebuffer = COGL_FRAMEBUFFER (onscreen);
|
|
|
|
CoglContext *context = framebuffer->context;
|
|
|
|
CoglDisplay *display = context->display;
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
CoglRenderer *renderer = display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
CoglOnscreenEGL *egl_onscreen;
|
|
|
|
CoglOnscreenKMS *kms_onscreen;
|
|
|
|
|
|
|
|
_COGL_RETURN_VAL_IF_FAIL (egl_display->egl_context, FALSE);
|
|
|
|
|
2013-07-30 11:20:01 -04:00
|
|
|
if (kms_display->onscreen)
|
|
|
|
{
|
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
|
|
|
COGL_WINSYS_ERROR_CREATE_ONSCREEN,
|
|
|
|
"Cannot have multiple onscreens in the KMS platform");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
kms_display->onscreen = onscreen;
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
onscreen->winsys = g_slice_new0 (CoglOnscreenEGL);
|
|
|
|
egl_onscreen = onscreen->winsys;
|
|
|
|
|
|
|
|
kms_onscreen = g_slice_new0 (CoglOnscreenKMS);
|
|
|
|
egl_onscreen->platform = kms_onscreen;
|
|
|
|
|
2011-12-19 10:37:26 -05:00
|
|
|
kms_onscreen->surface =
|
|
|
|
gbm_surface_create (kms_renderer->gbm,
|
2012-01-25 14:29:29 -05:00
|
|
|
kms_display->width,
|
|
|
|
kms_display->height,
|
2011-12-19 10:37:26 -05:00
|
|
|
GBM_BO_FORMAT_XRGB8888,
|
|
|
|
GBM_BO_USE_SCANOUT |
|
|
|
|
GBM_BO_USE_RENDERING);
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2011-12-19 10:37:26 -05:00
|
|
|
if (!kms_onscreen->surface)
|
|
|
|
{
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2011-12-19 10:37:26 -05:00
|
|
|
COGL_WINSYS_ERROR_CREATE_ONSCREEN,
|
|
|
|
"Failed to allocate surface");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2011-12-19 10:37:26 -05:00
|
|
|
egl_onscreen->egl_surface =
|
|
|
|
eglCreateWindowSurface (egl_renderer->edpy,
|
|
|
|
egl_display->egl_config,
|
2014-03-04 20:33:26 -05:00
|
|
|
(EGLNativeWindowType) kms_onscreen->surface,
|
2011-12-19 10:37:26 -05:00
|
|
|
NULL);
|
|
|
|
if (egl_onscreen->egl_surface == EGL_NO_SURFACE)
|
|
|
|
{
|
2012-08-31 14:28:27 -04:00
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
2011-12-19 10:37:26 -05:00
|
|
|
COGL_WINSYS_ERROR_CREATE_ONSCREEN,
|
|
|
|
"Failed to allocate surface");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-12-09 11:10:01 -05:00
|
|
|
|
|
|
|
_cogl_framebuffer_winsys_update_size (framebuffer,
|
2011-12-12 16:17:33 -05:00
|
|
|
kms_display->width,
|
|
|
|
kms_display->height);
|
2011-12-09 11:10:01 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cogl_winsys_onscreen_deinit (CoglOnscreen *onscreen)
|
|
|
|
{
|
|
|
|
CoglFramebuffer *framebuffer = COGL_FRAMEBUFFER (onscreen);
|
|
|
|
CoglContext *context = framebuffer->context;
|
2013-07-30 11:20:01 -04:00
|
|
|
CoglDisplay *display = context->display;
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
2011-12-09 11:10:01 -05:00
|
|
|
CoglRenderer *renderer = context->display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglOnscreenEGL *egl_onscreen = onscreen->winsys;
|
|
|
|
CoglOnscreenKMS *kms_onscreen;
|
|
|
|
|
|
|
|
/* If we never successfully allocated then there's nothing to do */
|
|
|
|
if (egl_onscreen == NULL)
|
|
|
|
return;
|
|
|
|
|
2013-07-30 11:20:01 -04:00
|
|
|
kms_display->onscreen = NULL;
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
kms_onscreen = egl_onscreen->platform;
|
|
|
|
|
2012-01-25 14:29:29 -05:00
|
|
|
/* flip state takes a reference on the onscreen so there should
|
|
|
|
* never be outstanding flips when we reach here. */
|
|
|
|
g_return_if_fail (kms_onscreen->next_fb_id == 0);
|
2011-12-19 14:28:30 -05:00
|
|
|
|
|
|
|
free_current_bo (onscreen);
|
|
|
|
|
2011-12-19 10:37:26 -05:00
|
|
|
if (egl_onscreen->egl_surface != EGL_NO_SURFACE)
|
2011-12-09 11:10:01 -05:00
|
|
|
{
|
2011-12-19 10:37:26 -05:00
|
|
|
eglDestroySurface (egl_renderer->edpy, egl_onscreen->egl_surface);
|
|
|
|
egl_onscreen->egl_surface = EGL_NO_SURFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (kms_onscreen->surface)
|
|
|
|
{
|
|
|
|
gbm_surface_destroy (kms_onscreen->surface);
|
|
|
|
kms_onscreen->surface = NULL;
|
2011-12-09 11:10:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
g_slice_free (CoglOnscreenKMS, kms_onscreen);
|
|
|
|
g_slice_free (CoglOnscreenEGL, onscreen->winsys);
|
|
|
|
onscreen->winsys = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const CoglWinsysEGLVtable
|
|
|
|
_cogl_winsys_egl_vtable =
|
|
|
|
{
|
|
|
|
.display_setup = _cogl_winsys_egl_display_setup,
|
|
|
|
.display_destroy = _cogl_winsys_egl_display_destroy,
|
2011-12-19 10:37:26 -05:00
|
|
|
.context_created = _cogl_winsys_egl_context_created,
|
2011-12-19 14:28:30 -05:00
|
|
|
.cleanup_context = _cogl_winsys_egl_cleanup_context,
|
|
|
|
.context_init = _cogl_winsys_egl_context_init
|
2011-12-09 11:10:01 -05:00
|
|
|
};
|
2011-12-08 12:24:40 -05:00
|
|
|
|
|
|
|
const CoglWinsysVtable *
|
|
|
|
_cogl_winsys_egl_kms_get_vtable (void)
|
|
|
|
{
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool vtable_inited = FALSE;
|
2011-12-08 12:24:40 -05:00
|
|
|
static CoglWinsysVtable vtable;
|
|
|
|
|
|
|
|
if (!vtable_inited)
|
|
|
|
{
|
|
|
|
/* The EGL_KMS winsys is a subclass of the EGL winsys so we
|
|
|
|
start by copying its vtable */
|
|
|
|
|
2011-12-19 10:37:26 -05:00
|
|
|
parent_vtable = _cogl_winsys_egl_get_vtable ();
|
|
|
|
vtable = *parent_vtable;
|
2011-12-08 12:24:40 -05:00
|
|
|
|
|
|
|
vtable.id = COGL_WINSYS_ID_EGL_KMS;
|
|
|
|
vtable.name = "EGL_KMS";
|
|
|
|
|
2011-12-09 11:10:01 -05:00
|
|
|
vtable.renderer_connect = _cogl_winsys_renderer_connect;
|
|
|
|
vtable.renderer_disconnect = _cogl_winsys_renderer_disconnect;
|
|
|
|
|
|
|
|
vtable.onscreen_init = _cogl_winsys_onscreen_init;
|
|
|
|
vtable.onscreen_deinit = _cogl_winsys_onscreen_deinit;
|
|
|
|
|
|
|
|
/* The KMS winsys doesn't support swap region */
|
|
|
|
vtable.onscreen_swap_region = NULL;
|
2012-02-07 12:59:51 -05:00
|
|
|
vtable.onscreen_swap_buffers_with_damage =
|
|
|
|
_cogl_winsys_onscreen_swap_buffers_with_damage;
|
2011-12-09 11:10:01 -05:00
|
|
|
|
2011-12-08 12:24:40 -05:00
|
|
|
vtable_inited = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &vtable;
|
|
|
|
}
|
2012-01-23 10:37:51 -05:00
|
|
|
|
2014-02-28 09:40:31 -05:00
|
|
|
void
|
|
|
|
cogl_kms_renderer_set_kms_fd (CoglRenderer *renderer,
|
|
|
|
int fd)
|
|
|
|
{
|
|
|
|
_COGL_RETURN_IF_FAIL (cogl_is_renderer (renderer));
|
|
|
|
/* NB: Renderers are considered immutable once connected */
|
|
|
|
_COGL_RETURN_IF_FAIL (!renderer->connected);
|
|
|
|
|
|
|
|
renderer->kms_fd = fd;
|
|
|
|
}
|
|
|
|
|
2014-05-13 15:08:59 -04:00
|
|
|
struct gbm_device *
|
|
|
|
cogl_kms_renderer_get_gbm (CoglRenderer *renderer)
|
|
|
|
{
|
|
|
|
_COGL_RETURN_VAL_IF_FAIL (cogl_is_renderer (renderer), NULL);
|
|
|
|
if (renderer->connected)
|
|
|
|
{
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
return kms_renderer->gbm;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-01-23 10:37:51 -05:00
|
|
|
int
|
|
|
|
cogl_kms_renderer_get_kms_fd (CoglRenderer *renderer)
|
|
|
|
{
|
|
|
|
_COGL_RETURN_VAL_IF_FAIL (cogl_is_renderer (renderer), -1);
|
|
|
|
|
|
|
|
if (renderer->connected)
|
|
|
|
{
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
return kms_renderer->fd;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
2012-01-30 06:06:41 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
cogl_kms_display_queue_modes_reset (CoglDisplay *display)
|
|
|
|
{
|
|
|
|
if (display->setup)
|
|
|
|
{
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
kms_display->pending_set_crtc = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2013-07-30 11:20:01 -04:00
|
|
|
|
|
|
|
CoglBool
|
|
|
|
cogl_kms_display_set_layout (CoglDisplay *display,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
CoglKmsCrtc **crtcs,
|
|
|
|
int n_crtcs,
|
|
|
|
CoglError **error)
|
|
|
|
{
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
CoglRenderer *renderer = display->renderer;
|
|
|
|
CoglRendererEGL *egl_renderer = renderer->winsys;
|
|
|
|
CoglRendererKMS *kms_renderer = egl_renderer->platform;
|
|
|
|
GList *crtc_list;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ((width != kms_display->width ||
|
|
|
|
height != kms_display->height) &&
|
|
|
|
kms_display->onscreen)
|
|
|
|
{
|
|
|
|
CoglOnscreenEGL *egl_onscreen = kms_display->onscreen->winsys;
|
|
|
|
CoglOnscreenKMS *kms_onscreen = egl_onscreen->platform;
|
|
|
|
struct gbm_surface *new_surface;
|
|
|
|
EGLSurface new_egl_surface;
|
|
|
|
|
|
|
|
/* Need to drop the GBM surface and create a new one */
|
|
|
|
|
|
|
|
new_surface = gbm_surface_create (kms_renderer->gbm,
|
|
|
|
width, height,
|
|
|
|
GBM_BO_FORMAT_XRGB8888,
|
|
|
|
GBM_BO_USE_SCANOUT |
|
|
|
|
GBM_BO_USE_RENDERING);
|
|
|
|
|
|
|
|
if (!new_surface)
|
|
|
|
{
|
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
|
|
|
COGL_WINSYS_ERROR_CREATE_ONSCREEN,
|
|
|
|
"Failed to allocate new surface");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_egl_surface =
|
|
|
|
eglCreateWindowSurface (egl_renderer->edpy,
|
|
|
|
egl_display->egl_config,
|
2014-03-04 20:33:26 -05:00
|
|
|
(EGLNativeWindowType) new_surface,
|
2013-07-30 11:20:01 -04:00
|
|
|
NULL);
|
|
|
|
if (new_egl_surface == EGL_NO_SURFACE)
|
|
|
|
{
|
|
|
|
_cogl_set_error (error, COGL_WINSYS_ERROR,
|
|
|
|
COGL_WINSYS_ERROR_CREATE_ONSCREEN,
|
|
|
|
"Failed to allocate new surface");
|
|
|
|
gbm_surface_destroy (new_surface);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2015-02-18 09:24:14 -05:00
|
|
|
if (kms_onscreen->pending_egl_surface)
|
|
|
|
eglDestroySurface (egl_renderer->edpy, kms_onscreen->pending_egl_surface);
|
|
|
|
if (kms_onscreen->pending_surface)
|
|
|
|
gbm_surface_destroy (kms_onscreen->pending_surface);
|
2013-07-30 11:20:01 -04:00
|
|
|
|
2015-02-18 09:24:14 -05:00
|
|
|
kms_onscreen->pending_surface = new_surface;
|
|
|
|
kms_onscreen->pending_egl_surface = new_egl_surface;
|
2013-07-30 11:20:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
kms_display->width = width;
|
|
|
|
kms_display->height = height;
|
|
|
|
|
|
|
|
g_list_free_full (kms_display->crtcs, (GDestroyNotify) crtc_free);
|
|
|
|
|
|
|
|
crtc_list = NULL;
|
|
|
|
for (i = 0; i < n_crtcs; i++)
|
|
|
|
{
|
|
|
|
crtc_list = g_list_prepend (crtc_list, crtc_copy (crtcs[i]));
|
|
|
|
}
|
|
|
|
crtc_list = g_list_reverse (crtc_list);
|
|
|
|
kms_display->crtcs = crtc_list;
|
|
|
|
|
|
|
|
kms_display->pending_set_crtc = TRUE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2014-05-21 14:24:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
cogl_kms_display_set_ignore_crtc (CoglDisplay *display,
|
|
|
|
uint32_t id,
|
|
|
|
CoglBool ignore)
|
|
|
|
{
|
|
|
|
CoglDisplayEGL *egl_display = display->winsys;
|
|
|
|
CoglDisplayKMS *kms_display = egl_display->platform;
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
for (l = kms_display->crtcs; l; l = l->next)
|
|
|
|
{
|
|
|
|
CoglKmsCrtc *crtc = l->data;
|
|
|
|
if (crtc->id == id)
|
|
|
|
{
|
|
|
|
crtc->ignore = ignore;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|