2016-05-07 11:07:46 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Red Hat
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Jonas Ådahl <jadahl@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_RENDERER_NATIVE_H
|
|
|
|
#define META_RENDERER_NATIVE_H
|
|
|
|
|
2017-07-10 06:19:32 -04:00
|
|
|
#include <gbm.h>
|
2016-05-07 11:07:46 -04:00
|
|
|
#include <glib-object.h>
|
2016-05-09 07:51:29 -04:00
|
|
|
#include <xf86drmMode.h>
|
2016-05-07 11:07:46 -04:00
|
|
|
|
|
|
|
#include "backends/meta-renderer.h"
|
2017-07-10 06:19:32 -04:00
|
|
|
#include "backends/native/meta-gpu-kms.h"
|
2017-07-06 04:00:56 -04:00
|
|
|
#include "backends/native/meta-monitor-manager-kms.h"
|
2016-05-07 11:07:46 -04:00
|
|
|
|
|
|
|
#define META_TYPE_RENDERER_NATIVE (meta_renderer_native_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (MetaRendererNative, meta_renderer_native,
|
|
|
|
META, RENDERER_NATIVE,
|
|
|
|
MetaRenderer)
|
|
|
|
|
2016-08-17 23:28:59 -04:00
|
|
|
typedef enum _MetaRendererNativeMode
|
|
|
|
{
|
|
|
|
META_RENDERER_NATIVE_MODE_GBM,
|
|
|
|
#ifdef HAVE_EGL_DEVICE
|
|
|
|
META_RENDERER_NATIVE_MODE_EGL_DEVICE
|
|
|
|
#endif
|
|
|
|
} MetaRendererNativeMode;
|
|
|
|
|
2019-01-11 09:35:42 -05:00
|
|
|
MetaRendererNative * meta_renderer_native_new (MetaBackendNative *backend_native,
|
|
|
|
GError **error);
|
2016-05-09 09:22:01 -04:00
|
|
|
|
2017-07-10 06:19:32 -04:00
|
|
|
struct gbm_device * meta_gbm_device_from_gpu (MetaGpuKms *gpu_kms);
|
2016-08-17 23:28:59 -04:00
|
|
|
|
2019-09-12 05:50:34 -04:00
|
|
|
MetaGpuKms * meta_renderer_native_get_primary_gpu (MetaRendererNative *renderer_native);
|
|
|
|
|
2016-06-08 05:05:31 -04:00
|
|
|
void meta_renderer_native_finish_frame (MetaRendererNative *renderer_native);
|
|
|
|
|
2020-12-21 01:59:32 -05:00
|
|
|
void meta_renderer_native_reset_modes (MetaRendererNative *renderer_native);
|
|
|
|
|
2020-09-14 14:36:17 -04:00
|
|
|
gboolean meta_renderer_native_use_modifiers (MetaRendererNative *renderer_native);
|
|
|
|
|
2020-10-02 10:43:45 -04:00
|
|
|
gboolean meta_renderer_native_is_mode_set_pending (MetaRendererNative *renderer_native);
|
|
|
|
|
2019-09-12 15:41:17 -04:00
|
|
|
gboolean meta_onscreen_native_is_buffer_scanout_compatible (CoglOnscreen *onscreen,
|
|
|
|
uint32_t drm_format,
|
|
|
|
uint64_t drm_modifier,
|
|
|
|
uint32_t stride);
|
|
|
|
|
2016-05-07 11:07:46 -04:00
|
|
|
#endif /* META_RENDERER_NATIVE_H */
|