summaryrefslogtreecommitdiffstats
path: root/video/out/drm_common.h
diff options
context:
space:
mode:
authorAnton Kindestam <antonki@kth.se>2018-06-02 12:54:01 +0200
committersfan5 <sfan5@live.de>2019-05-04 14:17:11 +0200
commitd155b7541f0b336d0b11f315e0c80641d31a4807 (patch)
treeda5090f78ef352005e305eca02c40b91b161af22 /video/out/drm_common.h
parent8261924db93eb436a9e1606d437f0fe64e56dc66 (diff)
downloadmpv-d155b7541f0b336d0b11f315e0c80641d31a4807.tar.bz2
mpv-d155b7541f0b336d0b11f315e0c80641d31a4807.tar.xz
drm_common: Don't export functions only being used internally
As far as I know none of these functions were being used outside of drm_common, nor should there really be a need to use them.
Diffstat (limited to 'video/out/drm_common.h')
-rw-r--r--video/out/drm_common.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/video/out/drm_common.h b/video/out/drm_common.h
index 036b28de9c..41a8e820b9 100644
--- a/video/out/drm_common.h
+++ b/video/out/drm_common.h
@@ -72,17 +72,4 @@ struct kms *kms_create(struct mp_log *log, const char *connector_spec,
void kms_destroy(struct kms *kms);
double kms_get_display_fps(const struct kms *kms);
-void kms_show_available_connectors(struct mp_log *log, int card_no);
-void kms_show_available_modes(struct mp_log *log,
- const drmModeConnector *connector);
-void kms_show_available_connectors_and_modes(struct mp_log *log, int card_no);
-void kms_show_available_cards_and_connectors(struct mp_log *log);
-void kms_show_available_cards_connectors_and_modes(struct mp_log *log);
-
-int drm_validate_connector_opt(struct mp_log *log, const struct m_option *opt,
- struct bstr name, struct bstr param);
-
-int drm_validate_mode_opt(struct mp_log *log, const struct m_option *opt,
- struct bstr name, struct bstr param);
-
#endif