mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
90 lines
2.7 KiB
C
90 lines
2.7 KiB
C
|
/*
|
||
|
* Copyright (C) 2019 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.
|
||
|
*/
|
||
|
|
||
|
#ifndef META_KMS_UPDATE_PRIVATE_H
|
||
|
#define META_KMS_UPDATE_PRIVATE_H
|
||
|
|
||
|
#include <glib.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "backends/native/meta-kms-types.h"
|
||
|
#include "backends/native/meta-kms-update.h"
|
||
|
|
||
|
typedef struct _MetaKmsProperty
|
||
|
{
|
||
|
uint32_t prop_id;
|
||
|
uint64_t value;
|
||
|
} MetaKmsProperty;
|
||
|
|
||
|
typedef struct _MetaKmsPlaneAssignment
|
||
|
{
|
||
|
MetaKmsCrtc *crtc;
|
||
|
MetaKmsPlane *plane;
|
||
|
uint32_t fb_id;
|
||
|
MetaFixed16Rectangle src_rect;
|
||
|
MetaFixed16Rectangle dst_rect;
|
||
|
|
||
|
GList *plane_properties;
|
||
|
} MetaKmsPlaneAssignment;
|
||
|
|
||
|
typedef struct _MetaKmsModeSet
|
||
|
{
|
||
|
MetaKmsCrtc *crtc;
|
||
|
GList *connectors;
|
||
|
drmModeModeInfo *drm_mode;
|
||
|
} MetaKmsModeSet;
|
||
|
|
||
|
typedef struct _MetaKmsConnectorProperty
|
||
|
{
|
||
|
MetaKmsDevice *device;
|
||
|
MetaKmsConnector *connector;
|
||
|
uint32_t prop_id;
|
||
|
uint64_t value;
|
||
|
} MetaKmsConnectorProperty;
|
||
|
|
||
|
typedef struct _MetaKmsPageFlip
|
||
|
{
|
||
|
MetaKmsCrtc *crtc;
|
||
|
const MetaKmsPageFlipFeedback *feedback;
|
||
|
gpointer user_data;
|
||
|
MetaKmsCustomPageFlipFunc custom_page_flip_func;
|
||
|
gpointer custom_page_flip_user_data;
|
||
|
} MetaKmsPageFlip;
|
||
|
|
||
|
void meta_kms_update_set_connector_property (MetaKmsUpdate *update,
|
||
|
MetaKmsConnector *connector,
|
||
|
uint32_t prop_id,
|
||
|
uint64_t value);
|
||
|
|
||
|
void meta_kms_plane_assignment_set_plane_property (MetaKmsPlaneAssignment *plane_assignment,
|
||
|
uint32_t prop_id,
|
||
|
uint64_t value);
|
||
|
|
||
|
GList * meta_kms_update_get_plane_assignments (MetaKmsUpdate *update);
|
||
|
|
||
|
GList * meta_kms_update_get_mode_sets (MetaKmsUpdate *update);
|
||
|
|
||
|
GList * meta_kms_update_get_page_flips (MetaKmsUpdate *update);
|
||
|
|
||
|
GList * meta_kms_update_get_connector_properties (MetaKmsUpdate *update);
|
||
|
|
||
|
gboolean meta_kms_update_has_mode_set (MetaKmsUpdate *update);
|
||
|
|
||
|
#endif /* META_KMS_UPDATE_PRIVATE_H */
|